/* Css Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End Css Reset */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #FBB03B;
    --accent-color: #3D3B9C;
    --secondary-color: #FEFBF6;
    --black: #000;
    --white: #fff;
    --text-color: #2C333D;
    --footer-bg: #EAE8F3;
    --button-bg-hover: #2C333D;
    --light-grey: #EFEEF3;
    --dark-grey: #cccccc;
}

html{
    scroll-behavior: smooth;
}

body{
font-family: 'Raleway', sans-serif;
overflow-x: hidden;
}



.link {
    color: var(--primary-color);
}

.link:hover {
    color: var(--accent-color);
}


/* Loader */
.hide {
    display: none !important;
   }

.loader-div {
    height: 100vh;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color: var(--primary-color);
}

.spinner {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
   }
   
   .spinner::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    inset: 0;
    border: 4px solid var(--secondary-color);
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spinny 2s linear infinite;
   }
   
   @keyframes spinny {
    0% {
     transform: rotate(0deg) scale(1)
    }
   
    50% {
     transform: rotate(45deg) scale(1.3)
    }
   
    100% {
     transform: rotate(360deg) scale(1)
    }
   }

   
/* End Loader */

/* Header */

/* Header styles */


nav {
    
    width: 100% !important;
    position: fixed;
    z-index: 7;
    top: 0;
    padding: 20px 0;
    background-color: var(--white);
    height: max-content;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: max-content;
}

.logo {
    width: 100px;
}


.header-right {
    display: flex; 
    gap: 10px;
    align-items: center;
    
    font-size: 15px;
    font-weight: 600;
    
}



#navi-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left a, .header-right a {
    text-decoration: none;
    color: var(--text-color);
}

.header-left a:hover, .header-right a:hover {
    text-decoration: none;
    color: var(--text-color);
}
.header-right ul {
    display: flex;
    
}

.header-right ul li {
    margin: 0 20px;
    
}
li a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
  }
  
 li a:hover {
    color: var(--primary-color);
  }
  
 li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  
  li a:hover::before {
    transform: scaleX(1);
  }

  #active-nav {
    color: var(--primary-color) !important;
  }

  @media screen and (min-width: 1000px) {
    .nav-items {
        border-right: 1px solid grey;
        border-left: 1px solid grey;
        height: 30px;
        align-items: center;
        margin-right: 30px;
    }

    
  } 

.head-btn {
    width: 110px;
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    background-color: var(--light-grey);
    border: 1px solid var(--secondary-color);
    padding: 0 20px;
    transition: all .5s ease;
}

.head-btn:hover{
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--primary-color);
}



/* Mobile Menu styles */

.mobile-menu {
    cursor: pointer;
    transition: all 1s ease-in-out;
    direction: rtl;
    display: none;
    padding: 20px;
    margin-top: 5px;
}



#hamburger{
    position: relative;
}



/* header responsive styles */

@media screen and (max-width: 1000px) {

    nav {
        height: 110px;
        padding: 0;
       
    }

    #closeMenu {
        color: var(--white) !important;
    }

    .header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: max-content;
        padding: 12px 0;
    }

    .mobile-menu {
        display: block;
    }

    .nav-items > .list-items  {
        color: var(--white) !important;
      }

    .nav-items > .list-items > #active-nav {
        color: var(--primary-color) !important;
      }

    .nav-items {
        flex-direction: column;
        margin-bottom: 30px;
        
    }

    .nav-items > .list-items {
        padding-bottom: 40px;
    }
    .header-link {
        color: var(--white) !important;
    }
    #navi-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh; 
        color: var(--white);
        background-color: var(--text-color);
        transition: all 0.1s ease-in-out;
    }

    
    .hide {
        display: none;
    }

    #navi-menu.active{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh; 
        color: var(--primary-color);
        background-color: var(--text-color);
        overflow-x: hidden;
    }

    .top{
        top: 10px;
        position: relative;
        width: 35px !important;
        transform: rotate(-45deg);
    }

    .middle {
        position: relative;
        background-color: transparent;
        translate: 300%;
    }

    .bottom {
        top: -6px;
        width: 35px !important;
        position: relative;
        transform: rotate(45deg);
    }

    .form-switch .form-check-input {
    
    margin-right: 10px;
    }

    .form-check-input {
        transform: none;
    }

    .form-switch .form-check-input {
        height:30px;
        width: 45px;
    }
    
    
    .form-switch .form-check-input:checked {
        height:30px;
        width: 45px;
        
    }

}
/* End Header */

