/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 03 2026 | 13:30:14 */
.booking-form{
    max-width:800px;
    width:100%;
    margin:auto;
    background:#fff;
}

.form-inner{
    display:flex;
    align-items:center;
}

.field{
    flex:1;
    position:relative;
    border-right:1px solid #d2d2d2;
}

/* Inputs */

.field input,
.field select{
    width:100%;
    height:45px;
    border:none;
    background:transparent;
    padding:0 40px 0 14px;
    font-size:14px;
    color:#000;
    outline:none;
    appearance:none;
}
.field select{
	position:relative;
	z-index:2;
	padding:0 30px 0 14px;
}

/* Hide default calendar icon */

input[type="date"]::-webkit-calendar-picker-indicator{
    opacity:0;
    display:none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button{
    display:none;
}

/* Placeholder style */

.date-input:before{
    content:attr(placeholder);
    color:#000;
}

.date-input:focus:before,
.date-input:valid:before{
    display:none;
}

/* SVG Icons */

.calendar-btn,
.dropdown-icon{
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.calendar-btn svg,
.dropdown-icon svg{
    width:100%;
    height:100%;
}

/* Search Button */

.search-btn{
    background:#000;
    color:#fff;
    border:none;
    min-width:max-content;
    height:40px;
    margin:16px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
	
}

.search-btn:hover, .search-btn:focus{
    opacity:0.7;
	color:#fff;
}

/***card style**/
.product-list .row .col{
	width:calc(33% - 20px);
}
.property-card{
    width:100%;
    background:#fff;
    overflow:hidden;
	transition:all .3s ease;
}
.property-card:hover{
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.card-image-area{
    position:relative;
    height:320px;
    overflow:hidden;
}
.card-image-area::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:180px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0)
    );
    z-index:1;
}

.property-card .slider{
    display:flex;
    height:100%;
    transition:transform .7s ease;
}

.property-card .slide{
    min-width:100%;
    height:100%;
}

.property-card .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.property-card .price-tag{
    position:absolute;
    left:22px;
    bottom:24px;
    color:#fff;
    font-size:14px;
    font-weight:400;
    letter-spacing:.2px;
    z-index:5;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.property-card .card-content{
    background:#fff;
    padding:22px 22px 26px;
    position:relative;
	text-align:left;
}
.property-card .card-content p{
	margin-bottom:0px;
	display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;    
    overflow: hidden;
    text-overflow: ellipsis;
	min-height:47.5px;
}

.property-card .property-meta{
    display:flex;
    align-items:center;
    gap:26px;
    margin-bottom:22px;
}

.property-card .meta-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:#111;
    font-size:15px;
}

.property-card .meta-item svg{
    width:20px;
    height:20px;
    stroke:#111;
}

.property-card .property-title{
    font-size:18px;
    line-height:1;
    font-weight:700;
    margin-bottom:12px;
    color:#111;
	margin-top:0px;
}

.property-card .property-desc{
    font-size:14px;
    line-height:1.7;
    color:#111;
    max-width:90%;
}

.property-card .slider-nav{
    position:absolute;
    top:26px;
    right:22px;
    display:flex;
    align-items:center;
    gap:18px;
}

