@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root {
    --mainColor: #eda73a;
    --gradientBg: #dea10b;
}

body {
  outline: none;
  word-spacing: 1px;
  text-decoration: none !important;
  font-family: 'Noto Sans Georgian', sans-serif;
}

a:hover {
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

.btn {
  /* border-radius: 0; */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
a{
  text-decoration: none;
  color: var(--mainColor);
}

img {
  max-width: 100%;
}
.btn {
    background: var(--gradientBg);
    color: #fff !important;
    /* border-radius: 50px; */
    font-size: 16px;
    padding: 6px 22px;
    border: 0;
    /* border: 2px solid #fff; */
    box-shadow: 0 10px 15px 0 rgba(0,0,0,.48);
}

.btn:hover, .btn:focus {
  background: var(--mainColor) !important;
}


.site-wrapper {
    margin-top: 71px;
}

.sec-padding{
  padding: 60px 0;
}

.btn-lg {
    padding: 10px 35px;
    font-size: 18px;
}

.with-icon {
    position: relative;
    display: flex;
}

.with-icon:before {
    content: "\f2c8";
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
    font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
    border: var(--bs-border-width) solid var(--mainColor);
    border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
}

.with-icon .form-select {
    border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
    border-left: 0;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1,1)
    }

    50% {
        transform: scale(1.2,1.2)
    }

    100% {
        transform: scale(1,1)
    }
}

.zoomdiv {
    animation: zoom-in-zoom-out 1s ease infinite;
}

.call-btn {
    display: inline-block;
    background-color: #3fae26;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
    transition: background-color .3s,opacity .5s,visibility .5s;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff!important;
    font-size: 30px;
    border-radius: 100%;
    z-index: 9999;
}
.fixed-call-btn {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
    border-radius: 0;
}
.input-group-text {
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
}

/*=== Home Banner ===*/
.home-banner {
    height: calc(100vh - 71px);
    position: relative;
}

.home-banner .carousel {
    height: 100%;
}

.home-banner .carousel-inner {
    height: 100%;
}

.home-banner .carousel-item {
    height: 100%;
}

.home-banner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content {
    position: absolute;
    bottom: auto;
    top: 0;
    background: rgba(38, 40, 43, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.banner-box {
    /* background: rgba(00,00,00,0.5); */
    max-width: 650px;
    /* padding: 40px; */
    /* border-radius: 15px; */
}

.banner-box h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 3px #4f4f4f;
    margin-bottom: 10px;
    margin-top: 10px;
}

.banner-box h2 {
    color: #fff;
    font-size: 22px;
    text-shadow: 1px 1px 3px #4f4f4f;
    margin-bottom: 25px;
}

.banner-box p {
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 3px #4f4f4f;
    font-size: 18px;
    font-weight: 400;
    text-shadow: none;
}

.banner-box p.price {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    /* background: #fff; */
    display: inline-block;
    padding: 10px 30px;
    margin: 10px 0 25px;
    border-radius: 5px;
    /* border: 1px dashed var(--mainColor); */
    background-image: linear-gradient(to right,#000, rgb(0 0 0 / 100%), rgb(0 0 0 / 0%));
    border: 2px solid #fff;
}
.banner-box .act-btn {
    padding-top: 20px;
}

/*=== End Home Banner ===*/

.fixed-right-form {
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .3);
}

.fixed-right-form h2 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 20px;
}

.fixed-right-form .btn{
  width: 100%;
}

.sec-heading {
    font-size: 43px;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.sec-heading:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--gradientBg);
    bottom: -10px;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
}
.sec-heading:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    bottom: -19px;
    border-color: var(--mainColor);
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    background: #fff;
    right: 0;
    margin: 0 auto;
}

.garyBG {
    background: #f9f9f9;
}

.highlights-div {
    padding: 50px;
    border-radius: 10px;
    background-image: url(../images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--gradientBg);
    position:relative;
    height: 422px;
    overflow-y: auto;
}



.highlights-div ul {
    padding: 0;
    margin: 0;
}

.highlights-div ul li {
    color: #fff;
    padding: 10px 0;
}

.highlights-div ul li:first-child {
    padding-top: 0;
}

.highlights-div ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.black-bg{
  background: #000;
}

.black-bg .sec-heading{
  color: #fff;
}


.amenities-box {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.amenities-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-box .icon {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 100%;
    overflow: hidden;
}

ul.amenities-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
}

ul.amenities-list li {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0;
    padding: 0 10px
}

.amenities-box .txt {
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    padding: 10px 0;
    font-weight: 600;
}

