/* -----Variables--- */
@font-face {
    font-family: "gill-Regular";
    src: url("../fonts/gill-sans/vertopal.com_Gill\ Sans.ttf");
}

/* @font-face {
    font-family: "Roboto-Medium";
    src: url("../fonts/gill-sans/Gill\ Sans\ Medium.otf");
} */

@font-face {
    font-family: "gill-Bold";
    src: url("../fonts/gill-sans/vertopal.com_Gill\ Sans\ Bold.ttf");
}

/* @font-face {
    font-family: "Roboto-Light";
    src: url("../fonts/gill-sans/Gill\ Sans\ Light.otf");
} */

@font-face {
    font-family: "LibreBaskerville-Regular";
    src: url("../fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf");
}

@font-face {
    font-family: "LibreBaskerville-Bold";
    src: url("../fonts/Libre_Baskerville/LibreBaskerville-Bold.ttf");
}

:root {
    --bg-white: #FFFFFF;
    --text-white: #ffffff;
    --bg-gray: #343741;
    --text-black: #1d1d1b;
    --text-gray: #a4a7aa;
    --text-light-gray: #dedede;
    --bg-green: #5c7360;
    --text-green: #5c7360;
    --bg-green-dark: #11311c;
    --text-green-dark: #11311c;
}

.bg-white {
    background-color: var(--white-bg) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.bg-gray {
    background-color: var(--bg-gray) !important;
}

.text-black {
    color: var(--text-black) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.text-light-gray {
    color: var(--text-light-gray) !important;
}

.bg-green {
    background-color: var(--bg-green) !important;
}

.text-green {
    color: var(--text-green) !important;
}

.bg-green-dark {
    background-color: var(--bg-green-dark) !important;
}

.text-green-dark {
    color: var(--text-green-dark) !important;
}

.green-link {
    color: var(--text-green) !important;
}

.green-link:hover {
    color: var(--text-green-dark) !important;
}

/* ---Scrollbar Reset-- */

::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: var(--second-box-shadow);
    box-shadow: var(--second-box-shadow);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-dark-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--black-tertiary);
}

/* ======Global css===== */

* {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

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

*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--white-bg);
    font-family: "LibreBaskerville-Regular";
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "gill-Regular";
    font-weight: 600;
}
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.btn {
    display: inline-block;
    position: relative;
    margin-right: 8px;
    margin-bottom: 8px;
    margin-left: 8px;
    padding: 16px;
    min-width: 100px;
    vertical-align: middle;
    line-height: 2;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 1px;
    font-family: gillsans-rectory, -apple-system, blinkmacsystemfont, Segoe UI, roboto, arial, sans-serif;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: 3.12px;
    letter-spacing: .195rem;
    line-height: 1;
    cursor: pointer;
    transition-duration: .3s;
    transition-property: background-color, border-color;
    transition-timing-function: ease-in-out;
}

.btn_primary {
    background-color: var(--bg-green);
    border-color: var(--text-green);
    color: var(--bg-white);
}

.btn_primary:hover {
    background-color: var(--bg-green-dark);
    border-color: var(--bg-green-dark);
    color: var(--bg-white);
}

.btn-outline {
    border: 1px solid var(--text-green);
}

.btn-outline:hover {
    background-color: #d8dad8;
    border: 1px solid var(--text-green);
}

.btn-outline-white {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline-white:hover {
    color: var(--text-black) !important;
    border-color: var(--bg-white);
    background-color: var(--bg-white);
}

.btn-w-150 {
    min-width: 150px;
}

/* header */
header .menu span {
    font-size: 30px;
    cursor: pointer;
}

header .logo a {
    text-decoration: none;
}

header .logo p {
    font-size: 30px;
    font-family: "gill-Regular";
    font-weight: 700;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /* Change as needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow */
}

/* Adjust the top margin of the content when the menu is sticky */
.sticky+main {
    margin-top: 60px;
    /* Adjust this value based on your header height */
}

#main-header.sticky .logo p {
    display: none;
}

/* Navbar */
.menu-btn {
    position: absolute;
    left: 20px;
    top: 10px;
    background: #024950;
    color: #fff;
    height: 45px;
    width: 45px;
    z-index: 9999;
    border: 1px solid #0a4147;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#sidebar {
    position: fixed;
    top: 0px;
    background: var(--bg-green);
    height: 100%;
    /* width: 600px; */
    width: 470px;
    overflow: hidden;
    left: -470px;
    transition: all 0.3s ease;
    z-index: 5;
    padding-left: 30px;
    padding-right: 30px;
    overflow-y: auto;
}

#sidebar.sidebaropend {
    left: 0px;
}

#sidebar .list-items {
    position: relative;
    width: 100%;
    height: auto;
    list-style: none;
}

#sidebar li.nav-item.active a {
    color: var(--bg-white);
}

#sidebar .list-items li {
    line-height: 50px;
    transition: all 0.3s ease;
    margin-bottom: 3px;
}

#sidebar .list-items li:first-child {
    border-top: none;
}

#sidebar .list-items li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.675rem;
    height: 100%;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-family: "gill-Regular";
    font-weight: 600;
    letter-spacing: .25rem;
}