.property-card .nav-btn{
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.property-card .nav-btn svg{
    width:18px;
    height:18px;
    stroke:#111;
    stroke-width:1.8;
    transition:.3s;
}

.property-card .nav-btn:hover svg{
    transform:scale(1.15);
}
.product-list p:empty{
	display:none;
}
.product-list .row{
	display:flex;
	flex-wrap:wrap;
	gap:35px;
	justify-content:start;
}
.list-middle-content{
	margin-top:50px;
	margin-bottom:50px;
}
.rms-properties-page {
    margin: 100px auto 50px;
    max-width: 1200px;
	padding:0px 15px;
}
.listing-page-header {
    text-align: center;
    max-width: 1000px;
    margin: 0px auto 60px;
	font-size:14px;
}
.rms-search-form-wrap form .rms-form-grid {
	display:flex;
	justify-content:space-between;
	align-items: end;
	gap:15px;
	margin-bottom:20px;
	padding-bottom:30px;
	border-bottom:1px solid #333;
	flex-wrap:wrap;
}
.rms-search-form-wrap form .rms-form-grid .rms-form-group {
    flex: 1 160px;
}
.rms-search-form-wrap form .rms-form-grid label {
    font-size:14px;
}
.rms-search-form-wrap form .rms-form-grid .rms-form-group input, .rms-search-form-wrap form .rms-form-grid .rms-form-group select{
    background-color:#fff !important;
}

/**Single product page**/
.hero-sec {
  display: flex;
  max-height: 550px;
text-align:left;
	margin-top:25px;
}

/* LEFT */
.hero-left {
  position: relative;
  width: 100%;
}

.hero-sec .slider {
  height: 100%;
  position: relative;
}

.hero-sec .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-sec .slide.active {
  display: block;
}

/* ARROWS */
.hero-sec .arrow {
  position: absolute;
  bottom: 0px;
/*   transform: translateY(-50%); */
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-sec .arrow.left { left: 20px; }
.hero-sec .arrow.right { right: 20px; }

/* DOTS */
.hero-sec .dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-sec .dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.hero-sec .dot.active {
  background: #fff;
}

/* RIGHT PANEL */
.hero-sec .hero-right {
  background: #f3eee7;
  padding: 60px 50px;
}

.hero-sec .hero-right h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.hero-sec .meta {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
  align-items: center;
}
.hero-sec .meta i {
    font-size: 18px;
}
.hero-sec .meta img {
  width: 31px;
  height: auto;
}

.hero-sec .meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-sec .desc {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 70px;
}

.hero-sec .price span {
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-sec .price h3 {
  margin: 5px 0;
}

.hero-sec .price p {
  font-size: 13px;
  color: #6f6a64;
}

.hero-sec .link {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid #000;
  text-decoration: none;
  color: #000;
}

/* Tabs section */
.details-section-wrapper{
	padding: 80px 60px;
  background: #ffffff;
}
.details-section {
  display: flex;  
  gap: 60px;
	max-width:1200px;
	margin:auto;
}

/* LEFT */

.details-section .details-left {
  width: 70%;
}

.details-section .cal-right {
  width: 30%;
}

.details-section .details-left .intro {
  max-width: 750px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
}

/* TABS */
.details-section .tab-buttons {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #d8d3ce;
  margin-bottom: 30px;
}

/* TAB BUTTON */
.details-section .tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 2px;
  color: #8a857f;
  cursor: pointer;
  position: relative;
}

/* ACTIVE TAB */
.details-section .tab.active {
  color: #111;
}

/* UNDERLINE */
.details-section .tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: #111;
  transition: width 0.3s ease;
}

.details-section .tab.active::after {
  width: 100%;
}
.details-section .tab-content {
  transition: 
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LIST GRID */
.details-section .list-grid {
  display: flex;
  gap: 60px;
}

.details-section .list-grid ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  line-height: 1.7;
  width: 50%;
}

.details-section .list-grid ul li {
  margin-bottom: 20px;
  padding-left: 20px;
}

/* TITLE */
.details-section .availability-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6f6a64;
}

.details-section .divider {
  height: 1px;
  background: #807c78;
  margin: 15px 0 30px;
}

.rms-reservation-content.row input,
.rms-reservation-content.row select {
	padding: 14px;
	border: 1px solid #d8d3ce;
	background: transparent;
	border-radius:4px;
}
.rms-reservation-content.row input:focus,
.rms-reservation-content.row select:focus {
	box-shadow:none;
	border-color: #8a6161;
}
.rms-reservation-content .wpcf7-validation-errors {
    display: flex !important;
    justify-content: center !important;
    border-color: red !important;
    padding: 8px 0 !important;
}
.rms-reservation-content.row input::placeholder,
.rms-reservation-content.row select::placeholder {
	color:#757575;
}
.rms-reservation-content.row .tx-bg {
	background-color: #f6f3ef !important;
}
.rms-reservation-content.row .rms-reservation-right-sidebar .d-flex p.text-dark {
	font-weight:500 !important;
}

