@font-face {
    font-family: Quicksand;
    src: url(../fonts/Quicksand/Quicksand.ttf);
}
@font-face {
    font-family: Arial-caps;
    src: url(../fonts/Arial/bpg-arial-caps-webfont.ttf);
}
@font-face {
    font-family: nino-elite;
    src: url(../fonts/Nino-bpg/bpg-nino-elite-exp-caps-webfont.ttf);
}
* , *::after , *::before{
	margin:0;
	padding:0;
	outline:none;
	box-sizing: border-box;
}
body{
    --prim:#170F49;
    --sec:#d6d4db;
    --cta:#ffc107;
    --ctah:#e5ac03;
    --secondary:#06ACF3;
    --secwhite:rgba(23, 15, 73, 0.6);
    --hover:#0794d1;
    /* --border:#717171; */
    --border:#D9DBE9;
    --white:#ffff;
    --pad:134px;
    --link:#06ACF3;
    --swiper-pagination-color:#ffc107;
}
body{
    padding:0;
	font-size:16px;
	/* background-image:var(--back); */
    color:var(--prim);
    line-height: 1.5;
}

html[lang="en"] body{
    font-family: Quicksand;
}

html[lang="ka"] body{
    /* font-family: Arial-caps; */
    font-family: nino-elite;
}
.daterangepicker{
    z-index: 99999!important;
}
a *{
    transition: all 200ms linear;
}
a:hover ,a {
    text-decoration: none;
}
a{
    color: var(--link);
}
ul,
li {
    list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
dl,
ol,
ul {
    margin: 0;
}
svg{
    overflow: visible;
}

.d-flex{
    flex-wrap: wrap;
}
.daterangepicker td.active, .daterangepicker td.active:hover,.applyBtn,.applyBtn:hover {
    background-color: var(--cta) !important;
}
.applyBtn:hover,.applyBtn  {
    border-color: transparent;
}
.applyBtn:hover{
    background-color: var(--ctah) !important;
}
.daterangepicker td.in-range {
    background-color: #fff7de !important;
}
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 9999999999; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
.lb-outerContainer {
    background-color: transparent !important;
}
.lightbox .lb-image {
    border: 4px solid #4c4c4c!important;
}
.lightbox{
    position: fixed !important;
    width: auto ;
    top: 15px !important;
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
    height: 92%;
    background-color: transparent;
}
.lb-image{
    margin: auto;
}
.lb-outerContainer,.lb-container {
    width: 100% !important;
}
.lb-container{
    margin: auto;
    width: fit-content !important;
    position: relative;
}
.sticky-top{
    top: 100px;
}
.text-justify{
    text-align: justify;
}
.CP{
    cursor: pointer;
}
input{
    padding: 16px 22px;
    border-radius: 13px;
    box-shadow: 0px 2px 6px rgba(19, 18, 66, 0.07);
}
.disabled{
    pointer-events: none;
    filter: grayscale(0.7);
}
/* css starts here */
.logo img{
    width: 80px !important;
}
.hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.hero::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(15, 10, 10, 0.05) 84%, rgba(22, 14, 12, 0.63) 102.06%, #160E0D 100%);
    z-index: 1;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.hero img , .gal-img img, .blog-img img,.swiper-slide img,.room-img>img ,.c-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header{
    position: relative;
}
.header-booking{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 50px 0;
    z-index: 99;
}
.header-booking .d-flex{
    flex-wrap: nowrap;
}
.dropdown-toggle::after{
    content: none;
}
.dropdown-menu{
    width: 100%;
    top: 100% !important; 
    min-height: fit-content;
}
.daterangepicker ,.dropdown-menu{
    background-color: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(7px);
}
.dropdown-item.active,
.dropdown-item:active{
    background-color: var(--link);
}
.menu {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    right: 0;
    padding: 0 var(--pad);
    /* left: 115px;
    right: 115px; */
    z-index: 99998;
    /* border-radius: 15px; */
    background-color: transparent;
    transition: top 250ms linear ,padding 250ms ease-in  , background-color 150ms ease;
    
}
.lightbox{
    z-index: 999999 !important;
}
.lb-outerContainer , .lb-container ,.lb-image{
    height:100% !important;
}
.lb-image {
    object-fit: cover;
}

.sticky,.stick{
    position: fixed;
    top: 0;
    padding: 12.5px var(--pad);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    transition: top 250ms linear ,padding 250ms ease-in  , background-color 150ms ease;
    transition-delay: 0s, 0s, 250ms;
}
.menu ul li a{
    font-size: 18px;
    color: white;
    margin-left: 34px;
    font-weight: bold;
}
.menu ul li:hover a,
.menu ul li a:focus,
.menu ul li a:hover,
body>footer>section ul li a:hover,a:hover{
    color: var(--sec);
}
.menu ul li a svg{
    height: 20px;
    width: auto;
}
.book-b{
    background-color: var(--cta);
    border-radius: 30px;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
    color: var(--white);
    white-space: nowrap;
}
.book-b:hover{
    background-color: var(--ctah);
}
section{
    padding: 75px var(--pad);
}.s-title a{
    color: var(--prim);
}
main{
    padding: 75px 0;
}
tr{
    vertical-align: middle;
}
.batn {
    width: fit-content;
}
.payb ,.batn {
    background-color:var(--cta);
    color: var(--white);
    border-radius: 10px;
    padding: 15px 25px;
    cursor: pointer;
    text-align: center;
    transition: background-color 250ms linear;
}
.batn:hover,.payb:hover{
    background-color: var(--ctah);
    color: var(--white);
}
.s-title{
    padding-bottom: 100px;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}
.article .s-title{
    font-size: 28px;
    padding-bottom: 50px;
}
.article-text img{
    margin-bottom: 3vh;
}
.s-title span{
    font-size: 16px;
    font-weight: normal;
}
.booking-cont{
    background-color: var(--white);
    border-radius: 80px;
   
}
.booking-cont .book-b{
    padding: 10px 25px;
    border-top-left-radius: 1px;
}
.bo-cont{
    width: calc(100% - 135px);
    font-size: 14px;
}
.bo-cont img{
    margin-right: 3px;
}
.bo-search{
    width: 135px;
    display: flex;
    align-items: center;
}
.bo-search a{
    display: block;
    padding: 12.5px;
}
.booking-cont .col-4,.booking-cont .col-lg-4{
    position: relative;
    height: 100%;
    padding: 25px 15px;
    display: flex;
    align-items: center;
}
.booking-cont .col-4::after,.booking-cont .col-lg-4::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    display: block;
    background-color: var(--border);
}
.in .booking-cont .col-4::after, .in .booking-cont .col-lg-4::after{
    content: none;
}
/* rooms */
.room-img{
    height: 580px;
    width: 100%;
    border-radius: 13px;
    filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.1));
    overflow: hidden;
    max-width: 880px;
    position: relative;
}
.room-img > img{
    border-radius: 13px;
}
.room-text{
    text-align: right;
}
.room-text h3{
    font-weight: bold;
    margin-bottom: 30px;
}
.room-text .batn{
    margin-top: 50px;
    margin-left: auto;
}
.room-text .batn{
    margin-top: 30px;
    display: block;
}
.room-desc{
    margin-bottom: 50px;
}

