/*
 Theme Name: The Rentalgram
 Author: ExellarTech
 Version: 1.0
*/

:root {
    --theme-light-orange: #F69324;
    --theme-dark-orange: #E55C23;
    --theme-yellow: #FFED00;
    --theme-red: #E31E24;
}

/* RESETS */

* {
    box-sizing: border-box;
}
html {
    scroll-padding-top: 60px;
}
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    color: #4D4E4F;
    overflow-x: hidden;
}
a:focus,
button:focus {
    outline: none;
}
a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}
p {
    font-family: "Poppins-Regular";
    color: #000;
    font-size: 16px;
    margin: 0;
    line-height: 25px;
}
ul {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
    margin: 0;
}
h1 {
    font-size: 54px;
}
h2 {
    font-size: 38px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 25px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
img {
    width: auto;
    max-width: 100%;
    display: block;
    height: auto;
}
input, select {
    width: 100%;
    outline: none;
}
input[type="submit"] {
    cursor: pointer;
}

/* BASICS STYLES */

.reset {
    font-size: 0;
    list-style-type: none;
    padding: 0;
}
.clear {
    clear: both;
}
.container {
    width: 1260px;
    max-width: 96%;
    margin: 0 auto;
}
.widget,
.widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* ScrollBar */

/* width */

::-webkit-scrollbar {
    width: 10px;
}

/* button */
::-webkit-scrollbar-button {
    background: #E31E24;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #E55C23;
    background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #E31E24;
}

/* Track */

::-webkit-scrollbar-track {
    background: #4D4E4F;
}

/* Corner */

::-webkit-scrollbar-corner {
    background: #fff;
}

/* Resizer */

::-webkit-resizer {
    background: #E55C23;
}

/* FONTS */

@font-face {
    font-family: "Poppins-Regular";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Poppins-Medium";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Poppins-SemiBold";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Futura-PT-Medium";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Futura-PT-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Futura-PT-Heavy";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Futura-PT-Heavy.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: "Futura-PT-Demi";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/futura-pt-demi.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: "Lulo-Clean-W01-One-Bold";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Lulo-Clean-W01-One-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Playball-Regular";
    src: url("https://www.therentalgram.com/wp-content/themes/the-rentalgram/fonts/Playball-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}


/* CUSTOM CLASEES */

.text-center {
    text-align: center;
}
.image-center {
    display: block;
    margin: 0 auto;
}
.text-white {
    color: #fff;
}
.blog-title {
    color: #4D4E4F;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-lowercase {
    text-transform: lowercase;
}
.text-capitalize {
    text-transform: capitalize;
}
.primary-btn,
.seconday-btn,
.ternary-btn {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    border-radius: 10px;
    border: 2px solid;
    padding: 10px 105px;
    display: inline-block;
    font-family: "Futura-PT-Medium";
    font-weight: 500;
    /*transition: 0.5s;*/
}
.primary-btn {
    background-color: var(--theme-red);
    border-color: var(--theme-red);
    border: 0;
    /*background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);*/
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    border: 0;
}
.seconday-btn {
    background-color: transparent;
    border-color: var(--theme-red);
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    border: 0;
}
.ternary-btn {
    background-color: transparent;
    /*color: var(--theme-light-orange);*/
    border-color: var(--theme-red);
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    border: 0;
}
.seconday-btn:hover {
    background-color: var(--theme-red);
    background: #E31E24;
}
.primary-btn:hover {
    background-color: #e22e34;
    border-color: var(--theme-red);
    background: #E31E24;
}
.ternary-btn:hover {
    color: #fff;
    background-color: var(--theme-red);
    border-color: var(--theme-red);
    background: #E31E24;
}
.font-pp-regular {
    font-family: "Poppins-Regular";
    font-weight: 400;
}
.font-pp-semibold {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
}
.font-pp-medium {
    font-family: "Poppins-Medium";
    font-weight: 500;
}
.font-futura-medium {
    font-family: "Futura-PT-Medium";
    font-weight: 500;
}
.font-futura-heavy {
    font-family: "Futura-PT-Heavy";
    font-weight: 900;
}
.font-lulo {
    font-family: "Lulo-Clean-W01-One-Bold";
    font-weight: 700;
}
.font-futura-demi {
    font-family: "Futura-PT-Demi";
}
.font-playball {
    font-family: "Playball-Regular";
    font-weight: 400;
}
.primary-color {
    color: var(--theme-light-orange);
}
.secondary-color {
    color: var(--theme-dark-orange);
}
.ternary-color {
    color: var(--theme-yellow);
}
.text-gradient {
    font-size: 50px;
    line-height: 55px;
    background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-default,
.text-default p {
    font-size: 15px;
    color: #78787A;
    line-height: 22px;
}
.text-default-dark,
.text-default-dark p {
    font-size: 16px;
    line-height: 26px;
    color: #4D4E4F;
}
.round-10 {
    border-radius: 10px;
}
.overflow-h {
    overflow: hidden;
}
.relative {
    position: relative;
}
.inline-block {
    display: inline-block;
}
.background-reset {
    background-repeat: no-repeat;
    background-size: cover;
}
.gradient-background-reset {
    background: transparent;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
.overlay-40::before,
.overlay-20::before {
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    opacity: 0.4;
}
.overlay-20::before {
    opacity: 0.30;
}
.theme-read-more {
    border: 0;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/03/theme-read-more-arrow.svg') no-repeat top 4px right 0px;
    padding: 0 12px 0 0;
    color: #E55C23;
    font-size: 16px;
    background-size: 8px 14px;
    transition: 0.3s;
    cursor: pointer;
}
.theme-read-more:hover {
    color: #F69324 !important;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/03/theme-read-more-arrow-hover.svg') no-repeat top 4px right 0px;
    padding-right: 15px;
}
.wpcf7-spinner {
    display: none !important;
}
.explore-form .hb-search-fields input[type="submit"]:hover,
.exp-help-sec .exp-support input.wpcf7-submit:hover,
.sv-enquiry .sv-form-block input.wpcf7-submit:hover {
    background: #E31E24;
}
.owl-nav button.disabled {
    opacity: 0.7;
}

/* CUSTOM SPACING CLASSES */

.m-5 {
    margin: 5px 0;
}
.mt-5 {
    margin-top: 5px;
}
.mb-5 {
    margin-bottom: 5px;
}

.m-10 {
    margin: 10px 0;
}
.mt-10 {
    margin-top: 10px;
}
.mb-10 {
    margin-bottom: 10px;
}

.m-15 {
    margin: 15px 0;
}
.mt-15 {
    margin-top: 15px;
}
.mb-15 {
    margin-bottom: 15px;
}

.m-20 {
    margin: 20px 0;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}

.m-25 {
    margin: 25px 0;
}
.mt-25 {
    margin-top: 25px;
}
.mb-25 {
    margin-bottom: 25px;
}

.m-30 {
    margin: 30px 0;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}

.m-35 {
    margin: 35px 0;
}
.mt-35 {
    margin-top: 35px;
}
.mb-35 {
    margin-bottom: 35px;
}

.m-40 {
    margin: 40px 0;
}
.mt-40 {
    margin-top: 40px;
}
.mb-40 {
    margin-bottom: 40px;
}

.m-45 {
    margin: 45px 0;
}
.mt-45 {
    margin-top: 45px;
}
.mb-45 {
    margin-bottom: 45px;
}

.m-50 {
    margin: 50px 0;
}
.mt-50 {
    margin-top: 50px;
}
.mb-50 {
    margin-bottom: 50px;
}

.m-60 {
    margin: 60px 0;
}
.mt-60 {
    margin-top: 60px;
}
.mb-60 {
    margin-bottom: 60px;
}

.m-70 {
    margin: 70px 0;
}
.mt-70 {
    margin-top: 70px;
}
.mb-70 {
    margin-bottom: 70px;
}

.m-100 {
    margin: 100px 0;
}
.mt-100 {
    margin-top: 100px;
}
.mb-100 {
    margin-bottom: 100px;
}

.m-110 {
    margin: 110px 0;
}
.mt-110 {
    margin-top: 110px;
}
.mb-110 {
    margin-bottom: 110px;
}

.m-120 {
    margin: 120px 0;
}
.mt-120 {
    margin-top: 120px;
}
.mb-120 {
    margin-bottom: 120px;
}

/* Mobile Header */

.header-mobile-menu {
    display: none;
}

/* 404 */

.no-page-found {
    margin: 40px 0;
    text-align: center;
}
.no-page-found p {
    font-size: 20px;
}

/* HEADER */

.header-announcement {
    padding: 6px 20px;
    text-align: center;
    background: linear-gradient(90deg,rgba(227,30,36,1) 0%,rgba(229,92,35,1) 75%);
}
.header-announcement p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
header {
    position: relative;
    z-index: 99;
}
body.home header .header-outer {
    position: fixed;
    top: 0;
    top: 32px;
    left: 0;
    right: 0;
    padding: 18px 0;
    background-color: rgba(223, 223, 223, .65);
    transition: 0.5s;
}
body.home .fixed .header-outer {
    background-color: #fff;
    top: 0;
}
header .header-outer {
    padding: 18px 0;
    background-color: #fff;
}
header.fixed .header-outer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    background-color: rgba(223, 223, 223, .65);
    transition: 0.5s;
    box-shadow: 0 -8px 12px 1px #000000b5;
    background-color: #fff;
}
header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header-logo {
    margin-right: 20px;
}
header .header-logo img {
    max-width: 80%;
    transition: 0.5s;
    width: 130px;
}
header.fixed .header-logo img {
    max-width: 65%;
}
header .header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
    font-family: Futura-PT-Medium !important;
}
#mega-menu-header-menu li > ul > .mega-current-menu-item a {
    background: #ed1c24 !important;
    color: #fff !important;
}

#mega-menu-header-menu > li > ul.mega-sub-menu {
    background-color: #fff !important;
    border: 1px solid #F69324 !important;
    padding: 30px 35px !important;
    border-radius: 10px !important;
}
li#mega-menu-15-0-0 {
    z-index: 999;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
    position: absolute !important;
    top: -20px !important;
    right: -160px !important;
    background-color: #fff !important;
    border: 1px solid #F69324 !important;
    padding: 30px 25px !important;
    border-radius: 10px !important;
    z-index: 10;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(0, 10px) !important;
    transition: transform 200ms ease-in, visibility 200ms ease-in !important;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li > ul.mega-sub-menu ul.mega-sub-menu li:hover ul.mega-sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0, 0px) !important;
}
#mega-menu-header-menu > ul.mega-sub-menu > li {
    background-color: #F3F3F3 !important;
    padding: 30px !important;
    border-radius: 10px !important;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li > ul.mega-sub-menu {
    display: flex !important;
    flex-wrap: wrap;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li > ul > li {
    padding-bottom: 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item,
li#mega-menu-item-15 ul ul > li {
    padding: 0 0 12px 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu a.mega-menu-link {
    background-color: transparent !important;
    line-height: normal !important;
    padding: 0 !important;
    color: #000 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    background-color: transparent;
    color: #E31E24 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu .mega-current-menu-parent > a,
#mega-menu-wrap-header-menu #mega-menu-header-menu .mega-current_page_item > a,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu .mega-current_page_parent > a,
#mega-menu-wrap-header-menu #mega-menu-header-menu a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout .mega-current-menu-item a {
    color: #E31E24 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child,
li#mega-menu-item-15 ul ul > li:last-child {
    padding-bottom: 0 !important;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu li#mega-menu-item-15 > ul.mega-sub-menu > li ul.mega-sub-menu li a.mega-menu-link {
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/05/menu-item-marker-icon.svg') no-repeat top 2px left !important;
    padding-left: 20px !important;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li > ul.mega-sub-menu li#mega-menu-15-0-1 ul > li a {
    color: #000 !important;
    opacity: 0.3;
}
li#mega-menu-item-15 ul ul > li a {
    font-size: 14px !important;
    color: #000 !important;
    font-family: 'Poppins-Regular' !important;
    font-weight: 400 !important;
    text-transform: none !important;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li li#mega-menu-15-0-1 {
    background-color: #EBEBE9 !important;
    padding: 25px 15px 25px 15px !important;
    border-radius: 10px !important;
}
li#mega-menu-item-15 > ul.mega-sub-menu > li li#mega-menu-15-0-1 li a {
    pointer-events: none;
    color: #C8C8C8 !important;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #e32724;
}
#mega-menu-wrap-header-menu .mega-menu-toggle {
    background-color: transparent !important;
}
.custom-menu-title span {
    font-size: 16px;
    color: #78787A;
}