/* Hero section */
.hero-section{

    width: 100vw;
    overflow-x: hidden;
    height: 800px;
    background: url("../media/Outdoors/DSC_4781.jpg") no-repeat center center !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7);
    display: flex;
    
    
}

#hero-cont{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

#hero-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hero-h1 {
    font-size: 40px;
    font-family: 'Cardo', serif;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.hero-p {
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
}

.home-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 20px;
}


input[type=text] {
    border: none !important;
    font-family: 'Cardo', serif;
    font-size: 12px;
}

#date-1, #date-2 {
    border-right: 1px solid grey;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 10px;
}


.hero-top-text {
    font-size: 15px;
    padding-top: 10px;
    font-weight: 600;

}

.ui[class*="left icon"].input>input {
    color: var(--text-color);
}
.number-wrapper{
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .number-wrapper span{
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
  }
  .number-wrapper span.num{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    pointer-events: none;
  }

  .number-wrapper span.plus{
    margin-top: -2px;
  }

  .form-select{
    border-radius: 10px;
  }
  .hide-text-mobile {
    margin-left: 5px;
  }

  .submit-search {
    border-left: 1px solid grey;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #submit-main-btn {
    background-color: var(--primary-color);
    border: none;
    width: 100px;
    color: var(--white);
    height: 40px;
    border-radius: 10px;
    margin-left: 10px;
    transition: .3s all ease-in-out;
   
  }

  #submit-main-btn:hover {
    background-color: var(--accent-color);
    border: none;
    
  }
  


  /* Hero Responsive styles */
  @media screen and (max-width: 900px) {
    .hero-h1{
        font-size: 35px;
        
    }

    .hero-p{
        font-size: 14px;
    }

  .hide-text-mobile {
    display: none;
  }

  #submit-main-btn {
    width: 30px;
    display: grid;
    align-items: center;
    padding: 0;
  }

  .form-row .form-select {
    width: 93px;
    font-size: 11px;
  }

  .ui[class*="left icon"].input>input {
    color: var(--text-color);
    font-size: 11px;
    width: 100px;
  }
 



.fa-user {
    display: none !important;
}

  }

  @media screen and (max-width: 450px) {
    .hero-h1{
        font-size: 30px;
        
    }

    .home-search {
        width: 100%;
        position: relative;
    }

    .hero-p{
        font-size: 10px;
        overflow-wrap: break-word;
    }

  .hide-text-mobile {
    display: none;
  }

  #submit-main-btn {
    width: 30px;
  }

  .ui[class*="left icon"].input>input {
    color: var(--text-color);
    font-size: 11px;
    width: 85px;
  }
    

.form-select {
    width: 85px;
    transition: all .4s ease-in-out;
}

  }


  @media screen and (max-width: 400px) {
    .hero-h1{
        font-size: 35px;
        
    }

    .hero-p{
        font-size: 14px;
    }

  .hide-text-mobile {
    display: none;
  }

  #submit-main-btn {
    width: 30px;
  }

  .ui[class*="left icon"].input>input {
    color: var(--text-color);
    font-size: 11px;
    width: 91px;
  }
    

.form-select {
    width: 70px;
    transition: all .4s ease-in-out;
}

.fa-user {
    display: none;
}

  }
/* End Hero Section */


/* About Section */

.about-section {
    height: max-content;
    padding: 100px 0;
}

.home-about-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-abt-img {
    width: 550px;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

#left-abt-col {
    display: flex;
    justify-content: center;
}

#right-abt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.header-h2 {
    font-size: 30px;
    color: var(--accent-color);
    font-family: 'Cardo', serif;
}


.text-parag {
    color: grey;
    font-size: 15px;
    line-height: 25px;
    font-family: 'Raleway', sans-serif;
}


.yellow-btn {
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0 20px;
    transition: all .5s ease;
}

.yellow-btn:hover{
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--primary-color);
    scale: 1.05;
}