.room-spec img{
    height: 16px;
    width: auto;
}
.room-spec{
    position: absolute;
    top: 25px;
    right: 25px;
}


.spec{
    width: 30px;
    height: 30px;
    padding: 0px;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    margin-bottom: 25px;
    transition: all 250ms linear;
    margin-left: auto;
}
.spec span{
    font-weight: bold;
    margin-right: 10px;
    visibility: hidden;
    opacity: 0;
    display: none;
    transition: all 250ms linear;
}

.spec:hover {
    width: fit-content;
    justify-content: end;
    padding: 10px;

}
.spec:hover span{
    opacity: 1;
    visibility: visible;
    display: inline-block;
}

/* gallery */
.gal-img{
    max-height: 520px;
    height: auto;
    width: auto;
    border-radius: 9px;
    overflow:hidden;
    margin-bottom: 25px;
}
.gal span{
    font-size: 22px;  
    color:#9c9c9c;
}
.gal{
    padding-bottom: 100px;
}
/* parners */
.divider{
    background-color: 585758;
}
.divider section{
    padding: 50px 0;
}
.infoc img{
    filter: brightness(4.5);
}
.infoc span{
    color: var(--white);
}
.partn img{
    height: 80px;
    width: auto;
    margin: 5px;
    filter:drop-shadow(0px 0px 1px transparent);
    transition: filter 250ms linear;
}
.partn img:hover{
    filter:drop-shadow(0px 9px 2px rgb(50, 50, 50));
}
/* blog */
.blog{
    margin-left: -25px;
    margin-right: -25px;
}
.blog .col-md-4{
    padding: 0 25px;
}
.blog-img {
    height: 360px;
    width: auto;
    overflow: hidden;
    border-radius: 10px;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.08));
}
.blog-title{
    margin-top: 25px;
    margin-bottom: 10px;
    transition: color 200ms ease;
    color: var(--prim);
}
.blog-title h5{
    font-weight: bold;
}
.blog-desc{
    line-height: 24px;
    color: var(--secwhite);
}
.blog.in .col-lg-4{
    padding-bottom:60px;
    
}
.blog .col-lg-4 img{
    transition: transform 250ms linear;
}
.blog a{
    cursor: pointer;
}
.blog a:hover img{
    transform: scale(1.02);
}
.blog a:hover .blog-title{
    color: var(--hover);
}
/* faq */
.faq-item{
    margin-bottom: 100px;
}
.faq-title h5{
    font-weight: bold;
    margin-bottom: 22px;
    font-size: 18px;
}
.faq-title{
    padding-left:20px;
    position: relative;
}
.faq-title::before{
    content: "-";
    font-size: 28px;
    color: orange;
    font-weight: bold;
    position: absolute;
    top: -3px;
    left: 0;

}
.faq-answer{
    padding-right: 25px;
    line-height: 26px;
}