header .header-search-wrap {
    width: 25%;
}
header .mobile-search {
    display: none;
}
header .header-search {
    font-size: 0;
}
header .header-search #search-2 {
    display: none;
}
header .header-search form {
    position: relative;
}
header .header-search form input {
    border: 0;
    outline: none;
}
header .header-search form input#s,
header .header-search form input[type="search"] {
    padding: 4px 34px 4px 14px;
    background-color: rgba(223, 223, 223, 0.6);
    height: 40px;
    line-height: normal;
    border-radius: 10px;
    width: 100%;
}
header .header-search form input[type="search"] {
    border: 0 !important;
    font-family: 'Poppins-Regular';
}
header .header-search input#searchsubmit {
    padding: 0;
    margin: 0;
    font-size: 0;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2022/11/header-search-icon.png') no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 8px;
}
header .header-search .is-form-style.is-form-style-3 label {
    display: block;
    width: 100% !important;
}
header .header-search form .is-search-submit {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 40px;
    right: 0;
    cursor: pointer;
}
header .header-search form .is-search-submit .is-search-icon {
    background-color: transparent;
    border: 0;
    padding: 0 !important;
    height: 100%;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2022/11/header-search-icon.png') no-repeat;
    background-position: center center;
    background-size: 20px;
}
header .header-search form .is-search-submit .is-search-icon svg {
    display: none;
}
.is-ajax-search-result {
    background: rgb(22,22,22);
    /*background: linear-gradient(120deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 33%, rgba(77,78,79,1) 67%, rgba(77,78,79,1) 100%) !important;*/
    background: #F69324 !important;
}
.is-ajax-search-post .is-title a {
    text-decoration: none !important;
    color: #000;
}
#is-ajax-search-result-1350 {
    width: 320px !important;
}

/* FOOTER */

.footer-main-wrap {
    background-color: #EEEEEE;
    padding: 90px 0;
}
footer h4.widget-title {
    font-size: 20px;
    color: #4D4E4F;
    font-family: 'Futura-PT-Demi';
    margin-bottom: 35px;
}
.footer-cols-wrap {
    display: flex;
    flex-wrap: wrap;
}
.footer-cols-wrap .footer-col-one {
    flex: 0 30%;
    max-width: 30%;
    padding-right: 80px;
}
.footer-cols-wrap .footer-col-two {
    flex: 0 28%;
    max-width: 28%;
}
.footer-cols-wrap .footer-col-three {
    flex: 0 40%;
    max-width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-cols-wrap .footer-col-three .footer-col-three-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .footer-site-logo {
    margin-bottom: 40px;
}
footer .footer-site-logo img {
    width: 130px;
}
.footer-newsletter .wpcf7-response-output {
    display: none;
}
footer .footer-newsletter-form h4 {
    font-size: 20px;
    line-height: 26px;
    color: #4D4E4F;
    font-family: 'Futura-PT-Demi';
    margin-bottom: 12px;
}
footer .footer-newsletter-form h4 strong {
    color: #000;
}
footer .widget_nav_menu ul li a:hover {
    color: #e31e24;
}
footer .footer-newsletter-form ul li input {
    width: 100%;
}
footer .footer-newsletter-form ul li input.wpcf7-text {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #B2B2B2;
    outline: none;
    font-size: 15px;
    color: #B2B2B2;
    line-height: 30px;
}
footer .footer-newsletter-form ul li input.wpcf7-text:focus {
    border-color: #e55c23;
}
footer .footer-newsletter-form ul li input.wpcf7-text::placeholder {
    color: #B2B2B2;
}
footer .footer-newsletter-form ul li input.wpcf7-submit {
    cursor: pointer;
    font-size: 20px;
    font-family: 'Futura-PT-Medium';
}
footer .footer-newsletter-form ul li input.wpcf7-not-valid {
    border-color: red;
}
footer .footer-newsletter-form ul li .wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 5px;
}
footer .widget_nav_menu ul li {
    line-height: 30px;
}
footer .widget_nav_menu ul li a {
    font-size: 16px;
    line-height: 25px;
    color: #78787A;
}
footer .current-menu-item a {
    color: #ed1c24 !important;
}
footer .footer-newsletter-form li {
    margin-bottom: 8px;
}
footer .footer-newsletter-form li:last-child {
    margin-top: 18px;
    margin-bottom: 0;
}
footer .footer-newsletter-form li .wpcf7-spinner {
    display: none;
}
footer .wpcf7-response-output {
    margin: 10px 0 0 0 !important;
    padding: 8px 10px !important;
    font-size: 14px;
    line-height: 18px;
}
footer .footer-contact .widget_text p a:hover {
    color: #e31e24;
}
footer .widget_text p, footer .widget_text a {
    font-size: 15px;
    line-height: 20px;
    color: #78787A;
}
footer .widget_text p {
    margin-bottom: 12px;
}
footer .footer-connect {
    margin-top: 150px;
}
footer .footer-connect h4.widget-title {
    margin-bottom: 10px;
}
footer .footer-connect ul {
    display: flex;
    align-items: center;
}
footer .footer-connect ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
footer .footer-connect ul li:last-child {
    margin-right: 0;
}

.footer-bottom {
    background: rgb(22,22,22);
    background: linear-gradient(70deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 55%, rgba(77,78,79,1) 80%, rgba(77,78,79,1) 100%);
    padding: 10px 0;
}
footer .footer-bottom p {
    margin-bottom: 0;
}
.footer-bottom .footer-bottom-left {
    float: left;
}
.footer-bottom .footer-bottom-right {
    float: right;
}
.footer-bottom .footer-bottom-left ul li {
    display: inline-block;
    margin-left: 40px;
    line-height: 20px;
}
.footer-bottom .footer-bottom-left ul li:first-child {
    margin-left: 0;
}
.footer-bottom .footer-bottom-left ul li a {
    font-size: 16px;
    color: #B2B2B2;
    transition: 0.5s;
}
.footer-bottom .footer-bottom-left ul li a:hover {
    color: #fff;
}
.footer-bottom .footer-bottom-right p {
    font-size: 16px;
    text-align: right;
    color: #B2B2B2;
    line-height: normal;
}

/* HOME */

.home-slider {
    position: relative;
}
.home-slider .container {
    position: relative;
}
.home-slider .cover-banner-link {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
}
/*
.home-slider .owl-item::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
}
*/
.home-slider .owl-item .item {
    padding: 580px 0 440px;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-slider .item:not(.item-plain)::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
}
.home-slider .item.item-plain-cover {
    padding: 427px 0 !important;
    background-position: center;
}
.home-slider .item .banner-content {
    position: absolute;
    z-index: 2;
    width: 55%;
    margin-left: auto;
    top: -80px;
    left: inherit;
    right: 0;
    transform: translate(0, -50%);
    text-align: left;
}
.home-slider .banner-content img {
    width: auto !important;
}
.home-slider img.lazy.loading {
    display: none !important;
}
.home-slider .banner-content .banner-newly {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.home-slider .banner-content .banner-newly h4 {
    color: #fff;
    font-size: 46px;
    line-height: 60px;
    background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*font-size: 30px;*/
    /*line-height: 40px;*/
    /*margin-right: 15px;*/
}
.home-slider .banner-content .banner-para p {
    color: #fff;
}
.home-slider .banner-content .banner-bhk-title {
    margin-top: 40px;
}
.home-slider .banner-content .banner-bhk-title h5 {
    font-size: 30px;
    line-height: 34px;
}
.home-slider .banner-content .banner-banglow-name h3 {
    /* font-size: 45px; */
    /* line-height: 56px; */
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Futura-PT-Heavy";
}
.home-slider .banner-content .banner-name-full span {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #DFDFDF;
    font-family: 'Poppins-SemiBold';
    font-weight: 400;
}
.home-slider .banner-content .banner-cta {
    margin-top: 46px;
}
.home-slider .banner-content .banner-cta a.seconday-btn {
    padding: 10px 50px;
}
.home-slider .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    transform: translate(0, -55%);
    z-index: 15;
}
.home-slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E31E24 !important;
    background-repeat: no-repeat !important;
    background-position: 50% 40% !important;
}
.home-slider .owl-nav button.owl-next {
    right: 20px;
    background-image: url('https://www.therentalgram.com/wp-content/uploads/2022/11/slider-arrow-right-icon-white.png') !important;
}
.home-slider .owl-nav button.owl-prev {
    left: 20px;
    background-image: url('https://www.therentalgram.com/wp-content/uploads/2022/11/slider-arrow-left-icon-white.png') !important;
}
.home-slider .owl-nav button span {
    display: none;
}