/* HEADER */
.details-section .calendar-header {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 15px;
}

.booking-preview-submit-btn {
	margin-top: 20px;
    padding: 13px 15px;
    background: #000;
    letter-spacing: 0;
    font-weight: 500;
    border: 0 none;
    border-radius: 3px;
    color: #ffffff;
    min-width: 100px;
    position: relative;
}

/* WEEK */
.details-section .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

/* GRID */
.details-section .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.details-section .calendar-grid span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* MUTED */
.details-section .calendar-grid .muted {
  background: #e9e4de;
}

/* DIAGONAL */
.details-section .calendar-grid .diagonal {
  position: relative;
}

.details-section .calendar-grid .diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 48%,
    #dcd6cf 50%,
    #dcd6cf 52%,
    transparent 54%
  );
}

/* FORM */
.details-section .booking-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT GROUP */
.details-section .input-group {
  position: relative;
}

.details-section .input-group input {
  width: 98%;
  padding: 14px;
  border: 1px solid #d8d3ce;
  background: transparent;
}


.details-section .input-group .icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

/* BUTTON */
.details-section .masonry {
  column-count: 4;
  column-gap: 16px;
  margin-top: 60px;
}

.details-section .masonry img {
  width: 100%;
  margin-bottom: 16px;
  display: block;
  break-inside: avoid;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.details-section .cal-select{
  margin-top: 10px;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
	text-align:center;
  position: relative;    
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
	overflow:hidden;
	
}

#pay-now-btn{
	background: #000;
    letter-spacing: 0;
    font-weight: 500;
    margin: 25px 0px 26px;
    padding: 13px 15px;
    cursor: pointer;
    border: 0 none;
    border-radius: 3px;
    color: #ffffff;
    min-width: 100px;
    position: relative;
    font-size: 16px;
}

/* subtle lift */
.details-section .cal-select:hover{
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.3);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
        background-color: #1a1a1a;
}

.details-section .cal-select::after{
    content:"";
    position:absolute;
    left:-120%;
    bottom:0;

    width:120%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        transparent
    );

    transition:left .75s cubic-bezier(.19,1,.22,1);
}

.details-section .cal-select:hover::after{
    left:100%;
}

/* premium shine */
.details-section .cal-select::before{
    content:"";
    position:absolute;
    top:-40%;
    left:-120%;

    width:60%;
    height:180%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform:rotate(18deg);
    transition:left .9s cubic-bezier(.19,1,.22,1);

    pointer-events:none;
}

.details-section .cal-select:hover::before{
    left:160%;
}

.masonry img:hover {
  transform: scale(1.05);
}
.other-options-wrapper{
	background: #f6f3ef;
  padding: 80px 60px;
  text-align: center;
}
.other-options {
  max-width:1200px;
	margin:auto;
}

/* TITLE */
.other-options h2 {
  font-size: 26px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* GRID */
.other-options .options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.other-options .card {
  background: #fff;
}

/* IMAGE */

.other-options .card {
  transition: transform 0.4s ease;
}

.other-options .card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.other-options .card:hover {
  transform: scale(1.05);
}

/* CONTENT */
.other-options .card-content {
  padding: 20px;
}

.other-options .card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.other-options .card-content p {
  font-size: 14px;
  color: #6f6a64;
  line-height: 1.5;
  margin-top: 0;
}

/* DIVIDER BELOW */
.other-options .section-divider {
  margin: 60px auto 0;
  width: 300px;
  height: 1px;
  background: #aaa;
}
.wf-rms-pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 30px auto;
}
.page-numbers {
    width: 30px;
    height: 30px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	transition:all .3s ease;
}
.page-numbers.current, a.page-numbers:hover{
	background:#333;
	color:#fff;
}
.details-section .tab-content{
	display:none;
}.details-section .tab-content.active{
	display:block;
}
/* --- Flatpickr Calendar Theme Override --- */