/* subsc */
.subsc{
color: var(--white);
}
.subsc input{
    padding-top: 10px;
    padding-bottom: 10px;
}
/* burger */
.burger{

}
.bar1,
.bar2,
.bar3 {
    width: 50px;
    height: 5px;
    background-color: rgb(255, 255, 255);
    margin: 8px 0;
    transition: 0.4s;
    border-radius: 15px;
    transform: translatey(0);
}
.bar3{
    width: 28px;
    margin-right: auto;
}
.bar1{
    margin-top:0;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }
  
.change .bar2 {opacity: 0;}

.change .bar3 {
    transform: translate(0, -12px) rotate(45deg);
    width: 50px;
}
/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
}
/* map */
.map{
    height:70vh;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.1));
    position: relative;
}
.map-ovr{
    position: absolute;
    top:0;
    bottom: 0;
    right: 0;
    width: 140px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border-radius: 0px 10px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map iframe{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.m-item{
    color:#93FFD8;
    font-size: 14px;
}
footer{
    background-color: #333333;
}
footer ul li {
    padding: 15px 0;
}
footer ul li a{
    color: var(--white);
}
footer .col-4{
    line-height: 20px;
}
.soc-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 250ms linear;
    cursor: pointer;
}

.soc-item:hover{
    background-color: rgba(255, 255, 255, 1);
}
.text-cont{
    width: 970px;
    margin: auto;
}
/* pagination */
    .pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
    }

    .pagination a {
        color: var(--prim);
        /* float: left; */
        display: flex;
        align-items: center;
        padding: 8px 16px;
        margin:0 2px;
        text-decoration: none;
        box-shadow: 0 0 0 0 var(--prim);
        border-radius: 3px;
        transition: box-shadow 200ms linear;
    }

    .pagination i{
        color: var(--prim);
    }

    .pagination a:hover{
        box-shadow: 0 0 3px var(--hover);

    }
    .pagination a.active {
        color: #fff !important;
        background: var(--hover);
        border-radius: 3px;
    }