/* Banglow Search Form */

.explore-form {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 50%;
    z-index: 20;
    margin-left: -630px;
    max-width: 380px;
}
.explore-form .container {
    width: auto;
    max-width: initial;
}
.explore-form .explore-form-title {
    margin-bottom: 25px;
}
.explore-form .explore-form-title p {
    font-family: "Futura-PT-Demi";
    color: #E31E24;
    line-height: 22px;
    font-size: 18px;
    background-color: #fff;
}
.explore-form-main {
    background-color: rgba(120, 120, 122, 0.5);
    padding: 8px;
    border-radius: 10px;
}
.explore-form .explore-form-wrapper {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 4px #00000033;
    background-color: #fff;
}

.explore-form .hb-search-fields label {
    font-size: 16px;
    line-height: 24px;
    display: block;
    color: #000000;
    font-family: 'Poppins-SemiBold';
    margin-bottom: 3px;
}
.explore-form .hb-search-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.explore-form .hb-search-fields > p {
    flex: 48%;
    max-width: 48%;
    margin: 0 0 12px 0 !important;
}
.explore-form .hb-search-fields input[type="text"],
.explore-form .hb-search-fields select {
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    height: 50px;
    padding: 10px 14px;
    font-size: 14px;
    color: #78787A;
    font-family: 'Poppins-Regular';
}
.explore-form .hb-search-fields input[type="text"] {
    padding-left: 42px;
}
.explore-form .hb-search-fields input#hb-form-1-check-in-date,
.explore-form .hb-search-fields input#hb-form-1-check-out-date {
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/04/check-in-icon.svg') no-repeat center left 10px;
    background-size: 22px;
}
.explore-form .hb-search-fields input#hb-form-1-check-out-date {
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/04/check-out-icon.svg') no-repeat center left 10px;
}
.explore-form .hb-search-fields select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 15px;
    padding-right: 30px;
    padding-left: 42px;
}
.explore-form .hb-search-fields select#hb-form-1-adults {
    background-image: url('https://www.therentalgram.com/wp-content/uploads/2023/03/dropdown-arrow-bold-svg.svg'), url('https://www.therentalgram.com/wp-content/uploads/2023/04/adult-icon-new-red.svg');
    background-position: right 10px center, left 12px center;
    background-size: 15px, 25px;
}
.explore-form .hb-search-fields select#hb-form-1-children {
    background-image: url('https://www.therentalgram.com/wp-content/uploads/2023/03/dropdown-arrow-bold-svg.svg'), url('https://www.therentalgram.com/wp-content/uploads/2023/04/children-icon.svg');
    background-position: right 10px center, left 12px center;
}
.explore-form .hb-search-fields .hb-search-submit-wrapper {
    flex: 100%;
    max-width: 100%;
    margin: 12px 0 0 0 !important;
}
.explore-form .hb-search-fields .hb-search-submit-wrapper label {
    display: none;
}
.explore-form .hb-search-fields input[type="submit"] {
    background-color: #E31E24;
    display: block;
    width: 100%;
    border: 0;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    font-size: 20px;
    color: #FFFFFF;
    font-family: 'Futura-PT-Medium';
    font-weight: 400;
    padding: 0;
    /*background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);*/
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
}
.hb-dp-day-check-in, .hb-dp-day-check-out {
    background: #E31E24 !important;
    color: #fff;
    font-weight: 400 !important;
}

.travel-place {
    padding: 100px 0;
}
.travel-place::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.7;
}
.travel-place .travel-place-lft {
    float: left;
    width: 50%;
}
.travel-place .travel-place-rgt {
    float: right;
    width: 36%;
}
.travel-place .travel-customers {
    position: relative;
    margin-top: 60px;
}
.travel-customers::before {
    position: absolute;
    /*content: '';*/
    top: 0;
    left: 0;
    height: 2px;
    width: 55px;
    background-color: #75746d;
}
.travel-cust-data-wrap {
    position: relative;
}
.travel-cust-data-wrap::before {
    position: absolute;
    content: '';
    top: -34px;
    left: 0;
    height: 2px;
    width: 55px;
    background-color: #75746d;
}
.travel-customers .travel-lft-cust {
    display: flex;
    gap: 20px;
    align-items: end;
    align-items: center;
}
.travel-customers .travel-lft-cust h4 {
    /*font-size: 30px;*/
    /*line-height: 35px;*/
    font-size: 24px;
    line-height: 30px;
}
.travel-customers .travel-lft-cust p {
    font-size: 16px;
    color: #DFDFDF;
    line-height: 26px;
}
.travel-place .travel-place-rgt h5 {
    margin-bottom: 10px;
}
.travel-place .travel-place-rgt p {
    font-size: 16px;
    line-height: 26px;
    color: #DFDFDF;
}
.travel-place .travel-review-counts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 60px;
}
.travel-place .travel-review-count h4 {
    font-size: 35px;
    line-height: 30px;
    margin-bottom: 10px;
}
.travel-cust-support {
    padding-left: 40px;
}
.travel-review-count .text-gradient {
    background: linear-gradient(116deg, #E31E24 0%, #F69324 30%, #FFED00 70%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.travel-review-count:nth-child(2) .text-gradient {
    background: linear-gradient(116deg, #E31E24 0%, #F69324 30%, #FFED00 45%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.travel-review-count:nth-child(3) .text-gradient {
    background: linear-gradient(116deg, #E31E24 0%, #F69324 30%, #FFED00 60%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.travel-place .after-counter {
    margin-left: -10px;
}
.travel-place .travel-review-count p {
    font-size: 14px;
    line-height: 22px;
}
.travel-place .travel-place-rgt .travel-count-cta {
    margin-top: 55px;
}
.travel-place .travel-place-rgt .travel-count-cta a {
    display: block;
    text-align: center;
}

.home-rentalgram-wrap .text-gradient {
    background: linear-gradient(94deg, #E31E24 0%, #F69324 45%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.shadow-title {
    display: block;
    position: absolute;
    top: 0;
    text-shadow: 2px 2px 3px #00000026;
    z-index: -1;
}
.theme-card .theme-card-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.theme-card .theme-card-content a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 44px;
    background-color: rgba(0,0,0,0.2);
    z-index: 10;
}
.theme-card-el a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2022/12/theme-element-01.svg') no-repeat;
    background-position: top left;
    background-size: contain;
    width: 136px;
    height: 158px;
    z-index: 5;
    transition: 0.8s;
}
.theme-card:hover a::before {
    transform: translate(-10px, -10px);
}
.theme-card img {
    transition: 0.8s;
}
.theme-card:hover img {
    transform: scale(1.1);
}
.home-rentalgram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}
.home-rentalgram-grid .theme-card:first-child {
    /*grid-column: 1/-1;*/
}
.home-rentalgram-grid img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}
.home-upcoming-dest > div {
    display: inline-block;
}
.home-upcoming-dest .home-up-dest-list p {
    font-size: 18px;
}