/* About Responsive styles */
@media screen and (max-width: 1200px) {
   

    .home-abt-img {
        width: 450px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}


@media screen and (max-width: 1000px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 400px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    #left-abt-col {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: auto;
        align-items: center;
    }

    #right-abt-col {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 400px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 500px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 300px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}
/* End About Section */


/* Featured Section */

.featured-room-section {
    height: max-content;
    padding: 100px 30px;
    background-color: var(--light-grey);
}

.paragraph {
    font-size: 15px;
    margin-bottom: 30px;
}

#featured-header {
    margin-bottom: 20px;
}

.card-title-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-img {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-bottom: 10px;
    flex-direction: column;

}

#card-img-1 {
    background: url(../media/Rooms/COTTAGE/IMG_1717.jpg)no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
    
}

#card-img-2 {
    background: url(../media/Rooms/ROUND\ HOUSE\ COTTAGE/IMG_0262-1.jpg)no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
    
}

#card-img-3 {
    background: url(../media/Rooms/VVIP\ SUITE/IMG_1624.jpg)no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
    
}

.card-info {
    background-color: #ffffffce;
    height: 100px;
    width: 95%;
    border-radius: 10px;
    padding: 10px;
    transition: all .2s ease-in-out;
}

.card-info:hover {
    cursor: pointer;
    scale: .95;
}

.card-info > h3 {
   font-family: 'Cardo', serif;
    color: var(--accent-color);
    margin-left: 5px;
    font-size: 22px;
} 

.icon-info {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
}

.icon-facilities {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto 5px;
}
.card{
    width: 320px;
    border-radius: 10px;
    margin: 30px 0;
}

.card > img {
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}



@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .card-img{
        width: 370px;
    }
    .icon-facilities {
        font-size: 13px;
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .card-img{
        width: 305px;
    }
   
    
}

@media screen and (max-width: 991px) {
    .card{
        width: 420px;
        margin-bottom: 20px;
    }

    .icon-info {
        font-size: 11px;
        gap: 2px;
    
    }
    #featured-row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #featured-header {
        text-align: center;
        margin-bottom: 20px;
    }

    #card-col {
        display: flex;
        width: 100%;
        margin: 20px 0;
        justify-content: center;
    }

    .icon-facilities {
        font-size: 10px;
    }

    .icon-facilities img {
        object-fit: contain !important;
        width: 17px;
        height: 29px;
    }

    .card-info > h3 {
         font-size: 18px;
     } 

     
    
}

@media screen and (max-width: 381px) {
    .card-img {
        width: 120%;
     }
}


.ft-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* Featured Section End */

/* Beach Section */
.beach-section {
    height: max-content;
    padding: 80px 20px;
    width: 100vw;
}

#beach-row > div {
    margin-bottom: 60px;

}


#left-beach-section, #right-beach-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#right-beach-section > button {
    width: 180px ;
}



.beach-img {
    width: 600px;
    border-radius: 10px;
}


@media screen and (min-width: 1190px) and (max-width: 1390px) {
    .beach-img {
        width: 500px;
        border-radius: 10px;
    }
}


@media screen and (max-width: 1190px) {
    .beach-img {
        width: 400px;
        border-radius: 10px;
    }

    #left-beach-section{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {
    .beach-img {
        width: 300px;
        border-radius: 10px;
    }

}


/* Beach End */


/* Video Section */

.video-section{

    width: 100vw;
    height: 700px;
    background: url("../media/Beach/DSC_3468.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7);
    display: flex;
    
    
}

#video-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.vimeo-launch {
    display: block;
    background-color: transparent;
    border: none;
    width: 200px;
    height: 200px;
    transition: all .4s ease-in;
}

.vimeo-launch:hover {
 scale: 1.05;
}

.yellow-header {
    font-size: 35px;
    color: var(--primary-color);
}