/* about */
.about-text{
    line-height: 32px;
    font-size: 20px;
    text-align: justify;
    text-transform: capitalize;
}
/* wizard */
.w-steps{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.w-steps .w-circle{
    width: 54px;
    height: 54px;
    background-color: #E8F4FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-weight: bold;
}
.w-steps .w-circle.active{
    background-color: var(--cta);
    color: white;
}
.w-progress{
    width: 20%;
}
.w-progress .progress-bar{
    background-color: var(--cta);
}
.w-progress .progress , .w-progress .progress-bar{
    height: 10px;
    border-radius: 15px;
}
.w-progress .progress {
    background-color: #EFF0F7;
}
.wizard hr{
    border-color: #D9DBE9;
    margin-top: 38px;
}
.w-body .batn {
    background-color: var(--secondary);
}
.w-body .batn:hover {
    background-color: var(--hover);
}
#term-check , .form-check-input{
    padding: 12px;
}
.form-check .form-check-input{
    float: none;
}
.form-check-input:checked{
    background-color: var(--hover);
    border-color: var(--hover);
}
.terms .form-control{
    max-height: 240px;
    padding: 22px;
    overflow-y: auto;
    overflow-x: hidden;
}
.choose-room span{
    line-height: 28px;
    font-size: 14px;
}
.c-room{
    height: auto;
    width: 100%;
    border-radius: 13px;
    overflow: hidden;
}
.chosen{
    color: #2ACB57;
}
.chosen-details span{
    color: #000;
    font-weight: 500;
}
.chosen-details b{
    color:#746F92;
}
.summary{
    /* height: 300px; */
    width: 100%;
    height: auto;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 12px;
    filter: drop-shadow(0px 10px 40px rgba(76, 72, 98, 0.1));
    background-color: #fff;
}
.summary hr{
    background-color:var(--border);
}
.c-info a{
    transition: filter 200ms linear;
}
.c-info a:hover{
    filter: drop-shadow(0px 8px 14px rgb(42, 42, 42));
}
.c-info{
        align-items: center;
}
/* gallery */
.gallery .col-md-4 .gal-img{
    aspect-ratio: 16/9;
    height: auto;
    max-height: auto;
}
/* article */
.article-cont{
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 15px;
    padding: 50px;
    transform: translateY(-36vh);
}
.article-t img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.article-t .example-image-link img{
    border-radius: 7px;
}
.article-foot .col-1 img{
    width: 100% !important;
}
.article-foot .col-1{
    padding: 0;
}
.article-t p{
    margin: 50px 0;
    line-height:32px;
    font-size: 20px;
    text-align: justify;
    text-transform: capitalize;
}
.article-t p:first-child{
    margin-top: 0;
}
.article-t p:last-child{
    margin-bottom: 0;
}
.share-item img{
    height: 20px;
    width: auto;
}
.share-item{
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 50px;
    box-shadow: 0px 0px 30px rgb(36 36 36 / 0%);
    transition: all 200ms linear;
    cursor: pointer;
}
.share-item:hover{
    box-shadow: 0px 0px 30px rgb(36 36 36 / 10%);
}
.share-item:not(:first-child){
    margin-left: 25px;
}
.article-spec{
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 5px 15px;
    margin-right: 22px;
}
.article-spec img{
    height: 15px;
    width: auto;
    border-radius: 0;
    filter: contrast(0.5);
}