.home-why-us .text-gradient {
    background: linear-gradient(99deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-why-us-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 65px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.home-why-us-items .home-why-us-icon {
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2022/12/theme-icon-el.svg') no-repeat center center;
    padding-bottom: 15px;
    min-height: 80px;
}
.home-why-us-items .home-why-us-icon img {
    width: auto !important;
}
.home-why-us-items p strong {
    font-family: 'Futura-PT-Demi';
    font-size: 20px;
    display: block;
    line-height: 20px;
    margin: 18px 0;
}
.home-why-us-items .home-why-us-item {
    position: relative;
    flex: 260px;
    max-width: 260px;
    padding-bottom: 25px;
}
.home-why-us-items .home-why-us-item::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    margin: 0 auto;
    background-color: #E31E24;
}
.home-our-exp .text-gradient {
    background: linear-gradient(95deg, #E31E24 0%, #F69324 50%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-our-exp-slider .theme-card-content a {
    align-items: center;
    font-size: 24px;
    line-height: normal;
    background-color: rgba(0,0,0,0.40);
    padding: 0 30px;
    pointer-events: none;
}
.home-our-exp-slider .owl-nav,
.our-partners .owl-nav,
.homeowner-testi .owl-nav,
.blogs-posts-related .owl-nav,
.single-villa-banner .owl-nav,
#mobile-home-why-us .owl-nav,
#mobile-villas-listing .owl-nav {
    position: absolute;
    top: 45%;
    transform: translate(0%, -45%);
    left: 0;
    right: 0;
}
#mobile-home-why-us .owl-nav {
    position: relative;
    top: inherit;
    transform: initial;
    width: 80px;
    margin: 0 auto;
}
.home-our-exp-slider .owl-nav button,
.our-partners .owl-nav button,
.homeowner-testi .owl-nav button,
.blogs-posts-related .owl-nav button,
.single-villa-banner .owl-nav button,
#mobile-home-why-us .owl-nav button,
#mobile-villas-listing .owl-nav button {
    position: absolute;
}
.home-our-exp-slider .owl-nav .owl-prev,
.our-partners .owl-nav .owl-prev,
.single-villa-banner .owl-nav .owl-prev {
    left: -45px;
}
.home-our-exp-slider .owl-nav .owl-next,
.our-partners .owl-nav .owl-next,
.single-villa-banner .owl-nav .owl-next {
    right: -45px;
}
.homeowner-testi .owl-nav .owl-prev,
.blogs-posts-related .owl-nav .owl-prev {
    left: -55px;
}
.homeowner-testi .owl-nav .owl-next,
.blogs-posts-related .owl-nav .owl-next {
    right: -55px;
}
#mobile-home-why-us .owl-nav .owl-prev,
#mobile-villas-listing .owl-nav .owl-prev {
    left: 0;
}
#mobile-home-why-us .owl-nav .owl-next,
#mobile-villas-listing .owl-nav .owl-next {
    right: 0;
}
.home-our-exp-slider .owl-nav button span,
.our-partners .owl-nav button span,
.homeowner-testi .owl-nav button span,
.blogs-posts-related .owl-nav button span,
.single-villa-banner .owl-nav button span,
 #mobile-home-why-us .owl-nav button span {
    display: none;
}
#mobile-villas-listing .owl-stage {
    padding-left: 0 !important;
}
.home-trending {
    padding-bottom: 60px;
}
.home-trending .item .home-trend-thumb img {
    height: 170px;
    object-fit: cover;
}
.home-trending .item .home-trend-cnt {
    background: rgb(22,22,22);
    background: linear-gradient(0deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 100%);
    border-radius: 0 0 10px 10px;
    padding: 22px 15px 15px 15px;
}
.home-trending .item .home-trend-cnt h3 {
    font-size: 20px;
    color: #DFDFDF;
    min-height: 26px;
}
.home-trending .item .home-trend-cnt span {
    display: block;
    line-height: 24px;
    font-size: 14px;
    color: #78787A;
    margin-top: 5px;
}
.home-trending .item .home-trend-cnt > span {
    min-height: 24px;
}
.home-trending .trend-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}
.home-trending .item .trend-data span {
    margin: 0;
}
.home-trending .trend-data .td-bhk .td-bhk-title {
    font-size: 14px;
    font-family: 'poppins-regular';
    line-height: 22px;
    color: #fff;
}
.home-trending .trend-data .td-rating {
    display: flex;
    flex-wrap: wrap;
}
.home-trending .trend-data .td-rating span {
    font-size: 12px;
    font-family: 'poppins-regular';
    line-height: 20px;
    color: #B2B2B2;
}
.home-trending .trend-data .td-rating .td-rating-num {
    padding-left: 15px;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/05/star-ratings-icon.png') no-repeat left top 3px;
}
.home-trending .trend-data .td-rating .td-review-num {
    color: #78787A;
    margin-left: 3px;
}
.home-trending .item .home-trend-cnt hr {
    width: 100%;
    border: 0;
    background-color: #404142;
    height: 1px;
    margin: 12px 0;
}
.home-trending .home-trend-more {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.home-trending .item .home-trend-more span {
    margin-top: 0;
}
.home-trending .item .home-trend-more .ht-label-one,
.home-trending .item .home-trend-more .ht-night {
    font-size: 10px;
    display: block;
    line-height: 14px;
}
.home-trending .item .home-trend-more .ht-night {
    display: inline;
    position: relative;
    top: -2px;
}
.home-trending .item .home-trend-more .ht-price {
    font-size: 18px;
    color: #FFFFFF;
    font-family: 'Poppins-Regular';
    font-weight: 400;
}
.home-trending .item .home-trend-cnt .theme-read-more {
    font-size: 13px;
    background-position: top 3px right 0px;
    padding-right: 15px;
}
.home-trending .owl-nav {
    top: inherit;
    bottom: -30px;
}
.home-trending .owl-nav .owl-prev {
    left: 46.5% !important;
}
.home-trending .owl-nav .owl-next {
    right: 46.5% !important;
}

.loyalty-program {
    padding: 160px 0;
}
.loyalty-program::before {
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: rgb(0,0,51);
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 100%, rgba(255,255,255) 0%);
}
.loyalty-program .lp-content p {
    color: #fff;
    font-size: 20px;
    font-family: "Futura-PT-Demi";
}
.how-it-works {
    background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
}
.how-it-works .how-it-works-wrap {
    border-radius: 18px;
    padding: 70px 60px;
    /*background: rgb(236,236,236);*/
    /*background: radial-gradient(circle, rgba(236,236,236,1) 0%, rgba(131,236,248,1) 100%);*/
}
.how-it-works h3 {
    font-size: 36px;
    line-height: 46px;
}
.how-it-works span {
    font-size: 14px;
    color: #440000;
    margin-top: 10px;
}
.how-it-works .how-it-works-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 60px;
}
.how-it-works .how-it-works-icon {
    height: 86px;
    display: flex;
    align-items: flex-end;
}
.how-it-works .how-it-works-icon img {
    width: auto !important;
}
.how-it-works .owl-nav {
    text-align: center;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
}
.how-it-works .owl-nav button {
    margin: 0 10px;
}

.home-partners .home-partners-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-partners .home-partners-lft {
    flex: 0 0 45%;
    max-width: 45%;
}
.home-partners .home-partners-rgt {
    flex: 0 0 50%;
    max-width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-partners .home-partner-lft-cnt p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}
.home-partners .home-partner-lft-cnt p:last-child {
    margin-bottom: 0;
}
.home-partners .home-partners-rgt .home-partner-img {
    display: none;
}

.our-partners {
    padding: 45px 0;
    /*background-color: #202020;*/
}
.our-partners h3 {
    font-size: 50px;
    line-height: 55px;
    background: linear-gradient(111deg, #E31E24 0%, #F69324 60%, #FFED00 95%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.our-partners .owl-carousel .owl-item {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-partners .item a {
    max-width: 90%;
    display: block;
    margin: 0 auto;
    background-color: #fff;
    padding: 5px;
}
.our-partners .item img {
    width: auto !important;
}


/* Experience and Events */

.experiences-banner h3 {
    font-size: 40px;
}
.experiences-banner .text-gradient {
    /*font-size: 40px;*/
    /*line-height: 45px;*/
}
.experiences-banner .exp-banner-line p {
    color: rgba(255,255,255, 0.7);
    font-size: 20px;
}
.experiences-banner .exp-banner-line p strong {
    color: #FFED00;
    font-weight: 400;
}
.experiences-banner {
    padding: 165px 0;
    background-position: bottom;
}
.exp-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.exp-cards-wrapper .exp-card {
    background: rgb(22,22,22);
    background: linear-gradient(70deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 25%, rgba(77,78,79,1) 83%, rgba(77,78,79,1) 100%);
}
.exp-cards-wrapper .exp-card-bg {
    padding: 40px;
    background-size: auto 90%;
    background-position: center right 20px;
}
.experience-cards .exp-card-btn {
    max-width: 82px;
    text-align: center;
}
.experience-cards .exp-card-btn .arrow {
    display: inline-block;
    margin-bottom: 5px;
    border: 1px solid #434344;
    padding: 28px 6px;
    border-radius: 30px;
}
.experience-cards a:hover .arrow {
    border-color: #FFED00;
}
.experience-cards a:hover .exp-btn-title {
    color: #FFED00;
}
.experience-cards .exp-card-btn .exp-btn-title {
    font-size: 13px;
    line-height: 20px;
    display: block;
}
.exp-mem .exp-mem-lft {
    width: 50%;
    padding: 100px 50px;
    background-color: rgba(29, 25, 25, 0.70);
}
.exp-mem-lft-cnt {
    /*width: 76%;*/
}
.exp-mem .exp-mem-lft p {
    color: #DFDFDF;
    font-family: 'Futura-PT-Demi';
    font-size: 22px;
    line-height: 32px;
}
.exp-activities .exp-activity-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.exp-activities img {
    height: 100%;
    width: 100%;
}
.exp-activities .exp-act-title {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
}
.exp-activities .exp-act-title h3 {
    color: #FFF6F6;
    font-size: 20px;
    line-height: 30px;
}
.exp-activities .exp-act-cnt {
    display: none;
}
.exp-activities .exp-activity-item:hover .exp-act-cnt {
    display: block;
}
.exp-activities .exp-act-cnt p {
    color: #fff;
    font-size: 15px;
    line-height: 22px;
}
.exp-activities .exp-activity-item::before {
    background-color: #000;
}
.exp-activities .exp-activity-item:hover::before {
    opacity: 0.5;
    background-color: #ef6824;
}
.exp-occasions .ocassion-item-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}
.exp-occasions .occasion-item {
    background-color: #EEEEEE;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    height: 100%;
}
.occasion-icon img {
    border-radius: 15px;
    margin: 0;
}
.exp-occasions .occasion-item .occasion-content {
    padding: 25px 18px;
}
.exp-occasions .occasion-item .occasion-content li {
    font-size: 18px;
    color: #4D4E4F;
    line-height: normal;
    margin-bottom: 7px;
}
.exp-occasions .exp-occasion-cta {
    color: #E55C23;
    display: flex;
    align-items: center;
    width: max-content;
}
.exp-occasions .exp-occasion-cta img {
    width: 7px;
    margin-left: 8px;
}
.exp-help-sec .exp-help-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.exp-help-sec .exp-help-lft {
    flex: 0 0 72%;
    max-width: 72%;
    padding: 35px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    background-position: right;
}
.exp-help-sec .exp-help-rgt {
    flex: 0 0 28%;
    max-width: 28%;
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
    padding: 35px 25px;
}
.exp-help-sec .exp-help-lft > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.exp-help-sec .exp-help-lft::before {
    position: absolute;
    content: '';
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background-color: #0000008f;
}
.exp-help-sec .exp-help-lft .exp-review-cnt {
    width: 56%;
}
.exp-help-sec .exp-help-lft .exp-review-cnt p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Futura-PT-Medium';
    color: #fff;
}
.exp-help-sec .exp-help-rgt h6 {
    color: #2BBCCC;
    font-family: 'Poppins-Regular';
    font-weight: 400;
}
.exp-help-sec .exp-help-rgt p.text-default {
    font-size: 13px;
    line-height: 20px;
}
.exp-help-sec .exp-support input,
.exp-help-sec .exp-support select {
    width: 100%;
}
.exp-help-sec .exp-support label,
.sv-enquiry label {
    font-family: 'Poppins-Semibold';
    display: block;
    margin-bottom: 5px;
}
.exp-help-sec form br,
.sv-enquiry form br {
    display: none;
}
.exp-help-sec .exp-support input,
.exp-help-sec .exp-support select,
.sv-enquiry .sv-form-block input,
.sv-enquiry .sv-form-block select,
.booking-reset form input,
.booking-reset form select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #DCDCDC;
    height: 50px;
    padding: 12px 15px;
    font-size: 13px;
    color: #78787A;
    font-family: 'Poppins-Regular';
    outline: none;
    position: relative;
    z-index: 9;
}
.exp-help-sec .exp-support select,
.sv-enquiry .sv-form-block select,
.booking-reset form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/03/dropdown-arrow-bold-svg.svg') no-repeat center right 10px;
    background-size: 15px;
    padding-right: 30px;
}
.exp-help-sec .exp-support input::placeholder,
.sv-enquiry .sv-form-block input::placeholder,
.booking-reset form input::placeholder {
    font-size: 13px;
    color: #78787A;
    font-family: 'Poppins-Regular';
}
.exp-help-sec .exp-support-contact p,
.sv-enquiry .sv-form-block-tel p {
    display: flex;
    /*flex-wrap: wrap;*/
}
.exp-help-sec .exp-support-contact .tel-code,
.sv-enquiry .sv-form-block-tel .tel-code {
    flex: 20%;
    max-width: 20%;
    min-width: 60px;
    background-color: #DFDFDF;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #78787A;
}
.exp-help-sec .exp-support-contact .wpcf7-form-control-wrap,
.sv-enquiry .sv-form-block-tel .wpcf7-form-control-wrap {
    flex: 80%;
    max-width: 80%;
    position: static;
}
.exp-help-sec .exp-support-contact .wpcf7-form-control-wrap input,
.sv-enquiry .sv-form-block-tel .wpcf7-form-control-wrap input {
    border-radius: 0 10px 10px 0;
}
.exp-help-sec .exp-support-block-one {
    margin-bottom: 18px;
}
.exp-help-sec .exp-support-block-two {
    margin-bottom: 20px;
}
.exp-help-sec .exp-support input.wpcf7-submit,
.sv-enquiry .sv-form-block input.wpcf7-submit {
    border-color: #e31e24;
    border: 0;
    border-width: 2px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Futura-PT-Medium';
    color: #E31E24;
    padding-top: 0;
    padding-bottom: 0;
}
.exp-help-sec .exp-support input.wpcf7-submit {
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    color: #fff;
}
.exp-help-sec .exp-support input.wpcf7-submit:hover,
.sv-enquiry .sv-form-block input.wpcf7-submit:hover {
    color: #fff;
}
.exp-support-contact {
    position: relative;
}
.exp-help-sec .exp-support-block-one .wpcf7-form-control-wrap {
    display: block;
}
.exp-help-sec .wpcf7-not-valid-tip,
.sv-enquiry .wpcf7-not-valid-tip {
    font-size: 0;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    border: 1px solid red;
    border-radius: 10px;
}
.exp-help-sec .wpcf7-not-valid,
.sv-enquiry .wpcf7-not-valid,
.wpcf7-not-valid {
    border-color: red !important;
}
.exp-help-sec .exp-support-block-two .wpcf7-not-valid {
    border-left-color: transparent !important;
}
.exp-help-sec .wpcf7-spinner,
.sv-enquiry .wpcf7-spinner {
    display: none;
}
.exp-help-sec .wpcf7-response-output,
.sv-enquiry .wpcf7-response-output {
    font-size: 14px;
    position: absolute;
    bottom: -60px;
    left: 0;
    margin: 0 !important;
    width: auto;
    padding: 5px 10px !important;
}