/* 1. Main Calendar Container & Header */
.flatpickr-calendar {
    background: #ffffff;
    border: 1px solid #e5dfd5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: inherit; /* Inherits your clean site typography */
}

.flatpickr-current-month {
    color: #000000 !important;
    font-weight: 600;
}

.flatpickr-weekday {
    color: #7a756e !important; /* Muted stone color for day initials */
    font-weight: 500;
}

.flatpickr-day {
    background: #f3eee7 !important;
    border-color: transparent !important;
    color: #1a1a1a !important;
    border-radius: 4px; /* Slightly softer than sharp corners */
    transition: all 0.2s ease;
}

.flatpickr-day:hover {
    background: #e5dfd5 !important;
    color: #000000 !important;
}


.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    background: #f9f8f6 !important; 
    color: #bfb9b2 !important; 
    cursor: not-allowed;
    text-decoration: line-through; 
    opacity: 0.6;
}


.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #000000 !important; 
    color: #ffffff !important;
    font-weight: 600;
}

.flatpickr-day.startRange {
    box-shadow: 5px 0 0 #000 !important; 
}

.flatpickr-day.endRange {
    box-shadow: -5px 0 0 #000 !important;
}
.flatpickr-day.inRange {
    box-shadow: -5px 0 0 #000, 5px 0 0 #000 !important;
}

.flatpickr-day.startRange.endRange {
    box-shadow: none !important;
}
.property-card .slide{
	overflow:hidden;
}
.property-card .slide img{
	transition:all .3s cubic-bezier(.4, 0, .2, 1);
}
.property-card:hover .slide img {
    transform: scale(1.04);
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
	width:max-content;
	font-size:16px;
	display:inline;
}
.flatpickr-current-month .numInputWrapper{
	font-size:16px;
}
.flatpickr-day{
	border-color: #ffffff !important;
}
.dayContainer{
	padding:8px;
}
/* .flatpickr-calendar{
	padding:5px;
} */
.details-section-wrapper .flatpickr-calendar.inline{
	width:100%;
	padding: 0;
    border: none;
    box-shadow: none;
}
.details-section-wrapper .flatpickr-rContainer{
	margin:auto;
}
button.rms-search-btn {
    background: #000;
    color: #fff;
}
p.calendar-error:empty{
	display:none;
}
.calendar-error {
    color: #721c24;
    background-color: #f8d7da;
    border:1px solid #f5c6cb;
    padding:2px 15px;
    border-radius:30px;
    width:max-content;
    margin:auto;
    font-size:12px;
}
.cal-clear-btn{
   color: #1b1e21;
    background-color: #d6d8d9;
    border:1px solid #c6c8ca;
    padding:8px 20px;
    border-radius:30px;
    width:max-content;
    margin:auto;
    font-size:12px
}
.cf7mls_next.action-button{
	background:#000;
	letter-spacing: 0;
    font-weight: 500;
}
form.cf7mls input.wpcf7-form-control.wpcf7-submit,
.modal-content .btn-primary{
	background:#000;
}
.modal-content .btn-primary,
.modal-content .btn-primary:hover, .modal-content .btn-primary:focus{
	border-color:#000;
}
form.cf7mls input.wpcf7-form-control.wpcf7-submit:hover,
form.cf7mls input.wpcf7-form-control.wpcf7-submit:focus,
.modal-content .btn-primary:hover,
.modal-content .btn-primary:focus{
	background:#000;
	opacity:.8
}
span#timer {
    color: #ffe083;
}
.wpcf7-form h2{
	background: #F3EEE7;
    padding: 12px 15px;
    border-radius: 4px;
    border-left: 3px solid;
}
div#timer-wrapper {
    padding: 10px 30px 14px !important;
    margin: auto;
    background: linear-gradient(45deg, black, #c9630c52);
}
.modal .modal-header {
    background: #F3EEE7;
    color: #000;
    border-color: #e5dfd6;
	padding: 10px 15px;
}
/* .details-section-wrapper .flatpickr-current-month{
	left:4%;
} */


/* Responsive */