.floor-box {
    background: #fff;
    width: 100%;
    margin: 15px 0;
    height: 230px;
    position: relative;
    border: 1px solid var(--mainColor);
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

.floor-box h4 {
    background: var(--gradientBg);
    padding: 7px 20px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: max-content;
    border-radius: 5px 5px 0 0;
    margin: 0 auto;
}

.floor-box h4 span {
    display: block;
    font-size: 16px;
    margin-bottom: 0;
}
.floor-box .image{
    height: 100%;
    display: block;
}

.floor-box .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(4px);
    -webkit-filter: blur(4px);
}
.common-img-box{
    position: relative;
    height: 422px;
}
.common-img-box img {
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-img-box:before{
        content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px dashed #fff;
    transform: scale(0.99);
    z-index: 99;
    border-radius: 10px;

}

footer {
  background: #111111;
  color: #f3f3f3;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

footer p a {
  font-weight: 400;
  color: #fff !important;
}
.closeRightForm {
    color: #fff;
    position: absolute;
    right: 25px;
    top: 25px;
}

.price-table .table>thead th {
    background: #000;
    color: #fff;
    white-space: nowrap;
}

.price-table .table td, .table th {
    white-space: nowrap;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 0;
    display: block!important;
    border: 0 solid #000;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 10px #d6d4d4;
    margin-top: -22px
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 0;
    display: block!important;
    border: 0 solid #000;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 10px #d6d4d4;
    margin-top: -22px
}

.round-arrow.owl-carousel .owl-nav button.owl-prev i,.round-arrow.owl-carousel .owl-nav button.owl-next i {
    font-size: 21px;
    padding: 0!important;
    color: #979797;
    position: relative;
    top: 1px;
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none !important;
}

.gallery-img {
    height: 250px;
  position:relative;
}

.gallery-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px dashed #fff;
    transform: scale(0.975);
    z-index: 99;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enqModal .modal-content {
    max-width: 420px;
    margin: 0 auto;
}

.owl-carousel .owl-stage {
    padding: 0 !important;
}
.mobile-inqury {
    display: none;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background: var(--mainColor);
    z-index: 99;
    padding: 0 10px;
}
.mobile-inqury a {
    margin: 0;
    border: 0;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    flex: 0 0 35%;
    text-align: center;
    border-right: 1px solid #fff;
}
.mobile-inqury a:last-child {border-right: 0;}
.enqModal .modal-content {
    /* background: #000; */
}

.enqModal h3 {
    color: #333;
    text-align: center;
    font-size: 20px;
}

.enqModal .logo {
    max-width: 150px;
    margin: 0 auto 25px;
}

.enqModal .modal-body {
    padding: 50px;
}

.enqModal .btn {
    width: 100%;
}
.btnClose {
    position: absolute;
    right: 15px;
    color: #a1a0a0;
    font-size: 23px;
    top: 15px;
}
.about-logo {
    max-width: 180px;
    margin-bottom: 15px;
}
@media(max-width:991px){
  body {
    padding-bottom: 51px;
}
  .enqModal .modal-body {
    padding: 30px;
}
  .call-btn {
    display: none;
}
  .mobile-inqury {
    display: flex;
}
  .site-wrapper {
    margin-top: 56px;
}

.banner-box {
    padding: 0;
    /* text-align: center; */
    background: transparent;
    margin: 0 auto;
}

.home-banner {
    height: auto;
}

.banner-box h1 {
    font-size: 22px;
}

.banner-box h2 {
    font-size: 15px;
    margin-bottom: 10px;
}

.banner-box p.price {
    font-size: 17px;
    margin: 5px 0 20px;
}

.banner-content {
    background: #333;
    position: static;
    padding: 25px 15px;
}

.sec-padding {
    padding: 30px 0;
}

.sec-heading {
    font-size: 30px;
    margin-bottom: 30px;
}

.common-img-box {
    margin: 15px 0;
    height: auto;
}

.highlights-div {
    padding: 20px;
    height: auto;
}

ul.amenities-list li {
    flex: 0 0 50%;
    width: 50%;
    font-size: 12px;
}

.amenities-box {
    height: 100%;
}

.floor-box {
    height: 180px;
    margin: 0 0 15px;
}
.fixed-right-form {
    display: none;
}
.bottom-inq-form .col-md-4 {
    margin-bottom: 15px;
}

.bottom-inq-form .col-md-4:last-child {
    margin-bottom: 0;
}
.gallery-img {
    height: 160px;
}
.home-banner .carousel {
    height: 200px;
}

.banner-box p {
    font-size: 14px;
}
.amenities-box .icon {
    height: 120px;
}
.fixed-call-btn {
    display: none;
}
}

.pulseanimation {
    animation: pulse-cust 2s infinite;
}

@-webkit-keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
    }
}

@keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
    }
}

.price-box {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #C9C9C9;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
    background: #fff;
}

.price-box p {
    margin-bottom: 5px;
    font-weight: 600;
}

.price-box h4 {
    font-weight: 800;
    color: var(--mainColor);
}

.price-box .btn {
    margin-top: 15px;
}

.bottom-inq-form {
    background-image: url(../images/earth5-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
.bottom-inq-form:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(00,00,00,0.7);
    position: absolute;
    top: 0;
}

.bottom-inq-form .container{
    position: relative;
    z-index: 9;
}