/* Home Owners */

.owners-banner {
    padding: 170px 0;
}
.owners-banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.owners-banner-wrapper .owners-banner-lft {
    flex: 45%;
    max-width: 45%;
}
.owners-banner-wrapper .owners-banner-rgt {
    flex: 35%;
    max-width: 35%;
}
.owners-banner-wrapper .owners-banner-lft h3 {
    /*font-size: 48px;*/
    /*line-height: 60px;*/
    font-family: "Futura-PT-Demi";
}
.owners-banner-wrapper .owners-banner-rgt .exp-help-rgt {
    flex: 100%;
    max-width: 100%;
    background-color: #fff;
}
.owners-banner .owners-b-cnt {
    width: 90%;
}
.owners-banner .owners-b-cnt p {
    color: #DFDFDF;
    font-size: 24px;
    line-height: 35px;
    font-family: 'Futura-PT-Medium';
}
.owners-banner-wrapper .owners-banner-rgt .exp-support-owner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 15px;
}
.owners-banner-wrapper .owners-banner-rgt .tel-code {
    flex: 34%;
    max-width: 34%;
}
.owners-banner-wrapper .owners-banner-rgt .exp-support-block-two .wpcf7-form-control-wrap {
    flex: 66%;
    max-width: 66%;
}
.owners-banner .exp-help-sec .exp-support-block-one,
.owners-banner .exp-help-sec .exp-support-block-two {
    margin-bottom: 0;
}
.owners-banner-wrapper .owner-radios {
    margin: 20px 0 25px 0;
}
.owners-banner .exp-support-block input[type="submit"] {
    color: #fff;
}
.owners-banner-wrapper .owner-radios .wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 15px;
}
.owners-banner-wrapper .owner-radios .wpcf7-radio span {
    margin: 0;
    display: block;
}
.owners-banner-wrapper .owner-radios .wpcf7-radio input {
    display: none;
}
.owners-banner-wrapper .owner-radios .wpcf7-radio .wpcf7-list-item-label {
    text-align: center;
    font-size: 18px;
    font-family: 'Poppins-Regular';
    border: 1px solid #B2B2B2;
    border-radius: 10px;
    line-height: 50px;
    box-shadow: inset 0px 3px 6px #00000036;
    cursor: pointer;
    background-color: #DFDFDF;
}
.owners-banner-wrapper .owner-radios .active .wpcf7-list-item-label {
    background-color: #4D4E4F;
    color: #fff;
}
.owners-banner-wrapper .wpcf7-response-output {
    position: static;
    margin-top: 20px !important;
    font-size: 14px;
    line-height: 16px;
}
.handpicked-sec .handpicked-title {
    width: 85%;
}
.handpicked-sec .home-why-us-items {
    width: 82%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.handpicked-sec .home-why-us-item {
    padding-bottom: 18px;
}
.handpicked-sec .home-why-us-items p {
    color: #4D4E4F;
    font-size: 20px;
    line-height: normal;
}
.handpicked-sec .home-why-us-item::after {
    background-color: #F69324;
}
.owner-you .owner-you-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.owner-you .owner-you-items .owner-you-item {
    background: rgb(223,223,223);
    background: linear-gradient(120deg, rgba(223,223,223,1) 0%, rgba(223,223,223,1) 50%, rgba(178,178,178,1) 100%);
    border-radius: 10px 10px 0px 10px;
}
.owner-you-cnt {
    padding: 25px 22px;
}
.owner-you .owner-you-item .title-one p {
    font-size: 22px;
    color: #DFDFDF;
    margin-bottom: 12px;
}
.owner-you .owner-you-item .para-one p {
    color: #000;
    font-size: 14px;
    line-height: 24px;
}
.owner-you .owner-you-item .para-one p strong {
    display: block;
    margin-bottom: 10px;
    line-height: 24px;
    font-family: 'Futura-PT-Demi';
    font-size: 20px;
}
.rentalgram-approach .rental-approach-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.rentalgram-approach .rental-approach-items .rental-approach-item {
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
    padding: 35px;
    display: grid;
    grid-template-columns: 28% 65%;
    grid-gap: 38px;
    align-items: center;
}
.rentalgram-approach .rental-approach-item h6 {
    color: #4D4E4F;
    text-transform: capitalize;
}
.rentalgram-approach .rental-approach-item p {
    color: #4D4E4F;
    font-size: 15px;
    line-height: 22px;
}
.homeowner-testi .ho-testi-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}
.homeowner-testi .ho-testi-img::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background-color: #000;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) -90%, rgba(0,0,0,1) 60%);
    opacity: 0.3;
}
.homeowner-testi .ho-testi-img span {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    color: #FFED00;
}
.homeowner-testi .ho-testi-cnt {
    background-color: #DFDFDF;
    border-radius: 0 0 200px 200px;
    padding: 20px 45px 60px 45px;
}
.homeowner-testi .ho-testi-cnt small {
    display: block;
    font-size: 12px;
    color: #ED1C24;
}
.homeowner-testi .ho-testi-cnt p {
    font-size: 14px;
    line-height: 22px;
    /*padding: 0 15px;*/
}
.homeowner-testi .ho-testi-inner {
    min-height: 220px;
    max-height: 300px;
}

/* Blog Page */