.onhold{
    color:#32DB61;
}
.payed{
    color:#DB323C;
}
.declined{
    color:#F4DC06;
}
.table>:not(:last-child)>:last-child>*{
    border-color: var(--border);
}
.table-cont{
    padding: 10px 0;
    border: 1px solid var(--border);
    border-radius: 15px;
}
.table-cont tr:last-child{
        border-bottom: 0px transparent;
}
@media only screen and (min-width:991px){
    
    .room-desc .col-lg-7 {
        padding-left: 0;
    }
    
    .room-desc:nth-child(odd) .col-lg-7 {
        order: 2;
        padding-right: 0;
    }
    
    .room-desc:nth-child(odd) .col-lg-7 {
        order: 1;
    }
    
    .room-desc:nth-child(odd) .room-text {
        text-align: left;
    }
    
    .room-desc:nth-child(odd) .room-img {
        margin-left: auto;
    }
    
    .room-desc:nth-child(odd) .room-text .batn {
        margin-left: 0;
    }
    .room-desc:nth-child(odd) .room-spec .spec{
        margin-left: 0;
        margin-right: auto;
}
    .room-desc:nth-child(odd) .room-spec .spec span {
        order: 2;
        margin-right: 0px;
        margin-left: 10px;
}   
    .room-desc:nth-child(odd) .room-spec {
        right: auto;
        left: 25px;
}
}
@media screen and (min-width:768px){

    .reg-form .col-md-6:nth-child(odd){
    padding-left:0;
}
    .reg-form .col-md-6:nth-child(even){
    padding-right:0;
}
}
@media screen and (max-width:1440px){
    body{
        --pad:120px;
    }
    .header-booking .col-xl-8{
        width: 100% !important;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }

}
@media screen and (max-width:1200px){
    body{
        --pad:100px;
    }
}
@media screen and (max-width:1100px){
    .text-cont{
        width: 100%;
    }
}
@media screen and (max-width:992px){
    .blog-img {
        height: 280px;
    }
    .blog-title h5 {
         font-size: 18px;
    }
    .s-title {
        font-size: 32px;
    }
    .change .bar3 {
        transform: translate(0, -12px) rotate(45deg);
        width: 48px;
    }
    .change .bar1 {
        transform: translate(0, 12px) rotate(-45deg);
    }
    .bar1, .bar2, .bar3 {
        width: 48px;
        height: 4px;
    }
    .bo-search .book-b, .bo-search a{
        width: 100%;
    }
    .logo img {
        width: 52px !important;
    }
    .partn section{
        padding-left: 0;
        padding-right: 0;
    }
    .partn a{
        margin:10px 20px;
    }
    .room-img {
        height: auto;
    }
    .blog .col-lg-4:not(:last-child) {
        padding-bottom: 35px !important;
    }
    .row{
        margin-left: 0;
        margin-right: 0;
    }
    body{
        --pad: 50px;
    }
    .booking-cont{
        background-color: transparent;
    }
    .booking-cont .col-lg-4{
        background-color: var(--white);
        border-radius: 30px;
        margin: 5px auto;
        padding: 10px 15px;
        height: auto;
    }
    .bo-search a{
        padding: 0;
    }
    .booking-cont .col-lg-4::after{
        content: none;
    }
      .bo-cont{
        width: 100%;
        font-size: 15px;
    }
    .bo-search{
        width: 100%;
        margin: 5px auto;
    }
    .header-booking{
        padding: 25px 0;
    }
    .room-text{
        text-align: left !important;
        margin-top: 25px;
    }
     .room-text .batn{
        width: 100%;
        margin-top: 30px;
    }
    .room-text span{
        display: block;
        text-align: justify;
    }
    .room-text h3{
        margin-bottom: 25px;
    }
    .w-50{
        width: 100% !important;
    }
}
@media screen and (max-width:769px){
    .blog-img {
        height: 400px;
    }
    .bar1, .bar2, .bar3 {
        height: 4px;
    }
    .blog-title h5{
        text-align: center;
    }
    .article-foot .batn{
        width: 100%;
        margin-bottom: 25px;
    }
    .article-t p {
        margin: 25px 0;
        line-height: 24px;
        font-size: 16px;
    }
    .article .s-title{
    font-size: 22px;
    padding-bottom: 25px;
    }
    .article-cont{
        padding: 30px;
    }
    .wizard [class^="col-"]{
        padding-left: 0;
        padding-right: 0;
    }
    .choose-room a{
        text-align: right;
        display: inherit;
    }
    .wizard .batn{
        width: 100%;
    }
    .choose-room span ,.blog-desc {
        text-align: justify;
        display: block;
    }
    .choose-room h5{
        margin-top: 25px;
    }
    .reg-form .col-md-6,.reg-form{
        padding: 0;
    }
    .contact .batn{
        width: 100%;
    }
    .map {
        height: 420px;
    }
    .subsc .text-center{
        width: 100%;
        margin-bottom: 25px;
    }
    .faq-answer{
        text-align: justify;
    }
    .partn img{
        height: auto;
        width: 100%;
    }
    .partn a{
        margin: 0;
        padding:25px;
        width: 33%;
    }
   .socials .w-100{
       width: auto !important;
       margin-right: 25px;
       margin-top: 50px;
   }
    footer ul{
        padding: 0;
    }
    .booking-cont .book-b {
        padding: 10px 25px;
    }
    section{
        padding: 45px var(--pad);
    }
    .s-title{
        padding-bottom: 50px;
        font-size: 32px;
    }
    .text-cont{
        width: 100%;
    }
    .blog{
        margin: 0;
    }
    .blog .col-lg-4{
        padding:initial;
    }
    section .w-50{
        width: 100% !important;
    }
    body{
        --pad:25px;
    }
   
    .mobm{
        display: block;
    }
}
@media screen and (max-width: 460px){
    .map-ovr {
        width: 115px;
    }
    .c-info a{
        word-break: break-all;
    }
    .article-cont {
        padding: 20px;
    }
    .article-spec span{
        font-size: 12px;
    }
    .article-spec {
        padding: 3px 10px;
    }
    .w-progress .progress, .w-progress .progress-bar {
      height: 7px;
    }
    .w-steps .w-circle {
        width: 34px;
        height: 34px;
    }
    .w-progress{
        padding: 0 5px;
    }
    .partn a {
        width: 50%;
    }
    .subsc .batn{
        width: 100%;
    }
    section {
        padding: 30px var(--pad);
    }
    body {
        --pad: 15px;
    }
}