@media screen and (max-width:992px){
	.product-list .row .col{
		width:calc(50% - 20px);
	}
	.card-image-area{
        height:360px;
    }
	.reservation-form-wrapper {
		margin-top:15px;
	}
}
@media(max-width:768px){

    .form-inner{
        flex-direction:column;
    }

    .field{
        width:100%;
        border-right:none;
        border-bottom:1px solid #d2d2d2;
    }

    .field input,
    .field select{
        min-height:52px;
        font-size:18px;
    }

    .search-btn{
        width:calc(100% - 32px);
        margin:16px;
        min-width:unset;
        height:40px;
        font-size:14px;
    }
	.property-card{
        width:100%;
    }

    

    .property-card .property-desc{
        font-size:14px;
        max-width:100%;
    }

    .property-card .property-meta{
        gap:15px;
        flex-wrap:wrap;
    }
	.details-section {
    padding: 40px 30px;
		text-align:left;
  }
  .details-section .list-grid {
    flex-direction: column;
    gap: 0px;
  }
  .details-section .list-grid ul {
    width: 100%;
    margin: 0;
  }
  .details-section .list-grid ul li {
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .hero-sec {
    height: unset;
    margin-bottom: 0;
	  max-height:unset;
	  
  }
  .hero-sec .meta {
    margin-bottom: 30px;
  }
  .hero-sec .desc {
    margin-bottom: 30px;
  }
  .hero-sec .cal-right {
    width: 60%;
  }
  .details-section .input-group input {
    width: 90%;
  }
	.details-section-wrapper, .other-options-wrapper{
		padding:0px;
	}
	.details-section .cal-select{
		padding:12px;
	}
	.rms-reservation-content.row {
		padding: 0 20px;
    	flex-direction: column-reverse;
	}
	.rms-reservation-right-sidebar,
	.rms-reservation-left-sidebar {
		width:100% !important;
	}
	.rms-reservation-right-sidebar img.img-fluid {
		height: 350px;
		object-fit: cover;
		object-position: center;
	}
	.rms-reservation-left-sidebar .cf7mls-btns {
		justify-content:center;
		display:flex;
	}
}
@media screen and (max-width:550px) {
	.product-list .row .col {
        width: calc(100% - 0px);
    }
	.rms-search-form-wrap form .rms-form-grid{
		column-gap:5px;
	}
	.rms-search-form-wrap form .rms-form-grid .rms-form-group{
		max-width:48%;
	}
	.rms-search-form-wrap form .rms-form-grid .rms-form-group:has(.flatpickr-input){
		flex: 1 auto;
		max-width:98%;
	}
	.rms-search-form-wrap input.flatpickr-input.flatpickr-mobile {
		padding: 0;
/* 		padding-top: 5px; */
		line-height: 34px;
		max-height: 34px;
		min-height:34px;
		padding-left:10px;
		max-width:100%;
		width:calc(100% - 0px);
	}
/* 	.rms-search-form-wrap input.flatpickr-input.flatpickr-mobile::placeholder{
		margin-left:10px;
	} */
	input.date-input.flatpickr-input.flatpickr-mobile, input.date-input.flatpickr-input.flatpickr-mobile::placeholder {
		color: #000;
		text-align:left;
	}
	input.date-input.flatpickr-input.flatpickr-mobile {
		    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    text-align: left;
	}
	input::-webkit-date-and-time-value{
		text-align:left;
	}
}
@media screen and (max-width:460px) {
  .hero-sec {
    flex-direction: column;
  }
  .details-section {
    flex-direction: column;
    gap: 40px;
  }
  .details-section .details-left .intro {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .details-section .details-left {
    width: 100%;
  }
  .details-section .cal-right {
    width: 100%;
  }
  .other-options .options-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .other-options {
    padding: 40px 30px;
  }
  .hero-sec .hero-right {
    padding: 10px 30px 25px 30px;
  }
  .hero-sec .slider {
    height: 250px;
  }
  .hero-sec .meta {
    margin-bottom: 30px;
  }
  .hero-sec .desc {
    margin-bottom: 30px;
  }
  .other-options h2 {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