.blog-posts-wrapper .blog-posts-lft {
    float: left;
    width: 68%;
}
.blog-posts-wrapper .blog-posts-rgt {
    float: right;
    width: 28%;
    font-size: 0;
}
.blog-posts-wrapper .blog-posts-first .blog-posts-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.blog-posts-wrapper .blog-posts-first .posts-meta-date span {
    color: #78787A;
    font-size: 14px;
}
.blog-posts-wrapper .blog-posts-first .posts-meta-author span {
    font-size: 14px;
    color: #F69324;
}
.posts-meta-date img,
.posts-meta-author img {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 3px;
}
.blog-posts-wrapper .blog-posts-cnt p {
    color: #78787A;
}
.blog-posts-wrapper .blog-posts-cnt a {
    display: flex;
    align-items: center;
    color: #E55C23;
    width: fit-content;
}
.blog-posts-wrapper a img {
    width: 7px !important;
    margin-left: 8px;
    position: relative;
    top: 1px;
}
.blog-posts-wrapper .blog-posts-more {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list {
    flex: 48%;
    max-width: 48%;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list:not(:first-child) {
    margin-bottom: 30px;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list:first-child,
.blog-posts-wrapper .blog-posts-more .blog-posts-list:last-child {
    flex: 100%;
    max-width: 100%;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list:last-child {
    margin-top: 70px;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list:first-child {
    margin-top: 0px;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list:first-child {
    margin-bottom: 70px;
}
.blog-posts-wrapper .blog-posts-more .blog-posts-list h3 {
    color: #000;
    font-size: 26px;
}
.blog-posts-wrapper .blog-posts-list:last-child .blog-posts-thumb {
    float: left;
    width: 45%;
}
.blog-posts-wrapper .blog-posts-list:last-child .blog-posts-cnt {
    float: right;
    width: 50%;
}
.blog-posts-wrapper .blog-posts-list:last-child .blog-posts-thumb img {
    height: 270px;
    width: 100%;
    object-fit: cover;
}
.blog-posts-wrapper .ct-blog-pagination {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
}
.ct-blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ct-blog-pagination .page-numbers {
    background-color: #F69324;
    padding: 6px 12px;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    vertical-align: top;
}
.ct-blog-pagination .page-numbers.current {
    background-color: #ed1c24;
}
.ct-blog-pagination .prev.page-numbers,
.ct-blog-pagination .next.page-numbers {
    background-color: #ed1c24;
}
.blog-sidebar-block {
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
    padding: 30px;
}
.blog-sidebar-block h4 {
    font-family: 'Futura-PT-Medium';
    font-weight: 500;
    margin-bottom: 25px;
}
.blog-sidebar-block ul li {
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #efefef;
}
.blog-sidebar-block ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.blog-sidebar-block ul li a {
    color: #78787A;
    font-size: 15px;
    display: block;
}
.blogs-posts-related {
    margin-bottom: 150px;
}
.blog-posts-added img {
    width: auto !important;
    display: inherit !important;
}

/* Blog Single */

.blog-single-banner {
    padding: 240px 0;
    background-position: center center;
}
.blog-single-banner h3 {
    font-size: 50px;
}
h1.blog-single-post-title {
    font-size: 36px;
    line-height: 46px;
}
.blog-single-cnt p,
.content-page p,
.content-page ul li {
    color: #78787A;
    margin-bottom: 25px;
}
.blog-single-cnt h2, .blog-single-cnt h3, .blog-single-cnt h4, .blog-single-cnt h5, .blog-single-cnt h6,
.content-page h2, .content-page h3, .content-page h4, .content-page h5, .content-page h6 {
    font-family: 'Futura-PT-Medium';
    font-weight: 500;
    margin-bottom: 25px;
}
.blog-single-cnt img {
    /*display: inline-block;*/
    /*width: 45%;*/
    border-radius: 10px;
    vertical-align: top;
}
.blog-single-cnt img:nth-child(2) {
    /*margin-left: 3%;*/
}
.single-sidebar-posts .blog-posts-added {
    margin-bottom: 70px;
}
.single-sidebar-posts .blog-posts-added:last-child {
    margin-bottom: 0;
}


/* Newsroom */

.newsroom-banner,
.villas-banner {
    padding: 240px 0;
    background-position: center center;
}
.newsroom-listing .newsroom-wrap {
    float: none;
    width: 100%;
}
.newsroom-listing .blog-posts-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px 40px;
}
.newsroom-listing .newsroom-item h3 {
    font-size: 26px;
}

/* Privacy Policy */

.content-page p:last-child {
    margin-bottom: 0;
}
.content-page p a {
    color: #E55C23;
    font-family: "Futura-PT-Medium";
    font-weight: 500;
}
.content-page ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}
.content-page ul li::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    background-color: #e62724;
    width: 7px;
    height: 8px;
    border-radius: 50%;
}

/* Result Page */

.search-results-page li {
    list-style: none;
}
.search-results-page a {
    color: #E55C23;
}
.search-results-page li p {
    margin: 15px 0;
    color: #78787A;
}
.search-results-page li img {
    margin-bottom: 15px;
}

/* Villa Listing Page */

.villa-listing .v-listing-lft {
    float: left;
    width: 65%;
}
.villa-listing .v-listing-rgt {
    float: right;
    width: 28%;
}
.villa-result-wrap .hb-accom-list {
    float: left;
}
.villa-result-wrap .v-listing-rgt .help-form {
    margin-top: 40px;
}

/* Villa Listing HBook Code */

.villa-listing .hb-search-fields-and-submit {
    margin-top: 15px;
}
.villa-listing .v-listing-lft .hb-accom-listing-shortcode-wrapper,
.villa-listing .v-listing-lft .hb-accom-listing-row {
    display: block;
}
.villa-listing .v-listing-lft .hb-accom-listing-column {
    width: 100% !important;
    min-width: auto !important;
    max-width: 100% !important;
    margin-bottom: 60px;
    padding: 20px;
    background: rgb(22,22,22);
    background: linear-gradient(120deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 33%, rgba(77,78,79,1) 67%, rgba(77,78,79,1) 100%);
    border-radius: 10px;
}
.villa-listing .hb-accom-listing-column .hb-accom-listing-desc img {
    max-width: 300px;
}
.villa-listing .hb-accom-listing-column .hb-accom-listing-desc h2 {
    float: right;
}
.villa-listing .hb-accom-listing-column .hb-accom-listing-desc h2 a {
    display: block;
    font-family: "Futura-PT-Demi";
    color: #dfdfdf;
    font-size: 20px;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-accom-listing-booking-form form.hb-booking-search-form {
    margin-bottom: 0;
}
.villa-listing .hb-accom-listing-column .hb-accom-listing-actions-wrapper {
    float: right;
    clear: right;
    margin-top: 10px;
}
.villa-listing .v-listing-lft .hb-title-search-form {
    display: none;
}
.villa-listing .v-listing-lft .hb-searched-summary .hb-people-wrapper {
    color: #fff;
}
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-people-wrapper select {
    background-color: #fff;
}
.villa-listing .v-listing-lft .hb-searched-summary > p {
    margin-right: 10px;
}
.villa-listing .v-listing-lft .hb-searched-summary .hb-button-wrapper {
    margin-right: 0;
}
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-search-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-search-fields > p {
    flex: 0 0 18%;
    max-width: 18%;
    margin: 0;
}
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-search-fields .hb-search-submit-wrapper input {
    margin-top: 0;
}
.villa-listing .v-listing-lft .hb-search-fields-and-submit p.hb-search-no-result,
.villa-listing .v-listing-lft .hb-search-fields-and-submit p.hb-booking-searching {
    color: #fff;
}
.villa-listing .v-listing-lft .hb-accom-listing-booking-form .hb-accom-list {
    width: auto;
}
.villa-listing .v-listing-lft .hb-accom-listing-booking-form .hb-accom-list .hb-accom-desc {
    float: none;
    color: #fff;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-details-fields h3,
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-details-fields label {
    color: #fff;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-details-fields label {
    margin-bottom: 5px;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-resa-summary h3,
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-policies-area h3,
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-policies-area label {
    color: #fff;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-resa-summary-content br {
    display: none;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-confirm-area p {
    color: #fff;
}
.villa-listing .v-listing-lft .hb-accom-listing-column .hb-search-error {
    margin-top: 15px;
    color: red;
}

/* Villas Listing Query */

.villa-listing .villa-item {
    display: grid;
    grid-template-columns: repeat(2, 40% 60%);
    grid-gap: 20px;
    margin-bottom: 60px;
    padding: 20px;
    background: rgb(22,22,22);
    background: linear-gradient(120deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 33%, rgba(77,78,79,1) 67%, rgba(77,78,79,1) 100%);
}
.villa-listing .villa-item:last-child {
    margin-bottom: 0;
}
.villa-listing .villa-item .villa-item-image img {
    width: 100%;
}
.villa-listing .villa-item h5 {
    color: #DFDFDF;
}
.villa-listing .villa-item .location {
    color: #78787A;
    font-size: 14px;
    line-height: 25px;
    display: block;
    margin-top: 5px;
}
.villa-listing .sv-features ul li::before {
    width: 1px;
    border-radius: 0;
    height: auto;
    top: 0;
    bottom: 0;
}
.villa-listing .sv-features ul li p {
    color: #FFED00;
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}
.villa-listing form.hb-booking-search-form {
    margin-bottom: 30px;
}
.villa-listing .hb-searched-summary {
    display: flex !important;
    align-items: center;
}
.villa-listing .hb-searched-summary > p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.villa-listing .booking-reset #hb-form-1-hb-search-form-submit {
    margin-top: 0;
}
.villa-listing .booking-reset .hb-search-error {
    margin-top: 0;
}
.villa-listing .hb-accom-list {
    max-width: initial;
    width: 65%;
    margin: 0;
}
.villa-listing .hb-accom-list .hb-search-result-title-section {
    margin-bottom: 20px;
}
.villa-listing .hb-accom-list .hb-search-result-title-section h3 {
    margin: 6px 0 20px 0;
    display: none;
}

.villa-listing .hb-multi-accom-choices > div > a {
    float: left;
    clear: both;
    width: 310px;
    margin-right: 20px;
}
.villa-listing .hb-multi-accom-choices > div > a img {
    float: none;
    margin: 0;
    border-radius: 10px;
}
.villa-listing .hb-multi-accom-choices .hb-accom {
    position: relative;
    min-height: auto;
    margin-bottom: 60px;
    padding: 20px;
    background: rgb(22,22,22);
    background: linear-gradient(120deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 33%, rgba(77,78,79,1) 67%, rgba(77,78,79,1) 100%);
    border-radius: 10px;
}
.villa-listing .hb-multi-accom-choices .hb-accom::before,
.villa-listing .hb-multi-accom-choices .hb-accom::after {
    content: '';
    display: table;
    clear: both;
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-accom-title a {
    font-size: 20px;
    color: #DFDFDF;
    font-family: "Futura-PT-Demi";
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-accom-price-total {
    display: none;
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-select-accom-wrapper {
    clear: right;
    margin-top: 15px;
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-select-accom-wrapper .hb-select-accom {
    display: none;
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-select-accom-wrapper input[type="submit"] {
    margin-top: 0 !important;
    background-color: #e31e24 !important;
    color: #fff !important;
    font-size: 16px !important;
}
.villa-listing .hb-multi-accom-choices .hb-accom .hb-accom-selected-name {
    color: #fff;
    float: right;
    clear: both;
    font-family: 'Poppins-SemiBold';
    margin-top: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
}
.villa-listing .hb-booking-details-form {
    margin: 0;
}


.help-form {
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
    padding: 40px 25px;
}
.help-form h6 {
    color: #4D4E4F;
}
.help-form p.line {
    font-size: 13px;
    color: #B2B2B2;
    line-height: 20px;
}
.help-form input,
.help-form textarea {
    color: #78787A;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #DCDCDC;
    padding: 10px 15px;
    height: 50px;
    margin-bottom: 10px;
    outline: none;
}
.help-form textarea {
	margin: 0;
	height: 90px;
	resize: none;
}
.help-form form br {
    display: none;
}
.help-form form label {
    font-size: 16px;
    color: #000000;
    font-family: 'Poppins-Semibold';
    display: block;
    margin-bottom: 5px;
}
.help-form .help-form-wrap {
    margin-bottom: 20px;
}
.help-form .help-form-wrap p {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    align-items: center;
}
.help-form .help-form-wrap .wpcf7-form-control-wrap {
    flex: 83%;
    max-width: 83%;
}
.help-form .help-form-wrap .tel-code {
    flex: 34%;
    max-width: 50px;
    min-width: 50px;
    background-color: #DFDFDF;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #78787A;
    height: 50px;
}
.help-form .help-form-wrap input {
    margin: 0;
    border-radius: 10px;
}
.help-form input[type="submit"] {
    border: 0px solid #E31E24;
    color: #fff;
    font-family: 'Futura-PT-Medium';
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}
.help-form .wpcf7-spinner {
    display: none;
}
.help-form .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 7px !important;
    font-size: 14px;
    line-height: 18px;
}
.help-form input.wpcf7-not-valid {
    border-color: red;
}
.payment-secure-img img {
    box-shadow: 5px 5px 15px #0000001A;
    margin: 0 auto;
}

/* Villas Single */

.single-villa-banner {
    min-height: 815px;
    max-height: 815px;
    overflow: hidden;
}
.single-villa-banner div {
    height: 815px;
}
.single-villa-banner .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.single-villa-banner .container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 1;
    width: 85%;
    height: auto;
}
.single-villa-banner .container div {
    height: auto;
}
.single-villa-banner .item {
    position: relative;
}
.single-villa-banner .item::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 170px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgb(28 28 28 / 0) 0%, rgba(28,28,28,0.7) 100%);
}
.single-villa-banner .owl-nav {
    transition: inherit;
    top: inherit;
    bottom: 45px;
    height: 34px;
}
.single-villa-banner .owl-nav .owl-next {
    right: 45px;
}
.single-villa-banner .owl-nav .owl-prev {
    left: 45px;
}
.sv-top-title h1 {
    font-size: 46px;
    line-height: 70px;
}
.sv-top-title h1 {
    font-size: 46px;
    line-height: 50px;
    display: inline-block;
    text-shadow: 0px 0px 6px #00000012;
}
.sv-top-title span {
    display: block;
    font-family: 'Futura-pt-demi';
    color: #FFED00;
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}
.sv-data-lft h3 {
    color: #4D4E4F;
}
.sv-data-lft .loction-yellow {
    font-size: 20px;
    color: #e31e24;
}
.post-title-cnt {
    padding-bottom: 20px;
    border-bottom: 2px solid #efefef;
    margin-bottom: 20px;
}
.sv-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.sv-features ul li {
    position: relative;
    padding-left: 20px;
}
.sv-features ul li::before,
.sv-empty-block ul li::before {
    position: absolute;
    content: '';
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #78787a;
    border-radius: 50%;
}
.sv-features ul li:first-child {
    padding: 0;
}
.sv-features ul li:first-child::before {
    display: none;
}
.sv-title-block {
    background-color: #efefef;
    padding: 10px 20px;
}
.sv-title-block h4 {
    color: #78787A;
    margin-bottom: 0 !important;
}
.sv-empty-block p {
    color: #78787A;
    line-height: 30px;
    margin-bottom: 10px;
}
.sv-empty-block p:last-child {
    margin-bottom: 0;
}
.sv-empty-block h4 {
    font-family: "Futura-PT-Medium";
    font-weight: 500;
    color: #78787A;
    margin-bottom: 15px;
    line-height: 30px;
}
.sv-empty-block ul {
    list-style: none;
}
.sv-empty-block ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.sv-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    align-items: center;
}
.sv-gallery-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 1%;
    height: 290px;
    overflow: hidden;
    /*justify-content: space-between;*/
}
.sv-gallery-wrap .sv-gallery-item {
    flex: 0 0 24%;
    max-width: 24%;
}
.sv-fl-room-gallery-full.sv-fl-am-toggler {
    height: auto;
}
.sv-wrap .sv-data-lft {
    float: left;
    width: 65%;
}
.sv-wrap .sv-book-rgt {
    float: right;
    width: 30%;
}
.sv-features-lists {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px 25px;
}
.vs-act-btn {
    padding: 5px 20px;
    cursor: pointer;
    margin: 20px auto 0 auto;
    display: block;
    border-radius: 5px;
}
.sv-fl-ammenities.sv-fl-ammenities-full {
    height: 330px;
    overflow: hidden;
}
.sv-fl-ammenities.sv-fl-am-toggler {
    height: auto !important;
}
.sv-fl-room-amenities-full {
    height: 330px;
    overflow: hidden;
}
.sv-fl-room-amenities-full.sv-fl-am-toggler {
    height: auto !important;
}
.sv-gallery .sv-gallery-item img {
    border-radius: 10px;
    max-height: 125px;
    width: auto;
    object-fit: cover;
    margin: 0 auto;
}
.sv-features-lists .sv-ficon {
    width: 108px;
    height: 108px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(229, 92, 35, 0.1);
}
.sv-features-lists .features-icon span {
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}
.sv-features-lists .features-special .sv-ficon {
    background-color: rgba(252, 248, 244, 1);
}
.sv-location-lft {
    float: left;
    width: 25%;
}
.sv-location-rgt {
    float: right;
    width: 68%;
}
.sv-location-rgt iframe {
    width: 100%;
    height: 270px;
}
.sv-location-lft .svl-add {
    padding-left: 25px;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/03/pin-marker-icon.svg') no-repeat left top 4px;
    background-size: 14px;
}
.sv-location-lft .svl-add p {
    color: #78787A;
    line-height: 25px;
}
.sv-location-lft .svl-add p a {
    color: #E55C23;
}
.sv-location-lft .svl-gps p a {
    font-size: 14px;
    line-height: 22px;
    display: block;
    color: #2BBCCC;
    word-break: break-all;
}
.sv-fill-block {
    border: 1px solid #DFDFDF;
    border-radius: 10px;
}
.sv-fill-block .sv-title-block {
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #DFDFDF;
}
.sv-fill-block .sv-fill-block-cnt {
    padding: 20px;
}
.sv-fill-block .sv-fill-block-cnt ul {
    list-style: none;
}
.sv-fill-block .sv-fill-block-cnt ul li {
    position: relative;
    font-size: 16px;
    color: #78787A;
    margin-bottom: 10px;
    padding-left: 16px;
}
.sv-fill-block .sv-fill-block-cnt ul li::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #78787a;
}
.sv-fill-block .sv-fill-block-cnt a {
    text-decoration: underline;
}
.house-rules-more {
    display: none;
}
.spotlight-sec .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.spotlight-sec .spotlight-subtitle {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}

.sv-enquiry {
    padding: 35px 30px;
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
}
.sv-enquiry .sv-form-block {
    margin-bottom: 15px;
}
.sv-enquiry .sv-form-submit {
    margin-bottom: 0;
    margin-top: 10px;
}
.sv-enquiry .sv-form-block-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sv-enquiry .sv-form-block-wrap .sv-form-block {
    flex: 50%;
    max-width: 50%;
}
.sv-enquiry .sv-form-block-wrap .sv-form-block:last-child {
    padding-left: 7px;
}
.sv-enquiry .sv-form-block-wrap .sv-form-block:first-child {
    padding-right: 7px;
}
.sv-enquiry .wpcf7-response-output {
    position: relative;
    top: 0;
    margin-top: 20px !important;
}
.villa-single-related .sr-title {
    color: #4D4E4F;
}
.villa-single-related .sr-para {
    font-size: 15px;
    color: #78787A;
}
#single-related .home-trend-cnt h3 {
    /*height: 52px;*/
}
.accom-map-main {
    height: 300px;
}


/* Loyalty Page */

.loyalty-banner {
    padding: 140px 0 50px 0;
    background-position: center;
}
.loyalty-banner h2 {
    font-size: 26px;
    line-height: 32px;
    color: #DFDFDF;
}
.loyalty-belt {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: rgba(9, 9, 9, 0.7);
    justify-content: space-between;
    padding: 25px 230px 25px 230px;
    margin-top: 130px;
}
.loyalty-belt .loyalty-card {
    position: absolute;
    left: 50px;
}
.loyalty-belt .loyalty-cnt p {
    font-size: 20px;
    line-height: 26px;
    color: #F69324;
    font-family: 'Futura-pt-demi';
    text-align: center;
}
.loyalty-belt .loyalty-cta {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 50px;
}
.loyalty-belt .loyalty-cta .primary-btn {
    padding-left: 0;
    padding-right: 0;
    min-width: 150px;
    text-align: center;
}
.loyalty-cards {
    padding-top: 120px;
    margin-top: 0;
}
.loyalty-cards .loyalty-bg-el {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.loyalty-cards .loyalty-card-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.loyalty-cards .lc-item {
    padding: 30px;
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
    background-color: #fff;
}
.loyalty-cards .lc-item h3 {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Poppins-Regular';
    font-weight: 400;
    text-transform: uppercase;
    margin: 22px 0;
}
.loyalty-cards .lc-item .lc-content-wrap .lc-content {
    height: 320px;
    overflow: hidden;
}
.loyalty-cards .lc-item ul {
    list-style: none;
    padding-left: 30px;
}
.loyalty-cards .lc-item ul li {
    position: relative;
}
.loyalty-cards .lc-item ul li::before {
    position: absolute;
    content: '';
    top: 1px;
    left: -30px;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/04/card-icon-small.svg') no-repeat center left;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.loyalty-cards .lc-item ul li:last-child {
    margin-bottom: 0;
}
.loyalty-cards .lc-item ul li:last-child,
.loyalty-cards .lc-item ul li:nth-last-child(2) {
    /*opacity: 0.4;*/
}
.loyalty-cards .lc-item p, .loyalty-cards .lc-item li {
    font-size: 14px;
    color: #4D4E4F;
    margin-bottom: 12px;
}
.loyalty-cards .lc-item .seconday-btn {
    display: block;
    padding: 10px 12px;
    color: #fff;
    text-align: center;
}
.loyalty-cards .lc-item .seconday-btn:hover {
    color: #fff;
    background: #E31E24;
}
.lp-faq .lp-faq-wrap {
    background-color: #202020;
    padding: 45px 40px;
}
.lp-faq .lp-faq-item {
    margin-top: 40px;
    border-bottom: 1px solid #e7e5e3;
    padding-bottom: 15px;
}
.lp-faq .lp-faq-item:last-child {
    padding-bottom: 0;
    border: 0;
}
.lp-faq .lp-faq-item h4 {
    color: #fff;
    line-height: 26px;
}
.lp-faq .lp-faq-item p {
    color: #fff;
}

.custom-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #E2E2E2;
    box-shadow: 5px 5px 15px #0000001A;
}
.custom-share .addtoany_list {
    line-height: 0 !important;
}
.custom-share .addtoany_list > a {
    padding: 0 6px;
}
.custom-share .addtoany_list > a span.a2a_svg {
    border-radius: 50% !important;
}
.custom-share .addtoany_list > a span.a2a_svg svg {
    width: 24px;
    position: relative;
    top: 3px;
}

/* Booking Form Reset */

.booking-reset form #hb-form-1-hb-search-form-submit,
.booking-reset form .hb-change-search-wrapper input,
.booking-reset .hb-next-step input,
.booking-reset .hb-previous-step input,
.booking-reset .hb-confirm-area .hb-confirm-button input,
.villa-listing .hb-multi-accom-choices .hb-accom .hb-select-accom-wrapper input[type="submit"],
.villa-listing .hb-accom-listing-column .hb-accom-listing-actions-wrapper input,
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-button-wrapper input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #DCDCDC;
    height: 50px;
    padding: 12px 15px;
    outline: none;
    position: relative;
    z-index: 9;
    border-color: #e31e24;
    border-width: 0;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Futura-PT-Medium';
    color: #E31E24;
    padding-top: 0;
    padding-bottom: 0;
    background: rgb(227,30,36);
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    color: #fff;
    margin-top: 10px;
}
.booking-reset form #hb-form-1-hb-search-form-submit:hover,
.booking-reset form .hb-change-search-wrapper input:hover,
.booking-reset .hb-next-step input:hover,
.booking-reset .hb-previous-step input:hover,
.booking-reset .hb-confirm-area .hb-confirm-button input:hover,
.villa-listing .hb-multi-accom-choices .hb-accom .hb-select-accom-wrapper input[type="submit"]:hover,
.villa-listing .hb-accom-listing-column .hb-accom-listing-actions-wrapper input:hover,
.villa-listing .v-listing-lft .hb-search-fields-and-submit .hb-button-wrapper input:hover {
    background: #E31E24;
}
.booking-reset h3 {
    color: #4D4E4F;
    font-family: 'Futura-PT-Demi';
    font-size: 25px;
    line-height: 30px;
    text-transform: capitalize;
}
.booking-reset form .hb-search-no-result,
.booking-reset form .hb-booking-searching {
    margin-top: 10px;
}
.booking-reset form .hb-title-search-form {
    margin-bottom: 20px;
    text-transform: capitalize;
}
.booking-reset form .hb-check-dates-wrapper,
.booking-reset form .hb-people-wrapper {
    margin-bottom: 15px;
}
.booking-reset .hb-search-error {
    margin-top: 15px;
}
.booking-reset form .hb-chosen-check-in-date,
.booking-reset form .hb-chosen-check-out-date {
    margin-bottom: 10px;
    background-color: #e31e24;
    padding: 7px 10px;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
}
.booking-reset form .hb-chosen-check-out-date {
    margin-bottom: 20px;
}
.booking-reset form p.hb-people-wrapper {
    margin-bottom: 5px;
}
.booking-reset form .hb-change-search-wrapper {
    margin-top: 15px;
}
.booking-reset form .hb-change-search-wrapper input,
.booking-reset .hb-next-step input {
    margin: 0;
}
.booking-reset .hb-accom-page-one-result .hb-accom {
    border: 0 !important;
    margin: 0 !important;
    min-height: auto;
    padding: 15px 0 !important;
}
.booking-reset .hb-accom-page-one-result .hb-accom-price-total,
.booking-reset .hb-summary-wrapper .hb-summary-accom-wrapper .hb-summary-price-details,
.booking-reset .hb-summary-wrapper .hb-summary-total-price {
    display: none !important;
}
.booking-reset .hb-details-fields {
    margin: 20px 0 0 0;
}
.booking-reset .hb-details-fields h3,
.booking-reset .hb-summary-wrapper h3 {
    margin-bottom: 20px;
}
.booking-reset .hb-details-fields > .hb-clearfix {
    margin-bottom: 15px;
}
.booking-reset .hb-details-fields .hb-column-half {
    float: left;
    width: 48%;
}
.booking-reset .hb-details-fields > p {
    margin-bottom: 15px;
}
.booking-reset .hb-summary-wrapper .hb-resa-summary-content {
    padding: 12px;
    margin-bottom: 20px;
    background-color: #efefef;
    color: #000;
}
.booking-reset .hb-summary-wrapper .hb-resa-summary-content > div:nth-child(3) {
    display: none;
}
.villa-listing .hb-accom-listing-column .hb-accom-listing-actions-wrapper input {
    margin-top: 0 !important;
    background-color: #e31e24 !important;
    color: #fff !important;
    font-size: 16px !important;
}
.booking-reset .hb-policies-area p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
}
.booking-reset .hb-policies-area input[type="checkbox"] {
    width: auto;
    height: auto;
}
.booking-reset .hb-confirm-area {
    margin-top: 15px;
}
.booking-reset .hb-confirm-area .hb-confirm-button {
    margin-top: 20px;
}
.booking-reset .hb-resa-summary p .hb-resa-done-email {
    color: #e31e24;
    font-family: 'Poppins-SemiBold';
}
.booking-reset .hb-resa-summary .hb-resa-summary-content {
    margin: 20px 0;
}

/* States/Location Archive Lisitng Page */

.page-id-2277 .banner-section {
    background-position: bottom;
}
.page-id-3717 .banner-section {
    background-position: bottom -130px center;
}
.villa-archive-para p {
    color: #78787A;
}
.villa-archive-listing .villa-archive-items-lft {
    float: left;
    width: 65%;
}
.villa-archive-listing .villa-archive-items-rgt {
    float: right;
    width: 28%;
}
.villa-archive-items .villa-archive-item {
    display: grid;
    grid-template-columns: repeat(2, 60% 40%);
    grid-gap: 20px;
    margin-bottom: 60px;
    padding: 20px;
    background: rgb(22,22,22);
    background: linear-gradient(120deg, rgba(22,22,22,1) 0%, rgba(37,37,38,1) 33%, rgba(77,78,79,1) 67%, rgba(77,78,79,1) 100%);
}
.villa-archive-listing .vl-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
}
.villa-archive-listing .villa-listing-thumb {
    height: 312px;
}
.villa-archive-listing .villa-listing-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.villa-archive-item .va-item-featured a {
    display: inline-block;
}
.villa-archive-item .va-item-rgt h5 {
    color: #e55c23;
    font-size: 22px;
}
.villa-archive-item .va-item-rgt span {
    color: #fff;
    font-size: 14px;
}
.villa-archive-item .va-item-rgt ul li {
    display: inline-block;
    border-left: 1px solid #78787A;
    padding: 0 7px;
    color: #FFED00;
    color: rgba(255,255,255,0.8);
    font-family: 'poppins-regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}
.villa-archive-item .va-item-rgt ul li:first-child {
    padding-left: 0;
    border-left: 0;
}
.villa-archive-item .va-item-cta {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
}
.villa-archive-item .va-item-cta a {
    background: linear-gradient(90deg, rgba(227,30,36,1) 0%, rgba(229,92,35,1) 75%);
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 5px 12px;
    border-radius: 0px 0px 5px 0px;
}
.villa-archive-item .va-item-cta a:hover {
    /*padding-right: 16px;*/
    color: #fff !important;
}
.villa-archive-item .va-item-ammenities .font-pp-regular {
    display: block;
    font-size: 14px;
    color: #fff;
}
.villa-archive-item .va-item-ammenities .features-icon {
    padding-left: 22px;
    background: transparent url('https://www.therentalgram.com/wp-content/uploads/2023/04/green-tick-icon.svg') no-repeat left top 8px;
}
.va-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.va-pagination .prev,
.va-pagination .next,
.va-pagination .page-numbers.current {
    background-color: #E31E24;
    padding: 8px 10px;
    border-radius: 10%;
    color: #fff;
}
.va-pagination .prev,
.va-pagination .next {
    background-color: #4d4e4f;   
}
.va-pagination .page-numbers {
    width: 35px;
    text-align: center;
    background-color: #4d4e4f;
    padding: 8px 10px;
    border-radius: 10%;
    color: #fff;
}
.va-pagination .prev.page-numbers,
.va-pagination .next.page-numbers {
    width: auto;
}
.intl-tel-input .country-list {
    z-index: 999 !important;
}
.intl-tel-input {
    display: block !important;
}
.intl-tel-input .country-list {
    max-width: 320px;
}
.intl-tel-input .country-list li {
    font-size: 13px;
}
.owners-banner .intl-tel-input .country-list {
    width: 200px;
}
.qlwapp-footer {
    display: none !important;
}
#qlwapp.qlwapp-show .qlwapp-box {
    padding-bottom: 0 !important;
}