@keyframes close-before {
    0% { margin-top: 0 }
    100% { margin-top: -10px }
  }
  
  @keyframes close-after {
    0% { margin-top: -10px }
    100% { margin-top: 0px }
  }

  .vimeo-launch:before {
    background: white;
    box-shadow: inset 0 0 0 4px white, inset 0 0 0 8px #62abfc;
    color: #3091fb;
    top: 0;
  }
  .vimeo-launch:after {
    background: #62abfc;
    box-shadow: inset 0 0 0 4px #62abfc, inset 0 0 0 8px white;
    color: white;
    top: 100%;
  }
  .vimeo-launch:hover:before {
    top: -100%;
  }
  .vimeo-launch:hover:after {
    top: 0;
  }
  
  #vimeo-pop-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.75);
  }
  #vimeo-pop-container div {
    height: 450px;
    width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #vimeo-pop-container .vimeo-close {
    background-color: transparent;
    border: 3px solid white;
    cursor: pointer;
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 100%;
    right: 0;
    transition: 200ms background-color;
  }
  #vimeo-pop-container .vimeo-close:before, #vimeo-pop-container .vimeo-close:after {
    content: "";
    background: white;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(45deg);
    transition: 500ms all;
  }
  #vimeo-pop-container .vimeo-close:before {
    height: 20px;
    width: 2px;
    margin-left: -1px;
    margin-top: -10px;
  }
  #vimeo-pop-container .vimeo-close:after {
    height: 2px;
    width: 20px;
    margin-left: -10px;
    margin-top: -1px;
  }
  #vimeo-pop-container .vimeo-close:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  #vimeo-pop-container .vimeo-close.closing:before {
    transform: rotate(450deg);
    margin-left: -2px;
    margin-top: 0;
    -webkit-animation: close-before 500ms ease 500ms 1 forwards;
            animation: close-before 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container .vimeo-close.closing:after {
    transform: rotate(540deg);
    margin-left: -11px;
    margin-top: -10px;
    -webkit-animation: close-after 500ms ease 500ms 1 forwards;
            animation: close-after 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container iframe {
    border: 6px solid white;
    height: 100%;
    width: 100%;
  }

  
@media screen and (max-width: 1000px) {
    #vimeo-pop-container div {
        height: 450px;
        width: 500px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .yellow-header {
        font-size: 30px;
      }

      h2 {
        font-size: 27px !important;
      }
}

@media screen and (max-width: 700px) {
    #vimeo-pop-container div {
        height: 350px;
        width: 350px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .gray-header {
        font-size: 35px;
        color: var(--light-grey);
    }
}

/* Video Section End */

/* Review Section */

.review-section {
    height: max-content;
    padding: 80px 20px;
    background-color: var(--light-grey);
}

#review-col {
    overflow-x: hidden;
}

.gg-rvw {
    height: 850px;
}

#elf {
    position: relative;
    z-index: 1;
}


@media screen and (max-width: 1500px) {
    .gg-rvw {
        height: 900px;
    }
}

@media screen and (max-width: 1200px) {
    .gg-rvw {
        height: 1300px;
    }
}

@media screen and (max-width: 800px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 750px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 650px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 560px) {
    .gg-rvw {
        height: 2900px;
    }
}

@media screen and (max-width: 400px) {
    .gg-rvw {
        height: 3100px;
    }
}
/* Review End */

/* Footer */
.footer{
    height: max-content;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100vw;
    background-color: var(--text-color);
}



.footer-logo{
    width: 100px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 12px;
    text-align: justify;
    width: 90%;
    color: var(--white);
}

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icons > li:focus {
    text-decoration: none;
}

.footer-header {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    
}


.footer-link > a {
    color: var(--primary-color);
}

.footer-link > a:hover {
    color: var(--white);
}


#copyright-col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    text-align: center;
}

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


.footer-nav {
    color: var(--white);
}

.footer-link {
    color: var(--primary-color);
}

.footer-link:hover {
    color: var(--white);
}



@media screen and (max-width: 990px) {

    #footer-row {
        display: flex;
        gap: 30px;
    }
    

   
    
}

/* Cookies */
#cookieNotice.light {
    background-color: var(--white);
    color: var(--text-color);
    
}

#cookieNotice.display-right {
    left: 20px;
    bottom: 20px;
    width: 350px;
}
#cookieNotice {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997;

}
#cookieNotice #closeIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: var(--black);
    z-index: 999999;
    position: absolute;
    top: 20px;
    right: 20px;
}

#cookieNotice .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: url(../media/cookie-icon.svg) 0 0 / 40px 40px no-repeat;
    padding-left: 45px;
    height: 40px;
}

#cookieNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
#cookieNotice * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

.btn-wrap {
    margin-top: 10px !important;
}

.cookie-btn {
    width: 100px;
    height: 30px;
    padding: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

@media screen and (max-width: 900px) {
    #cookieNotice.display-right {
        left: 20px;
        bottom: 20px;
        max-width: 280px;
    }
}
/* End Footer */

/* back top button */
#btn-back-to-top {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    display: none;
  }



  /* About Page */

  .breadcrumb-section {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/IMG_1752.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }



 #breadcrumb-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title {
    color: var(--white);
    font-size: 40px;
    opacity: .9;
}

@media screen and (max-width: 700px) {
   
    .breadcrumb-section {
        padding: 100px 0;
        width: 100vw;
        height: 300px;
        background: url("../media/Outdoors/IMG_1752.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
        display: flex;
      }
    
   
   
    .page-title {
        color: var(--white);
        font-size: 30px;
        opacity: .9;
    }
}



/* About page main section */

.about-section {
    height: max-content;
    padding: 80px 20px;
}

#left-abt-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.split-images {
    width: 600px;
    border-radius: 10px;
}

.about-text-parag {
    color: grey;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    font-family: 'Raleway', sans-serif;
}

@media screen and (max-width: 1300px) {
    .split-images {
        width: 320px;
        border-radius: 10px;
    }

    #left-abt-col  {
        margin-bottom: 50px;
    }
}


/* About page main section end */

/* Gallery Page styles */

.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-video {
    margin-bottom: 40px;
}


.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

@media screen and (max-width: 900px) {
    .grid-wrapper div {
        grid-row: span 2;
        grid-column: span 2;
    }
   
}

/* Gallery page end */


/* contact page */

 .contact-info-ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 15px;
}

.contact-link {
    margin-left: 15px;
}

.contact-hr {
    width: 50%;
}

.socials {
    display: flex;
    gap: 15px;
}




@media screen and (max-width: 700px) {
    

.g-map {
    max-width: 400px;
}

}

@media screen and (max-width: 400px) {
    

    .g-map {
        max-width: 300px;
    }
    
    }



/* contact page end */


/* Privacy Policy Page */

.bold-text {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: bold;
}

/* Privacy Policy End */



/* FAQS Page */
.accordion-content {
    width: 95%;
    padding: 0;
    margin: 0 auto;
  }
  
  .centerplease {
    margin: 0 auto;
    max-width: 270px;
    font-size: 40px;
  }
  
  /*Question*/
  .question {
    position: relative;
    background: #f9f9f9;
    margin: 0;
    padding: 10px 10px 10px 50px;
    display: block;
    width:100%;
    cursor: pointer;
    font-weight: bold;
  }
  /*Answer*/
  .answers {
    padding: 0px 15px;
    margin: 5px 0;
    width:100%!important;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  }
  
  .questions:checked ~ .answers{
    height: auto;
    opacity: 1;
    padding: 15px;
    
  }
  
  /*FAQ Toggle*/
  .plus {
    position: absolute;
    margin-left: 10px;
    color: var(--primary-color);
    z-index: 5;
    font-size: 2em;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  
  }
  
  .questions:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  
  }
  
  .questions {
    display: none;
    
  }

/* FAQ's End */


/* Rooms & Suites Page */
.rooms-n-suites {
    height: max-content;
    padding: 80px 20px;
    background-color: var(--light-grey);
    
}

#innerPageHeading {
    margin-bottom: 30px;
}

#room-row {
    padding: 20px;
    background-color: var(--white);
    border-radius: 20px;
    margin-bottom: 70px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    
}

.room-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#left-room-col {
    padding: 20px;
    display: flex;
    align-items: center;
}

#right-room-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

#right-room-col h2 {
    color: var(--primary-color);
}

.price {
    font-size: 16px;
    color: var(--text-color);
}

.room-page-imgs {
    width: 100%;
    border-radius: 10px;
    transition: .4s all ease-in-out;
}

@media screen and (max-width: 1500px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    
}

@media screen and (max-width: 1200px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    #right-room-col {
        padding: 0;
    } 

    
}

@media screen and (max-width: 1000px) {
    .room-items {
        flex-direction: column;
        margin: auto;
        gap: 0;
    }
    #left-room-col {
        padding: 0;
        display: flex;
        align-items: center;
    }

}