#sidebar .list-items li a:hover {
    color: var(--bg-white);
}

.close-sidebar i.fas.fa-times {
    font-size: 40px;
    color: var(--text-gray);
}

.close-sidebar i.fas.fa-times:hover {
    color: var(--text-white);
}

.close-sidebar {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.close-sidebar #closeSidebarBtn {
    cursor: pointer;
}

.sec-y {
    padding-top: 50px;
    padding-bottom: 50px;

}

.heading-sec {
    margin-bottom: 35px;
    font-size: 1.25rem;
    letter-spacing: 4.78px;
    letter-spacing: .29875rem;
    line-height: 1;
    color: var(--text-green);
    text-transform: uppercase;
}

p {
    font-size: 1.2125rem;
    line-height: 28px;
    margin: 0 0 20px;
}

body.overlay .overlay-div {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0.9;
    background-color: #a3a6a8cc;
    z-index: 2;
    overflow: hidden;
}

.header-media-icons {
    /* position: absolute;
    bottom: 20%; */
    width: 100%;
    margin-top: 70px;
}

.header-media-icons a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 25px;
    margin-right: 8px;
}

.header-media-icons .location {
    margin-top: 1rem;
}

.header-media-icons .location p {
    font-size: 16px;
}

/* book Now */
.modal.right.fade.in .modal-dialog {
    right: 0 !important;
    transform: translateX(-50%);
}

.modal.right .modal-content {
    height: 100%;
    overflow: auto;
    border-radius: 0;
    background-color: var(--bg-gray);
}

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.right.fade.in .modal-dialog {
    transform: translateX(0%);
}

.modal.right.fade .modal-dialog {
    right: 0px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}


.modal.right .modal-header::after {
    content: "";
    display: inline-block;
}
#bookNow .modal-body{
    padding: 3rem;
}
#bookNow .hideModal i{
    font-size: 30px;
    color: var(--text-gray);
    cursor: pointer;
    margin-bottom: 3rem;


}





#bookNow input.form-control,#bookNow .form-control:focus {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #50e3c2b3;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    color: var(--text-gray);
}
#bookNow input.form-control{
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-family: "gill-Regular";
    text-transform: uppercase;
    letter-spacing: 1px;
}
#bookNow ::placeholder{
    color: var(--text-gray) !important;
}
#bookNow .form-group {
    position: relative;
}

#bookNow .calender-Icon {
    position: absolute;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-gray);
}
#bookNow p.heading{
    font-family: "gill-Regular";

}
#bookNow .logo-img {
    margin-top: 4rem;
    text-align: center;
}
/************************* Home Page ****************************************************/
.hero-banner {
    position: relative;
}

.hero-banner .slider__item {
    max-height: 800px;
}

.hero-banner .owl-stage {
    padding: 0px !important;
}

.hero-banner .owl-item.active {
    margin-right: 0px !important;
}

.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

button.owl-prev {
    position: absolute;
    left: 3.5%;
}

button.owl-next {
    position: absolute;
    right: 3.5%;
}

.owl-dots {
    position: absolute;
    bottom: 11px;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    background-color: transparent !important;
    border: 1.5px solid #dedede !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #dedede !important;
}

/* stay & save */
.stay-save p {
    color: var(--text-gray);
}

.stay-save .img-sec {
    margin-top: 5rem;
}

.stay-save .img-sec img {
    max-width: 200px;
}

.client-slider .client-logo {
    padding-left: 10px;
    padding-right: 10px;
}

.client-slider .client-logo img {
    margin: auto;
}

/*  */
.sophisticated {
    background-color: #f3f3f3;
}

.sophisticated p {
    font-size: 1.875rem;
    line-height: 1.2;
    color: var(--text-gray);
}

.sophisticated p.userName {
    font-family: "gill-Regular";
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 700;
}

/* h-slide-2 */
.h-second-slide .slider__item {
    max-height: 550px !important;
}

/* bar */
.bar-slide .slide-img img {
    height: 500px;
}