/*Long Ans Sec*/

.long-ans-detiles p {
    color: #78787A;
    line-height: 26px;
    margin-bottom:10px;
}
.villa-long-ans {
    border: solid 1px #202020;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
}
button.butn-read-more {
    padding: 10px;
    color: #ffff;
    background: #e43924;
    border: solid 1px #fff;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    cursor: pointer;
}
.villa-long-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.villa-long-wrap {
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
    height: 80%;
    position: relative;
}
.villa-long-modal .villa-long-cnt {
    overflow-y: auto;
    height: 100%;
    padding: 30px;
}
.villa-long-modal.active-modal {
    display: flex !important;
}
.villa-long-cnt p {
    /*color: #78787A;*/
    line-height: 26px;
    margin-bottom: 20px;
}
.villa-long-modal .villa-long-cnt p:empty {
    display: none;
}
.villa-long-cnt p:last-child {
    margin-bottom: 0;
}
.villa-long-wrap #modal-close {
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0px 0px 10px #010101;
    cursor: pointer;
}
.villa-long-cnt h2, 
.villa-long-cnt h3 {
    font-size: 30px;
    line-height: 40px;
    background: linear-gradient(111deg, #E31E24 0%, #F69324 40%, #FFED00 90%, #FEE005 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
}


/* Web Stories */

.new-web-stories .archive-web-stories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.new-web-stories .web-story-card {
    border: 1px solid transparent;
    background: #FFFFFF;
    box-shadow: 0 0 8px 0 rgba(53,53,53,0.18);
    transition: box-shadow .3s ease-out, transform .3s ease-out;
    border-radius: 6px;
    overflow: hidden;
}
.new-web-stories .web-story-card:hover {
    box-shadow: rgba(45,45,45,0.05) 0px 2px 2px, rgba(49,49,49,0.05) 0px 4px 4px, rgba(42,42,42,0.05) 0px 8px 8px, rgba(32,32,32,0.05) 0px 16px 16px, rgba(49,49,49,0.05) 0px 22px 22px, rgba(35,35,35,0.02) 0px 64px 64px;
    transform: translate(0, -4px);
}
.new-web-stories .web-story-card .ws-cnt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.new-web-stories .web-story-card .ws-inner {
    padding: 10px;
}
.new-web-stories .ws-cnt h3 {
    min-height: 132px;
    max-height: 132px;
    overflow: hidden;
}
.new-web-stories .ws-cnt h3 a {
    display: block;
    font-family: "Futura-PT-Demi";
    font-size: 18px;
    line-height: 22px;
    color: #E22E34;
}

