@media screen and (max-width: 700px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }

   
}

@media screen and (max-width: 500px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}


@media screen and (max-width: 450px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

@media screen and (max-width: 380px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

@media screen and (max-width: 350px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

.facilities-main {
    display: flex;
    gap: 30px;
}



.facilities {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    gap: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.facilities-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}



.outline-btn {
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 0 20px;
    transition: all .5s ease;
}



.outline-btn:hover {
    color: var(--white);
    scale: 1.08;
    background-color: var(--primary-color);
}

.header-text {
   margin-bottom: 20px;
}

.facilities > .fa-solid {
    width: 20px;
   
}

.facilities > p {
    color: var(--text-color);
}

#right-room-col > button {
    margin-top: 30px;
}

#right-room-col > button:hover {
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.facilities img {
    object-fit: contain !important;
   
}

@media screen and (max-width: 1000px) {
    
    #left-room-col {
        padding: 20px;
    }
    
    #right-room-col {
        padding: 20px;
        padding-top: 0;
        margin-bottom: 20px;
    }
    
    #room-row{
        padding: 30px;
    }

     .facilities img {
        object-fit: contain !important;
        width: 22px;
        height: 30px;
    }

    .header-text {
        font-size: 22px !important;
    }

    .facilities > p {
        font-size: 12px;
    }

}
/* Rooms & Suites End */

/* Amenities Page */

.amenities-section {
    height: max-content;
    padding: 100px 0;
}

#amenities-row {
    margin-bottom: 100px;
}

.amenities-imgs {
    width: 600px;
    height: 400px;
    object-fit: cover;
    display: grid;
    margin: auto;
    border-radius: 20px;
}


/* Amenities responsive styles */
@media screen and (max-width: 1400px) {
    .amenities-imgs {
        width: 500px;
    }
}

@media screen and (max-width: 1200px) {
    .amenities-imgs {
        width: 450px;
    }
}

@media screen and (max-width: 990px) {

    #amenities-row {
        padding: 20px;
    }

    div > .amenities-imgs {
        display: grid;
        align-items: center;
    }

    .amenities-imgs {
        max-width: 320px;
    }

 .order1 {
    order: 1;
    margin-bottom: 50px;
 }

 .order2 {
    order: 2;
 }
}


/* amenities responsive styles end */
/* Amenities end */


/* bookings page */

.info-text {
    text-align: left;
    width: 100%;
  }
  
  
  
  .form-group {
    margin-bottom: 20px;
  }
  
  h2.heading {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: left;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 3px;
    margin-bottom: 20px;
  }
  

  
  .controls {
    text-align: left;
    position: relative;
  }

  

  .controls input,
  .controls textarea,
  .controls button,
  .controls select {
    padding: 15px;
    font-size: 14px;
    border: 1px solid var(--dark-grey) !important;
    width: 100%;
    
    margin-bottom: 18px;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 300;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .controls input[type="text"]:focus, .controls input[type="text"]:hover,
  .controls input[type="email"]:focus,
  .controls input[type="email"]:hover,
  .controls input[type="number"]:focus,
  .controls input[type="number"]:hover,
  .controls input[type="date"]:focus,
  .controls input[type="date"]:hover,
  .controls input[type="tel"]:focus,
  .controls input[type="tel"]:hover,
  .controls textarea:focus,
  .controls textarea:hover,
  .controls button:focus,
  .controls button:hover,
  .controls select:focus,
  .controls select:hover {
    outline: none;
    border-color: var(--light-grey);
  }
  .controls input[type="text"]:focus + label, .controls input[type="text"]:hover + label,
  .controls input[type="email"]:focus + label,
  .controls input[type="email"]:hover + label,
  .controls input[type="number"]:focus + label,
  .controls input[type="number"]:hover + label,
  .controls input[type="date"]:focus + label,
  .controls input[type="date"]:hover + label,
  .controls input[type="tel"]:focus + label,
  .controls input[type="tel"]:hover + label,
  .controls textarea:focus + label,
  .controls textarea:hover + label,
  .controls button:focus + label,
  .controls button:hover + label,
  .controls select:focus + label,
  .controls select:hover + label {
    color: var(--primary-color);
    cursor: text;
  }
  .controls .fa-sort {
    position: absolute;
    right: 10px;
    top: 17px;
    color: var(--text-color);
  }
  
  .controls label {
    position: absolute;
    left: 8px;
    top: 12px;
    width: 60%;
    color: var(--text-color);
    font-size: 16px;
    display: inline-block;
    padding: 4px 10px;
    font-weight: 400;
    -moz-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -o-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s;
    transition: color 0.3s, top 0.3s, background-color 0.8s;
    background-color: var(--white);
  }
  .controls label.active {
    top: -11px;
    color: var(--text-color);
    background-color: var(--white);
    width: auto;
  }
  .controls textarea {
    resize: none;
    height: 200px;
  }
  
 

  .grid select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
  
  .clear:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .grid:after {
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
  }
  
  .form-group .heading {
    font-size: 15px !important;
  }

  [class*='col-'] {
    float: left;
    padding-right: 10px;
  }
  .grid [class*='col-']:last-of-type {
    padding-right: 0;
  }
  
  .col-2-3 {
    width: 66.66%;
  }
  
  .col-1-3 {
    width: 33.33%;
  }
  
  .col-1-2 {
    width: 50%;
  }
  
  .col-1-4 {
    width: 25%;
  }
  
  @media (max-width: 760px) {
    .col-1-4-sm, .col-1-3, .col-2-3 {
      width: 100%;
    }
  
    
  }
  .col-1-8 {
    width: 12.5%;
  }

  #g-recaptcha {
    margin-bottom: 20px !important;
  }
  @media screen and (max-width: 800px) {
    input[type="date"] {
        height: 60px !important;
        width: 150px !important;
    }
  }
  

