/*
Theme Name: Mediletz
Author: Muneeb Bhai/Zaki Bhai
Description: A Project built with 💖
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mediletz
*/



/* global styling */
html,
body{
  padding: 0;
  margin: 0;
}
html{
  scroll-behavior: smooth;
}
body{
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 26px;
}
*{
  box-sizing: border-box;
}
*::before,
*::after{
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6{
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
p{
  margin: 0;
}
a{
  text-decoration: none;
  font-weight: 500;
}
button,
input[type='button'],
input[type='submit']{
  box-shadow: none;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}
.container{
  width: 1250px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.container-wide{
  width: 900px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1280px) {
  .container{
    padding: 0 10px;
  }
}
.d-flex{
  display: flex;
}
.wrap{
  flex-wrap: wrap;
}
.just-end{
  justify-content: flex-end;
}
.just-center{
  justify-content: center;
}
.items-center{
  align-items: center;
}
.text-center{
  text-align: center;
}
.space-between{
  justify-content: space-between;
}
.dir-column{
  flex-direction: column;
}
img{
  max-width: 100%;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}





/* Header */
.header{
  position: relative;
  z-index: 1;
}
.header-content{
  align-items: end;
  gap: 20px;
}
.header-logo{
  width: 180px;
}
.menu-book{
  margin-bottom: 30px;
  align-items: end;
  gap: 50px;
}
.main-menu{
  margin-bottom: 5px;
}
.main-menu .menu{
  display: flex;
  gap: 50px;
}
.main-menu .menu a{
  color: #000;
}
.main-menu .menu a:hover{
  border-bottom: 2px solid #000;
}
.current_page_item{
  border-bottom: 2px solid #000;
}

.sign-content{
  gap: 12px;
}
.header_link_1,
.header_link_2{
  gap: 6px;
  margin-bottom: 8px;
}
.header_link_1 p,
.header_link_2 p{
  color: #000;
  font-weight: 600;
}
.header_link_1 img,
.header_link_2 img,
.header_link_3 img{
  width: 20px;
}
.header_link_3{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b25fb9;
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 4px;
  margin: 0 auto;
  gap: 4px;
  transition: .6s ease-in-out;
}
.header_link_3:hover{
  background-color: #000;
  transition: .6s ease-in-out;
}




/* mobile-header */
.mobile-header{
  display: none;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: #20222F;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 14px 8px 8px 30px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
@media only screen and (max-width: 1180px) {
  .main-menu .menu{
    gap: 20px;
  }
}
@media only screen and (max-width: 1080px) {
  .hero{
    z-index: inherit !important;
  }
  .header{
    display: none;
  }
  .mobile-header{
    display: block;
    position: relative;
    z-index: 1;
  }
  .header_link_4 img {
    width: 20px;
  }
  .header_link_4 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b25fb9;
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 4px;
    gap: 4px;
    transition: .6s ease-in-out;
  }
  .header-logos{
    position: relative;
    z-index: 1;
  }
  .header-logos{
    width: 280px;
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 860px) {
  .cut-image{
    width: 200px;
  }
  .hero_title{
    text-align: center;
    margin: 0 auto;
  }
  .search{
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .header-mobile-content{
    gap: 20px;
  }
  .header-logos{
    flex: 1.5 !important;
  }
  .header-logos,
  .mobile-menu,
  .header_link_4{
    flex: 1;
  }
  .header-logos{
    width: 200px;
  }
  .header_link_4 img{
    width: 18px;
  }
  .header_link_4 p{
    font-size: 12px;
  }
  .cut-image{
    width: 120px;
  }
  .mobile-menu{
    display: flex;
    justify-content: flex-end;
  }
}




/* Front Page */
.search{
  height: 60px;
  width: 380px;
  position: relative;
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 20px;
}
.search input{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  background-color: aqua;
  font-size: 18px;
  border-radius: 50px;
  padding: 0 60px 0 20px;
  color: #000;
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search .search-btn{
  height: 50px;
  width: 50px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-color: #664AFF;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}




/* Hero */
.hero{
  margin: 60px 0;
  position: relative;
  z-index: 1;
}
.hero-texts{
  margin-top: 20px;
}
.hero_title{
  font-size: 50px;
  line-height: 54px;
  font-weight: 700;
  max-width: 100%;
  width: 550px;
}
.hero_title span:first-child{
  color: #b25fb9;
}
.hero_title span:last-child{
  color: #70d3e0;
}
.cut-image{
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 860px) {
  .hero_title{
    text-align: center;
    margin: 0 auto;
  }
  .search{
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 860px) {
  .hero-content{
    flex-direction: column;
    gap: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .hero{
    margin-top: 20px;
  }
  .hero_title{
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }
  .search{
    width: 350px;
  }
}



/* Medical */
.medical{
  margin-top: 120px;
  margin-bottom: 80px;
  position: relative;
  z-index: 99;
}
.medical-cut-image{
  position: absolute;
  top: -200px;
  width: 200px;
}
.medical_title{
  font-size: 50px;
  color: #000;
  font-weight: 800;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.medical_title span{
  color: #b25fb9;
}
.medical_text{
  padding-bottom: 20px;
}


.slided-medical .swiper-slide-duplicate-prev,
.slided-medical .swiper-slide-active{
  margin-top: 120px;
}
.swiper-slide-next .medical-image__slide{
  background-color: #b25fb9;
}
.swiper-slide-next .medical-image__slide h1{
  color: #fff;
}
.swiper-slide-next .medical-image__slide p{
  color: #fff;
}
.swiper-slide-next .medical-image__slide .btn-secondary{
  background-color: #fff;
  color: #b25fb9;
}
.swiper-slide-next .medical-image__slide .btn-secondary:hover{
  background-color: #949393;
  color: #fff;
}
.medical-image__slide{
  background-color: #fff;
  box-shadow: 0 15px 15px 15px rgba(0, 0, 0, 10%);
  width: 372px;
  border-radius: 14px;
}
.medical-image-image{
  position: relative;
}
.slide_content_image_1{
  position: absolute;
  bottom: 5px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.medical-image__slide_content {
  padding: 30px 10px;
}
.medical_slide_price{
  color: #949393;
  font-weight: 700;
  padding-bottom: 20px;
}
.medical_slide_title{
  color: #000;
  font-weight: 700;
  padding-bottom: 15px;
}
.medical_slide_text{
  font-size: 14px;
  padding-bottom: 15px;
}
.btn{
  padding: 10px 20px;
  transition: .6s ease-in-out;
  overflow: hidden;
  display: block;
  font-weight: 600;
  width: 200px;
  margin: 0 auto;
  border-radius: 6px;
}
.btn-secondary{
  background-color: #949393;
  color: #fff;
}
.btn-secondary:hover{
  background-color: #b25fb9;
  transition: .6s ease-in-out;
}
.slided-medical .swiper{
  padding-bottom: 40px !important;
}
.slided-medical .swiper-button-next{
  top: 85% !important;
  left: 54% !important;
}
.slided-medical .swiper-button-prev{
  top: 85% !important;
  left: 42% !important;
}
.medical-content{
  position: relative;
}
.swiper-wrapper{
  margin-top: 80px;
}
.medical_image{
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 1020px) {
  .swiper-slide-duplicate-prev,
  .swiper-slide-active{
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 640px) {
  .medical{
    margin-top: 60px;
  }
  .slided-medical .swiper-button-prev,
  .slided-medical .swiper-button-next{
    top: 96% !important;
  }
  .slided-medical .swiper{
    padding-bottom: 90px !important;
  }
  .medical_title{
    font-size: 40px;
  }
  .medical-cut-image{
    width: 100px;
    top: -60px;
  }
  .medical_text{
    position: relative;
    z-index: 1;
  }
}







/* About Medical */
.about-medical{
  margin: 80px 0;
}
.about-medical-content{
  position: relative;
}
.about-medical-texts{
  position: absolute;
  top: 20%;
  margin-left: 40px;
  width: 500px;
}
.about_medical_title{
  font-size: 44px;
  line-height: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.about_medical_title span{
  color: #949393;
}
.about_medical_tagline{
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
}


.about-link{
  gap: 10px;
  margin-top: 20px;
}
.about_link_content1{
  background-color: #949393 !important;
}
.about_link_content1:hover{
  background-color: #b25fb9 !important;
}
.about_link_content{
  background-color: #b25fb9;
  color: #fff;
  border-radius: 4px;
  transition: .6s ease-in-out;
  padding: 10px 20px;
  gap: 8px;
  transition: .3s ease-in;
}
.about_link_content:hover{
  background-color: #949393;
  transition: .3s ease-in;
}
.about_link_content img{
  width: 20px;
}
.about-medical-mobile{
  display: none;
}
@media only screen and (max-width: 860px) {
  .about-medical-mobile{
    position: relative;
    display: block;
  }
  .about-medical,
  .about-link{
    display: none;
  }
  .about-medical-texts-mobile{
    padding: 20px;
    text-align: center;
  }
  .about_medical_title_mobile{
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 2px solid #b25fb9;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6px;
  }
  .about_medical_title_mobile span{
    color: #b25fb9;
  }
  .about_medical_tagline_mobile{
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .about-mobile-image img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
  }
}
@media only screen and (max-width: 640px) {
  .about_medical_title_mobile{
    font-size: 36px;
    width: 300px;
  }
  .about-mobile-image img{
    width: 100%;
  }
}



/* Why Mediletz */
.why-mediletz{
  margin: 80px 0;
}
.why-content{
  gap: 20px;
}
.why-repeaters{
  width: 60%;
}
.why-texts{
  width: 40%;
}
.column{
  width: 45%;
  float: left;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-right: 30px;
}
.why_repeater{
  text-align: center;
  background-color: #fff;
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 10%);
  padding: 20px;
  transition: .5s ease-in-out;
}
.why_repeater:hover{
  transform: translateY(-10px);
  transition: .5s ease-in-out;
}
.why_repeater img{
  width: 60px;
}
.why_repeater_title{
  font-size: 18px;
  margin: 5px 0;
  font-weight: 700;
}
.why_repeater_text{
  font-size: 14px;
  line-height: 24px;
}

.why_title{
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 700;
}
.why_title span{
  color: #b25fb9;
}
.why_text{
  font-weight: 500;
  font-size: 20px;
}
.why_repeater2{
  margin: 20px 0;
  gap: 10px;
}
@media only screen and (max-width: 1180px) {
  .why-content{
    flex-direction: column;
    gap: 30px;
  }
  .why-repeaters,
  .why-texts{
    width: 100%;
  }
  .why-texts{
    text-align: center;
    margin: 0 auto;
  }
  .why_repeater2{
    justify-content: center;
  }
  .column:first-child{
    margin-right: 50px;
  }
  .column:nth-child(3){
    margin-right: 50px;
  }
}
@media only screen and (max-width: 860px) {
  .why-content{
    flex-direction: column;
    gap: 30px;
  }
  .why-repeaters,
  .why-texts{
    width: 100%;
  }
  .why-texts{
    text-align: center;
    margin: 0 auto;
  }
  .why_repeater2{
    justify-content: center;
  }
  .column{
    margin-right: 0;
  }
  .column:first-child{
    margin-right: 50px;
  }
  .column:nth-child(3){
    margin-right: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .column{
    width: 100%;
  }
  .column:first-child{
    margin-right: 0;
  }
  .column:nth-child(3){
    margin-right: 0;
  }
  .why_repeater2 p{
    font-size: 14px;
  }
}









/* Reviews */
.reviews{
  margin: 80px 0;
  position: relative;
  margin-top: 120px;
}
.reviews_title{
  font-size: 48px;
  color: #000;
  font-weight: 700;
}
.reviews-cut-image-1{
  position: absolute;
  top: -80px;
  left: 0;
  width: 600px;
}
.reviews-cut-image-2{
  position: absolute;
  top: -120px;
  right: 0;
  width: 300px;
}
.reviews .swiper-button-next{
  top: 60% !important;
  left: 54% !important;
  color: #000;
}
.reviews .swiper-button-prev{
  top: 60% !important;
  left: 42% !important;
  color: #000;
}

.reviews-slider{
  position: relative;
}
.reviews-slider-texts{
  width: 350px;
  position: absolute;
  top: 11%;
  left: 10%;
}
.reviews_slider_star{
  width: 120px;
}
.reviews_slider_title{
  font-size: 20px;
  margin: 8px 0;
}
.reviews_slider_text{
  font-size: 14px;
}

.reviews .swiper-slide-next{
  margin-left: -60px;
  margin-right: 90px;
}
.reviews .swiper-slide-prev{
  margin-left: 40px;
  margin-right: -60px;
}
.reviews .swiper-slide-next,
.reviews .swiper-slide-prev{
  margin-top: 320px !important;
}
.slider-reviews{
  position: relative;
  margin-top: 60px;
}
.reviews_image{
  position: absolute;
  top: 0;
}
.reviews-cut-image-3{
  display: none;
}
@media only screen and (max-width: 1100px) {
  .reviews .swiper-slide-next,
  .reviews .swiper-slide-prev{
    margin: 0;
    margin-top: 0 !important;
  }
  .reviews .swiper-button-prev,
  .reviews .swiper-button-next{
    top: 94% !important;
  }
  .reviews-swiper{
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 860px) {
  .reviews-cut-image-1{
    display: none;
  }
  .reviews-cut-image-2{
    display: none;
  }
  .reviews .swiper-slide-next,
  .reviews .swiper-slide-prev{
    margin: 0;
    margin-top: 0 !important;
  }
  .reviews .swiper-button-prev,
  .reviews .swiper-button-next{
    top: 94% !important;
  }
  .reviews-swiper{
    padding-bottom: 60px !important;
  }
  .reviews-cut-image-3{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .reviews_image{
    display: none;
  }
}
.reviews_slider_image img{
  border-radius: 12px;
}
@media only screen and (max-width: 640px) {
  .reviews-cut-image-3{
    display: block;
  }
  .reviews-cut-image-3 img{
    width: 80px;
  }
  .slider-reviews{
    margin-top: 0px;
  }
}






/* Get The App */
.app-store{
  margin-top: 280px;
  margin-bottom: 80px;
}
.app_repeater{
  margin: 30px 0;
}
.app_repeaters{
  margin: 20px 0;
  gap: 10px;
}
.app-link{
  margin-top: 30px;
}
.app-link img{
  width: 180px;
}
@media only screen and (max-width: 860px) {
  .app-store{
    display: none;
  }
  .app-link{
    justify-content: center;
  }
  .app_repeaters{
    justify-content: center;
    margin: 12px 0;
  }
}
@media only screen and (max-width: 640px) {
  .app_repeater p{
    font-size: 13px;
  }
  .app-link img{
    width: 140px;
  }
}


/* Contact Us */
.contact-us{
  margin: 80px 0;
  position: relative;
}
.contact_title{
  font-size: 48px;
  font-weight: 700;
}
.contact-wrapper{
  margin: 0 auto;
  width: 620px;
  margin-top: 40px;
}
.wrapper-content{
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.wrapper-content input{
  width: 200px;
  padding: 20px 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  border: 1px solid #acacac;
  font-weight: 600;
  font-style: italic;
}
.wpcf7-textarea{
  width: 100%;
  padding: 20px 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  border: 1px solid #acacac;
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  height: 160px;
}
.wpcf7-submit{
  width: 200px;
  background-color: #b25fb9;
  border: 1px solid #b25fb9;
  padding: 13px 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  margin-top: 20px;
  transition: .3s ease-in-out;
}
.wpcf7-submit:hover{
  background-color: #000;
  transition: .3s ease-in-out;
}
.contact-cut-1{
  position: absolute;
  top: -60px;
  left: 0;
}
.contact-cut-2{
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 640px) {
  .wrapper-content input{
    width: 115px;
    max-width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 12px;
    font-weight: 400;
  }
  .contact-wrapper{
    width: 100%;
  }
  .contact-us{
    margin: 60px 0;
  }
  .contact-cut-1 img,
  .contact-cut-2 img{
    width: 60px;
  }
  .contact-cut-1{
    top: -80px;
  }
  .contact-cut-2{
    bottom: 40%;
  }
  .contact_title{
    font-size: 40px;
  }
}













/* Post */
.post-cut-image{
  position: absolute;
  top: 0;
  right: 0;
}
.post-hero{
  margin: 80px 0;
}
.post_hero_title{
  font-size: 50px;
  margin-bottom: 24px;
  font-weight: 700;
}
.post_hero_title span{
  color: #b25fb9;
}
.post_hero_text{
  font-size: 18px;
}
.post-hero-search{
  display: flex;
  justify-content: center;
}

.post-content{
  margin-top: 60px;
}
.post-content__content{
  width: 33.33%;
  float: left;
  padding: 0 10px;
}
.post__content-texts{
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 10%);
  border-radius: 8px;
  padding-bottom: 15px;
  text-align: center;
  transition: .3s ease-in-out;
}
.post__content-texts:hover{
 transform: translateY(-10px);
}
.post-image{
  height: 270px;
}
.post-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}
.post_images {
  position: relative;
}
.post-images{
  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: center;
}
.post-images img{
  width: 220px;
}
.post-texts{
  padding: 20px 10px;
  padding-top: 30px;
}
.post-price{
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}
.post_title{
  color: #000;
  margin-bottom: 14px;
}
.post_text p{
  color: #949393;
}
.post_link{
  margin-top: 15px;
}
@media only screen and (max-width: 860px) {
  .post-content__content{
    width: 50%;
  }
  .post-image{
    height: 250px;
  }
}
@media only screen and (max-width: 640px) {

  .post-content__content{
    width: 100%;
  }
  .post_hero_title{
    font-size: 44px;
  }
}
.map iframe{
  margin: 80px 0;
}











/* single */
.single{
  margin: 120px 0;
}
.main_title{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.main_text{
  font-size: 18px;
  color: #b25fb9;
  font-weight: 500;
}


.all-post{
  margin: 50px 0;
}
.all-post-links{
  background-color: #b25fb9;
  padding: 15px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: .4s ease-in-out;
}
.all-post-links:hover{
  background-color: #949393;
}
.single_link{
  color: #fff;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
}
.save{
  gap: 10px;
}
.save img{
  width: 20px;
}
.save p{
  color: #fff;
}


.all-post-image{
  gap: 10px;
}
.single-image-2{
  gap: 10px;
}


.single-content{
  gap: 20px;
}
.single-left{
  flex: 1.5;
}
.single-right{
  flex: 1;
}
.single_title{
  font-size: 32px;
  line-height: 46px;
  color: #000;
  font-weight: 700;
}

.verify{
  gap: 10px;
  margin-top: 20px;
}
.verify img{
  width: 25px;
}
.single_verify{
  font-weight: 600;
  color: #949393;
}


.room-etc{
  gap: 30px;
  margin-top: 40px;
}
.room-etc-content{
  gap: 5px;
}
.room-etc-content img{
  width: 25px;
}



.popular-amenities{
  margin: 50px 0;
  width: 350px;
}
.amenities-image img{
  width: 25px;
}
.amenities-image{
  gap: 10px;
  margin-bottom: 25px;
}
.popular-gap{
  margin-top: 40px;
}


.single-details{
  margin: 60px 0;
}
.single-details h1{
  margin-bottom: 40px;
  color: #000;
  font-weight: 700;
}
.single-details h2{
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
  font-size: 21px;
}
.single-details p{
  margin-bottom: 30px;
}


@media only screen and (max-width: 860px) {
  .main_title{
    font-size: 38px;
    margin-bottom: 20px;
  }
  .all-post{
    margin: 40px 0;
  }
  .single-content{
    flex-direction: column;
  }
}
@media only screen and (max-width: 640px) {
  .single{
    margin: 30px 0;
  }
  .main_title{
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 10px;
    position: relative;
  }
  .single_link{
    font-size: 18px;
    gap: 6px;
  }
  .all-post-image{
    flex-direction: column;
    gap: 0;
  }
  .single_title{
    font-size: 22px;
    line-height: 34px;
  }
  .room-etc{
    overflow-x: scroll;
    gap: 20px;
    padding-bottom: 20px;
  }
  .room-etc-content p{
    width: 130px;
    max-width: 100%;
  }
  .popular-amenities{
    margin: 30px 0;
  }
  .single-details{
    margin-bottom: 10px;
  }
}




/* Single Right */
.single-bg{
  background-color: #fff;
  box-shadow: 0 15px 15px 15px rgba(0, 0, 0, 10%);
  width: 350px;
  padding: 20px 14px;
}

.single_price{
  font-weight: 700;
}
.single_price span{
  font-size: 18px;
  font-weight: 500;
}

.date-location{
  gap: 20px;
  margin-top: 30px;
}
.dates{
  background-color: #fff;
  box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 10%);
  padding: 14px 14px;
  margin-bottom: 30px;
  gap: 10px;
  width: 100%;
}
.dates img{
  width: 24px;
}

.check_availability_link{
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .single-bg{
    width: 100%;
  }
}




/* Footer */
.partner{
  margin-top: 120px;
}

.subscribe{
  margin: 60px 0;
}
.subcribe-content{
  padding: 40px 40px;
}
.subscribe-title{
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}
.subscribe-contact .wpcf7-email{
  padding: 17px 10px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  transition: .3s ease-in-out;
  border: none;
  outline: none;
  font-style: italic;
  width: 100%;
}
.subcribe-content .wpcf7-submit{
  margin-top: 0;
}
.subcribe-content .wpcf7-not-valid-tip{
  position: absolute;
}
.wpcf7-spinner{
  display: none;
}
@media only screen and (max-width: 860px) {
  .subcribe-content,
  .subscribe-contact {
    flex-direction: column;
  }
  .subscribe-title{
    font-size: 26px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .subcribe-content{
    padding: 0px;
  }
  .subscribe-bg{
    padding: 40px;
  }
  .subscribe-contact .wpcf7-email{
    margin-bottom: 10px;
  }
  .partner{
    margin: 40px 0;
  }
  .subscribe{
    margin: 40px 0;
  }
}
@media only screen and (max-width: 640px) {
  .subscribe-bg{
    padding: 20px;
  }
  .subscribe-title{
    font-size: 22px;
    line-height: 20px;
  }
}

.footer{
  margin-top: 80px;
  margin-bottom: 30px;
}
.footer-content{
  gap: 80px;
}
.footer-logo{
  margin-right: 100px;
}
.contact-us-footer,
.footer-link,
.footer-logo{
  flex: 1;
}
.find{
  margin-top: 30px;
}
.find-title{
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}
.find-us{
  gap: 10px;
}
.find-is-link{
  background-color: #949393;
  padding: 10px;
  padding-bottom: 5px;
  border-radius: 10px;
  transition: .3s ease-in;
}
.find-is-link:hover{
  background-color: #b25fb9;
}
.find-is-link img{
  width: 25px;
  height: 25px;
}

.footer-link h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-link li{
  margin-bottom: 14px;
}
.footer-link li a{
  color: #555555;
}
.footer-link li a:hover{
  color: #000;
  text-decoration: underline;
}

.contact-us-footer h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-us{
  gap: 10px;
  margin-bottom: 20px;
}
.footer-us img{
  width: 24px;
}
.footer-mobile{
  display: none;
}
@media only screen and (max-width: 1080px) {
  .footer-content{
    gap: 40px;
  }
  .footer-logo{
    margin: 0;
  }
}
@media only screen and (max-width: 860px) {
  .footer-content{
    flex-direction: column;
  }
  .footer_logo{
    width: 250px;
    margin: 0 auto;
  }
  .find{
    text-align: center;
  }
  .find-title{
    margin-bottom: 20px;
  }
  .find-us{
    justify-content: center;
  }
  .footer-mobile{
    display: block;
  }
  .footer{
    display: none;
  }
  .contact-us-footer{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .footer-us{
    justify-content: center;
  }
}
@media only screen and (max-width: 640px) {
  .contact-us-footer, .footer-link, .footer-logo{
    flex: none;
  }
}














/* Extra */
.single_image_1,
.single-image-4{
  flex: 1;
}
.single_image_1 img{
  height: 100%;
}
.single_image_2 img,
.single_image_3 img,
.single_image_4 img,
.single_image_5 img{
  height: 200px;
  width: 320px;
}
@media only screen and (max-width: 860px) {
  .single_image_2 img,
  .single_image_3 img,
  .single_image_4 img,
  .single_image_5 img{
    height: 150px;
    width: 320px;
  }
}