/* cottage */
.cottage-sec {
    background-image: url('../images/COTTAGE_CTA_BANNER.jpg');
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    width: 100%;
    height: auto;
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cottage-sec p {
    font-size: 16px;
    margin-bottom: 10px;
}

.pub-sec {
    background-image: url('../images/pub_BANNER.jpg');
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    width: 100%;
    height: auto;
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* subscribe */
.c-form-mailchimp {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
}

.c-form-mailchimp .c-field__input {
    height: 50px;
}

.c-form-mailchimp .c-field {
    flex-basis: 66.6666%;
}

.c-form-mailchimp .c-form__submit {
    flex-basis: 33.3333%;
}

.c-field__input {
    position: relative;
    padding: 14px 10px;
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    letter-spacing: .7px;
    letter-spacing: .04375rem;
    color: #a4a7aa;
    outline-color: #5c7360;
    border: 1px solid #5c7360;
}

.c-form-mailchimp .c-form__submit {
    flex-basis: 33.3333%;
}

.c-form-mailchimp .c-form__submit .c-btn {
    margin: 0;
    padding-top: 16px;
    padding-bottom: 17px;
    width: 100%;
    height: 50px;
    border-left-width: 0;
    color: #5c7360;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 16px;
    min-width: 100px;
    vertical-align: middle;
    line-height: 2;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #5c7360;
    border-radius: 1px;
    font-family: gillsans-rectory, -apple-system, blinkmacsystemfont, Segoe UI, roboto, arial, sans-serif;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: 3.12px;
    letter-spacing: .195rem;
    line-height: 1;
    cursor: pointer;
    transition-duration: .3s;
    transition-property: background-color, border-color;
    transition-timing-function: ease-in-out;
}

/* footer */
.page-footer p {
    font-size: 15px;
    font-family: "gill-Regular";
}

.social-media li {
    display: inline-block;
    margin-right: 1rem;

}

.social-media a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 32px;
}

.scrollTop {
    width: 40px;
    height: 40px;
    background: transparent -o-linear-gradient(338deg, #000 0%, #000 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(112deg, #000 0%, #000 100%) 0% 0% no-repeat padding-box;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    position: fixed;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 500px;
    right: 8px;
    border: none;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    border-radius: 2px;
    -webkit-transition: 2s ease;
    -o-transition: 2s ease;
    transition: 2s ease;
    cursor: pointer;
    color: #fff;
}

.restaurant-sec .owl-nav img {
    width: 18px;
}

/* bedroom page */
.bedrooms_main .restaurant-sec p {
    font-size: 16px;

}

.bedrooms_main .restaurant-sec .heading-sec {
    font-size: 1.2rem;
}

.bedrooms_main .slider__item .slide-img img {
    height: 400px;
}

/* bar page */
.bar_main .bar-top-slider .slide-img {
    max-height: 600px;
    overflow: hidden;
}

.bar_main .pub-sec p {
    font-size: 16px;
}

.history_main .history {
    background-image: url('../images/Well_Hotel_Image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 700px;
}

/* board-room */
.board-room .slider__item img {
    width: 100% !important;
}

/* contact us */
.contact-card {
    background-color: var(--bg-white);
    padding: 2rem 1.5rem;
}

.contact-card .contact-media a {
    text-decoration: none;
    color: #212529;
    font-size: 16px;
    padding-left: 3rem;
    display: inline-block;
}

.contact-card .contact-media a span {
    position: absolute;
    left: 16px;
}

.contact-card .contact-media a span i {
    margin-right: 8px;
    font-size: 20px;
    color: var(--bg-green);
    position: relative;
    top: 2px;
}

.contact-card .contact-media a span i.fas.fa-phone {
    transform: rotate(80deg);
}

.stay-save.contact_p li {
    margin-bottom: 1rem;
}

.stay-save.contact_p a {
    text-decoration: none;
    color: var(--text-gray) !important;
}
.bedrooms_main .contact-number{
    letter-spacing: 2px;
}
.enq-mob{
    display: none;
}
.localAttractionSec .card{
    margin-bottom: 1.4rem;
    box-shadow: 1px 1px 26px 1px #d0d0d0;
}
.localAttractionSec .card:hover{
    box-shadow: 1px 1px 26px 1px #a8a8a8;
}
/* Media Query */
@media only screen and (max-width:1300px) {
    #sidebar{
        width: 430px;
        left: -470px;
    }
    #sidebar .list-items li a{
        font-size: 1.5rem;
    }

}
@media only screen and (max-width:1199px) {
    #sidebar{
        height: 100%;
    }
    .header-media-icons{
        position: static;
        /* margin-top: 3rem; */
        margin-bottom: 30px;
        height: 100%;
    }
    #sidebar .list-items{
        height: auto;
    }
    #sidebar .list-items li{
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hero-banner .slider__item {
        max-height: 470px;
    }
    .history_main .history{
        max-height: 700px;
        height: 500px;
    }
}

@media only screen and (max-width:767px) {
    #sidebar{
        padding-left: 20px;
        padding-bottom: 20px;
        width: 100%;
    }
    #sidebar .list-items li a {
        font-size: 1.1rem;
    }
    #main-header .enq, #main-header .logo.text-center img{
        display: none;
    }
    header#main-header {
        padding-top: 12px;
        padding-bottom: 8px;
    }
    header .menu span {
        position: relative;
        top: -6px;
    }
    #main-header.sticky .logo p {
        display: block;
    }
    .owl-nav img {
        width: 13px;
    }
    .slide-img img.img-fluid, .client-logo img.img-fluid{
        height: 300px;
        width: 100%;
    }
    .resr-content.stay-save {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .history_main .history {
        max-height: 700px;
        height: 200px;
    }
    
    .contact-detail {
        margin-bottom: 3rem;
    }
    .enq-mob{
        display: block;
    }
    .enq-mob .btn {
        display: block;
        width: 100%;
        margin-left: 0px;
        position: relative;
        top: -12px;
    }
    .container-fluid.px-5.sm-px-1{
        padding-left: 1rem !important;
        padding-right: 1rem !important;

    }
}
@media only screen and (max-width:320px) {
    #sidebar .list-items li a{
        font-size: 1rem;
    }
}