/* bookings end */


/* Cottage styles */

.breadcrumb-section-cottage {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/IMG_1748.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }


  

    .room-section {
    height: max-content;
    padding: 60px 0;
    background-color: var(--light-grey);
}

  #room-content-col{
    padding: 30px;
  }

  .price-box{
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 100%;
    padding: 18px;
    text-align: center;
  }

  .reservation-box {
    background-color: var(--white);
    width: 100%;
    display: grid;
    margin-top: 30px;
    padding: 25px;
    color: var(--text-color);
    
  }

  .reservation-box hr {
    width: 90%;
  }

  .book-stay {
    margin-bottom: 30px;
  }

  .book-stay a {
    margin-left: 10px;
    color: var(--text-color);
    font-weight: bold;
  }

  .room-amenities {
    display: flex;
    gap: 20px;
  }

  .room-amenities  p {
    font-size: 14px;
    color: var(--text-color);
  }

  .book-now {
    margin-top: 20px;
  }

  @media screen and (max-width: 1000px) {
    .breadcrumb-section-cottage {
        height: 250px;
      }
  }
/* cottage end */

/* Round house */
.breadcrumb-section-round {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/IMG_1746.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 1000px) {
    .breadcrumb-section-round {
        height: 250px;
      }
  }
/* Round house end */

/* Other Room styles */

.breadcrumb-section-rooms {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/DSC_4662.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 1000px) {
    .breadcrumb-section-rooms {
        height: 250px;
      }
  }
/* Other Room styles end */

/* Form sent styles */
#form-sent-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1080px) {
    #form-sent-col:nth-of-type(2){
        margin-top: 30px;
    }
}


/* 404 page*/
.err404head{
    font-size: 40px !important;
}

.err404p {
    font-size: 18px;
    text-align: center;
}

.err404img {
    max-width: 500px;
    border-radius: 10px;
    transition: all 1s ease-in-out;
}

@media screen and (max-width: 700px) {
 
    .err404img {
        max-width: 350px;
    }
}

/* pricing page styles */
.table-container {
    width: 700px;
    margin: 20px auto;
  }

  @media screen and (max-width: 700px) {
    .table-container {
        width: 300px;
        margin: 20px auto;
      }
  }
  .table-header {
    background-color: #FBB03B;
    color: white;
    font-weight: bold;
    text-align: left;
    padding: 8px;
    display: flex;
  }

  .item, .unit-price {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px;
  }

  .item-row {
    display: flex;
  }
/* pricing page style end */