/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    /*    background-color: #22283f;*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

@media only screen and (min-width: 1050px) {
    body::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

a {
    color: #267481;
    text-decoration: none;
}

/* -------------------------------- 

Preloader

-------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 9999;
    /* makes sure it stays on top */
    overflow: hidden;
}

#status {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(../img/sixth_element.gif);
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    /* is width and height divided by two */
}

/* -------------------------------- 

weatherwidget

-------------------------------- */

.weatherwidget {
    position: fixed;
    left: 0;
    width: 170px;
    height: 200px;
    top: 40%;
    z-index: 9999;
}


/* -------------------------------- 

Main Components 

-------------------------------- */
@media only screen and (min-width: 1050px) {
    body[data-hijacking="on"] {
        overflow: hidden;
    }
}

.menu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /*    border: 1px solid;*/
    position: fixed;
    right: 0;
    left: 0;
    height: 70px;
    z-index: 9;
    transition: 0.5s;
    padding: 0px 15px;
}

#header {
    height: 750px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.blog {
    height: 400px !important;
}

.wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    /*    border: 1px solid;*/
}

.cd-floating-background img:first-child {
    transform: translateZ(100px);
}

.myVideo {
    position: fixed;
    z-index: -1;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);

}

video {
    display: block;
    margin-bottom: 1em;
}

.sec2video {
    position: fixed;
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);

}

.fixed {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    position: fixed;
    top: 0;
    height: 95px;
    z-index: 9;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0px 15px;
    background-color: rgb(0 0 0 / 50%) !important;
    backdrop-filter: blur(35px);
}



.main-nav {
    display: flex;
    position: relative;
    margin-top: 32px;
    padding: 0;
    transition: all 0.2s ease;

}

.main-nav div.logo {
    display: inline-grid;
    margin-right: auto;
    padding: 20px 10;
    float: left;

}

.main-nav div.logo a {
    padding: 0 10px;
}

.main-nav li {
    list-style: none;
    display: inline-block;

}

.drop {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #585757;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0;
    text-align: left;
}

.dropdown-content a {
    text-align: left !important;
    font-size: 14px !important;
    display: block !important;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/*.drop:hover .dropdown-content {display: block;}*/

.down-arrow {
    display: none;
    position: relative;
    right: 5px;
    cursor: pointer;
}

@media screen and (max-width:750px) {

    .weatherwidget {
        display: none;
    }

    .dropdown-content.toggle {
        display: none;
        position: relative;
    }

    .drop .down-arrow {
        display: inline-block;
        /* float: right; */
        position: relative;
        top: -25px;
        right: 20px;

    }
}


#nav {
    width: 60em;
    /* 1000 */
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -30em;
    /* 30 480 */
}

#nav > a {
    display: none;
}

#nav li {
    position: relative;
}

#nav li a {
    color: #fff;
    display: block;
}

#nav li a:active {
    background-color: #c00 !important;
}

#nav span:after {
    width: 0;
    height: 0;
    border: 0.313em solid transparent;
    /* 5 */
    border-bottom: none;
    border-top-color: #efa585;
    content: '';
    vertical-align: middle;
    display: inline-block;
    position: relative;
    right: -0.313em;
    /* 5 */
}

/* first level */

#nav > ul {
    height: 3.75em;
    /* 60 */
    background-color: #e15a1f;
}

#nav > ul > li {
    width: 25%;
    height: 100%;
    float: left;
}

#nav > ul > li > a {
    height: 100%;
    font-size: 1.5em;
    /* 24 */
    line-height: 2.5em;
    /* 60 (24) */
    text-align: center;
}

#nav > ul > li:not( :last-child) > a {
    border-right: 1px solid #cc470d;
}

#nav > ul > li:hover > a,
#nav > ul:not( :hover) > li.active > a {
    background-color: #cc470d;
}

/* second level */

#nav li ul {
    background-color: #cc470d;
    display: none;
    position: absolute;
    top: 100%;
}

#nav li:hover ul {
    display: block;
    left: 0;
    right: 0;
}

#nav li:not( :first-child):hover ul {
    left: -1px;
}

#nav li ul a {
    font-size: 1.25em;
    /* 20 */
    border-top: 1px solid #e15a1f;
    padding: 0.75em;
    /* 15 (20) */
}

#nav li ul li a:hover,
#nav li ul:not( :hover) li.active a {
    background-color: #e15a1f;
}

@media only screen and (max-width: 62.5em)

/* 1000 */
    {
    #nav {
        width: 100%;
        position: static;
        margin: 0;
    }
}

@media only screen and (max-width: 40em)

/* 640 */
    {
    html {
        font-size: 75%;
        /* 12 */
    }

    #nav {
        position: relative;
        top: auto;
        left: auto;
    }

    #nav > a {
        width: 3.125em;
        /* 50 */
        height: 3.125em;
        /* 50 */
        text-align: left;
        text-indent: -9999px;
        background-color: #e15a1f;
        position: relative;
    }

    #nav > a:before,
    #nav > a:after {
        position: absolute;
        border: 2px solid #fff;
        top: 35%;
        left: 25%;
        right: 25%;
        content: '';
    }

    #nav > a:after {
        top: 60%;
    }

    #nav:not( :target) > a:first-of-type,
    #nav:target > a:last-of-type {
        display: block;
    }

    /* first level */

    #nav > ul {
        height: auto;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
    }

    #nav:target > ul {
        display: block;
    }

    #nav > ul > li {
        width: 100%;
        float: none;
    }

    #nav > ul > li > a {
        height: auto;
        text-align: left;
        padding: 0 0.833em;
        /* 20 (24) */
    }

    #nav > ul > li:not( :last-child) > a {
        border-right: none;
        border-bottom: 1px solid #cc470d;
    }

    /* second level */

    #nav li ul {
        position: static;
        padding: 1.25em;
        /* 20 */
        padding-top: 0;
    }
}



.main-nav a {
    font-family: 'Playfair Display', serif;
    color: white;
    display: block;

    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-size: 13px;
}

.main-nav li a.active2 {
    color: #000;
    text-decoration: underline;
}

.main-nav a:hover {
    color: #bfa852;
    outline: none;
}

.main-nav a.download {
    background: white;
    color: #00adff;
    box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.2);
    margin-left: 25px;
}

li.nav-toggle {
    display: none;
}

li.nav-toggle a {
    padding-right: 0;
    padding-left: 0;
}

.btn {
    display: inline-block;
    padding: .8em 1.5em;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-radius: 100em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.btn--primary {
    background: #b18847;
    color: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(147, 121, 11, 0.5);
    box-shadow: 0 4px 20px rgba(141, 116, 11, 0.5)
}

.btn-success {
    color: #fff;
    background-color: #b18847 !important;
    border-color: #846027 !important;
}

@media screen and (max-width: 750px) {
    li.nav-toggle {
        display: block;
        z-index: 100;
    }

    .responsive-nav.showNav {
        display: block;
        width: 100%;
        background: #1f1f1f;
        position: absolute;
        top: 0;
        right: 0;
    }

    .responsive-nav.showNav li {
        display: block;
    }

    .responsive-nav.showNav a {
        padding: 40px;
        display: block;
        text-align: center;
    }

    .responsive-nav.showNav a:hover {
        transform: translate(0);
        color: #00adff;
    }

    .responsive-nav.showNav a.download {
        background: inherit;
        color: white;
        margin-left: 0;
    }

    .responsive-nav.showNav a.download:hover {
        color: #00adff;
    }
}


.cd-section {
    height: 100vh;
    overflow: hidden;
}

.heading1 {
    text-align: center;
    height: 100vh;
}

.heading1 img {
    width: 50%;
}

.cd-section .cont-box {
    background: rgba(0, 0, 0, 0.3);
    width: 60%;
    height: 1100px;
    margin: 50px;
    border-radius: 30px;
}

.cd-section h2 {
    font-family: 'Playfair Display', serif;
    text-shadow: 4px 6px 23px #000;
    /*  line-height: 5vh;*/
    text-align: right;
    font-size: 1rem;
    color: #fff;
}

.cd-section h2 span {
    font-style: italic;
}

.cd-section h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 1px #333;
    line-height: 10vh;
    text-align: center;
    font-size: 4rem;
    color: aliceblue;

}

.cd-section p {
    /*    padding: 20px;*/
    color: #fff;
    line-height: 1.5;
}

#features {

    text-align: center;
    position: relative;

}

.feature-card {
    /*    box-shadow: 0px 0px 64px 0px rgb(220 220 220);*/
    /*    margin-bottom: 33px;*/
    border: 0px solid #dcdcdc;
    padding: 0px;
}

.blogssec .feature-card {
    box-shadow: 0px 0px 64px 0px rgb(220 220 220);
    margin-bottom: 33px;
    border: 0px solid #dcdcdc;
    padding: 0px;
}

.feature-card2 img {
    width: 100%;
}

.feature-card h3 {
    margin: 10px 0 0;

}

.feature-card h3 {
    margin: 10px 0 0;
}


.cards {
    display: grid;
    grid-template-columns: 30px repeat(3, 1fr) 30px;
    grid-gap: 30px;
    padding: 40px 0;
    height: 100vh;
}

.cot_cards {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 30px;
    /*    padding: 130px 0;*/
    padding: 0px 0px 130px 0;
    height: 100vh;
}

.about_content h1 {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    line-height: 33px;
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 50px 60px 0px 60px;
}

.about_content p {
    line-height: 30px;
    text-align: center;
    padding: 6px 0;
    text-shadow: 1px 1px 1px #000;
    letter-spacing: 0.3px;
}

.fac_content h1 {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    line-height: 32px;
    margin: 0;
    width: 100%;
    padding: 50px 40px 0;
    text-align: center;
    text-shadow: 1px 2px 2px #000;
}

.harv_cards {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-gap: 30px;
    padding: 200px 0;
    height: 100vh;
}

.cont_cards {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 30px;
    padding: 100px 0;
    height: 70vh;
}

.fac_cards {
    display: grid;
    grid-template-columns: 30px repeat(3, 1fr) 30px;
    grid-gap: 30px;
    padding: 90px 0 0;
}

.fac_cards01 {
    height: 100vh;
}


.cont_cards h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 25px;
    font-weight: normal;
    line-height: 12px;
    margin: 0;
    width: 100%;
    text-align: left;
    padding: 20px;
    text-align: center;
}

.cont_cards p {
    font-size: 20px;
    color: #ffe170;
    font-weight: 500;
}

.cont_cards img {
    width: 50px;
    display: inline-block;
}

.cont_cards ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cont_cards li {
    margin: 10px 0;
}

.harv_cards h2 {
    color: #fff;
    font-size: 45px;
    font-weight: normal;
    line-height: 48px;
    margin: 0;
    width: 100%;
    text-align: left;
    padding: 40px;
}

.harv_cards h2 span {
    font-style: italic;
    color: #cfba6c;
}

.harv_cards p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 24px;
}

.social_cards {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-gap: 0px;
    padding: 5px 10px;
    position: absolute;
    right: 0;

}

.social_cards nav a {
    font-size: 1em;
    color: #fff;
    text-shadow: 2px 1px 1px #000;
    padding: 5px 10px;
}

/*[about us section]
=============================================================================
*/


.about-bg {
    background: url("../img/about-us-bg1.jpg") no-repeat;
    background-size: cover;
}

#about-us {
    background: #f9f9f9;
    text-align: center;
    position: relative;
}

.heading1 {
    position: relative;
    text-align: center;

}

.heading1 h2 {
  
    font-size: 55px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-shadow: 0px 0px 40px black;
}
.heading1 h5 {
   
    font-size: 25px;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    text-shadow: 0px 0px 40px black;
}

.blog_heading1 h2 {
    top: 20%;
}

.about_cards {
    /* display: grid;*/
    /* grid-template-columns: repeat(2, auto);*/
    /* grid-gap: 30px;*/
    /* padding: 100px 0;*/
    align-items: center;
}



.feature {
    position: relative;
}

.feature h3 {
    /*    font-size: 35px;*/
    font-size: 3em;
    color: #333;
    margin: 10px 0 0;
    text-align: left;

}

.feature h5 {
    font-size: 20px;
    line-height: 30px;
    color: #cfba6c;
    margin: 20px 0 0;
    text-align: left;

}

.feature p {
    font-size: 16px;
    color: #000;
    letter-spacing: 0.3px;
    margin: 20px 0 0;
    text-align: left;
    line-height: 29px;
}

#philosophy .feature p {
    font-size: 18px;
    color: #000;
    letter-spacing: 0.3px;
    margin: 0px 0 0;
    /* text-align: center; */
    line-height: 32px;
}
.cottages-bg .heading1 img {
    width: 183px !important;
    position: absolute;
    top: 41%;
    left: 41%;
    right: 50%;
}
.cottages2-bg .heading1 img {
    width: 183px !important;
    position: absolute;
    top: 41%;
    left: 41%;
    right: 50%;
}
.cottages2-bg .heading1 p {
    position: absolute;
    top: 62%;
    left: 0;
    right: 50%;
    width: 100%;
    line-height: 32px;
    font-size: 20px;
}
.mt-30{
    margin-top: 30px !important;
}
.calendarcss .addon-right {
    padding-right: 16px !important;
}
/*[about us section slide img]
=============================================================================
*/
#wrapper {
    /*    width: 600px;*/
    /*    margin: 10px auto;*/
    /*    height: 400px;*/
    position: relative;
    /*    color: #fff;*/
    /*    text-shadow: rgba(0, 0, 0, 0.1) 2px 2px 0px;*/
    /*    border: 20px solid #ddd;*/
}

div#wrapper:before {
    content: '';
    position: absolute;
    width: 600px;
    margin: 0px 0px 0px 0px;
    height: 400px;
    text-shadow: rgba(0, 0, 0, 0.1) 2px 2px 0px;
    border: 20px solid #b18847;
    right: -20px;
    top: -20px;
}

#slider-wrap {
    width: 600px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

#slider-wrap ul#slider {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

#slider-wrap ul#slider li {
    float: left;
    position: relative;
    width: 600px;
    height: 400px;
}

#slider-wrap ul#slider li > div {
    position: absolute;
    top: 20px;
    left: 35px;
}

#slider-wrap ul#slider li > div h3 {
    font-size: 36px;
    text-transform: uppercase;
}

#slider-wrap ul#slider li > div span {
    font-family: Neucha, Arial, sans serif;
    font-size: 21px;
}

#slider-wrap ul#slider li i {
    text-align: center;
    line-height: 400px;
    display: block;
    width: 100%;
    font-size: 90px;
}


/*btns*/
.btns {
    position: absolute;
    width: 50px;
    height: 60px;
    top: 50%;
    margin-top: -25px;
    line-height: 57px;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    z-index: 100;


    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;

    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btns:hover {
    background: rgba(0, 0, 0, 0.3);
}

#next {
    right: -50px;
    border-radius: 7px 0px 0px 7px;
}

#previous {
    left: -50px;
    border-radius: 0px 7px 7px 7px;
}

#counter {
    top: 30px;
    right: 35px;
    width: auto;
    position: absolute;
}

#slider-wrap.active #next {
    right: 0px;
}

#slider-wrap.active #previous {
    left: 0px;
}


/*bar*/
#pagination-wrap {
    min-width: 20px;
    margin-top: 350px;
    margin-left: auto;
    margin-right: auto;
    height: 15px;
    position: relative;
    text-align: center;
}

#pagination-wrap ul {
    width: 100%;
}

#pagination-wrap ul li {
    margin: 0 4px;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    position: relative;
    top: 0;

}

#pagination-wrap ul li.active {
    width: 12px;
    height: 12px;
    top: 3px;
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 0px;
}


/*ANIMATION*/
#slider-wrap ul,
#pagination-wrap ul li {
    -webkit-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
    -moz-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
    -o-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
    -ms-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
    transition: all 0.3s cubic-bezier(1, .01, .32, 1);
}


/*[experienc section ]
=============================================================================
*/

.experience h2 {
    font-size: 3em;
    text-shadow: 1px 1px 2px #333;
    text-align: center;
    padding: 80px 0 20px;
}

.experience h4 {
    font-size: 20px;
    text-shadow: 1px 1px 2px #000;
    line-height: 34px;
    text-align: center;
    width: 95%;
    margin: 0 auto;
    color: #ddd;
    padding-bottom: 50px;
}

.parallax {
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-window {
    background-image: url(../img/activity-bg22.jpg);
    padding: 80px 0px 0px 0px;
    background-position: center;
    background-size: cover;
    height: 1000px;
    background-attachment: fixed;
}

/*[Philosophy section]
=============================================================================
*/

#philosophy {
    background: #fff;
    text-align: center;
    position: relative;
}

.philos_cards {
    /*    display: grid;*/
    /*    grid-template-columns: repeat(2, auto);*/
    /*    grid-gap: 30px;*/
    /*    padding: 20px 0 70px;*/
}

.philosophy h2 {
    font-size: 3em;
    text-shadow: 1px 1px 2px #333;
    text-align: center;
    /*    padding: 80px 0 0px;*/
}

.vision {

    width: 100%;
    height: 300px;
    padding: 10px;
    box-shadow: 2px 2px 15px #333;
    background: url(../img/vision.jpg);
    background-size: 100%;
    background-position: center center;
    -webkit-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.mission {

    width: 100%;
    height: 300px;
    padding: 10px;
    box-shadow: 2px 2px 15px #333;
    background: url(../img/mission2.jpg);
    background-size: 100%;
    background-position: center center;
    -webkit-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.vision_content,
.mission_content {
    border-style: inset;
    border-width: thin;
    text-align: center;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.vision_content h2,
.mission_content h2 {
    font-size: 35px;
    padding: 10px 5px;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}

.vision_content h4,
.mission_content h4 {
    font-size: 25px;
    padding: 10px 5px;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}


.vision:hover,
.mission:hover {
    background-size: 125%;
    transition: 500ms ease;
}



/*[Cottages section]
=============================================================================
*/


.cottages-bg {
    background: url("../img/cottages-bg1.jpg") no-repeat;
    background-size: cover;
}

.cottages2-bg {
    background: url("../img/cottages-bg2.jpg") no-repeat;
    background-size: cover;
}

#cottages {
    background: #fff;
}

.cottage_cards {
    /*    display: grid;*/
    /*    grid-template-columns: repeat(2, auto);*/
    /*    grid-gap: 30px;*/
    /*    padding: 20px 30px;*/
}

.blog_cards {
    /*    display: grid;*/
    /*    grid-template-columns: 24% 24% 24% 24%;*/
    /*    grid-gap: 16px;*/
}

.room-details {
    /*    display: grid;*/
    /*    grid-template-columns: 20% repeat(2, 1fr) 0%;*/
    /*    grid-gap: 10px;*/
    /*    padding: 5px;*/
    color: #333;
}

.room-details table tr td {
    padding: 12px 0;
    border-bottom-style: ridge;
    border-bottom-width: thin;
}

.room-details h1 {
    font-size: 3em;
    padding: 5px 0;
    margin: 0 0 0.4em;
}

.room-details h1 span.inner {
    color: black;
}

.room-details h1 span.outer {
    color: red;
    text-decoration: line-through;
    margin-right: 20px;
}

.room-details h4 {
    font-size: 30px;
    padding: 20px 0;
    text-align: center;
}

.room-details img {
    width: 100%;
}

.room-details span.gst {
    font-size: 14px;
    display: block;
    padding: 5px 0;

}

.single-bed {
    background: #f8f8f8;
    padding: 0 20px;
}

.double-bed {
    background: #f8f8f8;
    padding: 0 20px;
}

.single-bed h3,
.double-bed h3 {
    padding-top: 20px;
}

.feature table img {
    width: 15%;
}

/*[Activity page section]
=============================================================================
*/

#activity_intro {
    background: #fff;
}

#activities {
    overflow: hidden;
}

.activity-bg {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    background-position: center center;
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
}

.resp-tabs-container div img {
    height: auto;
    width: 50%;
    float: left;
    padding: 10px 30px 0px 20px;
}

.resp-tabs-container div h5 {
    font-size: 1.5em;
    padding: 10px 0;
}

.resp-tabs-container div p {
    font-size: 16px;
    padding: 10px 0;
    line-height: 28px;
    text-align: justify;
    color: #000;
}


/*[Native Collaboration page section]
=============================================================================
*/

.native-collaboration-bg {
    background: url(../img/native-collaboration-bg1.jpg) no-repeat;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
}


/*[The Harvesters page section]
=============================================================================
*/


.harvesters-bg {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: url(../img/harvesters_bg1.jpg) no-repeat;
    background-position: center center;
    /*      background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-size: cover;
}

#harvesters_intro {
    background: #fff;
}

.harvest_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
    background: #eee;
}

.harv_content {
    position: relative;
    top: 30%;
    width: 60%;
    margin: 0 auto;
}

.harvest_content_bottom {
    padding-bottom: 250px;

}



/*[blog page ]
==================================================================
*/



.blog_header_main {
    background: url("../img/blog/blog_header_main1.jpg") no-repeat;
    background-size: cover;
}

.blog_heading h2 {
    font-size: 40px;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.blog1 {
    background: url("../img/blog/Blog1_Little_Heaven_in_Coorg_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog2 {
    background: url("../img/blog/Jungle_Safari_Coorg_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog3 {
    background: url("../img/blog/15_Reasons_Why_Visiting_Coorg_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog4 {
    background: url("../img/blog/The_beauty_and_boons_of_organic_farming_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog5 {
    background: url("../img/blog/The_astounding_land_of_beauty_where_hockey_flourishes_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog6 {
    background: url("../img/blog/Everything_You_Need_To_Know_About_Coorg_Festivals_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog7 {
    background: url("../img/blog/Monasteries_in_Coorg_page_banner.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog8 {
    background: url("../img/blog/flavors_and_cuisine_of_Coorg_Page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog9 {
    background: url("../img/blog/A_Gorgeous_Secret_that_Coorg_cannot_keep_anymore-page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog10 {
    background: url("../img/blog/Know_your_cup_of_coffee_before_your_sip_page.jpg") no-repeat;
    background-size: cover;
}

.blog11 {
    background: url("../img/blog/Farm_to_Fork_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog12 {
    background: url("../img/blog/An_Enthralling_Monsoon_Destination_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog13 {
    background: url("../img/blog/Every_Storm_is_followed_by_a_rainbow_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog14 {
    background: url("../img/blog/Taste_of_Kodagu_for_every_palate_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog15 {
    background: url("../img/blog/Coorg_at_its_best_in_November_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog16 {
    background: url("../img/blog/putheri-festival-page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog17 {
    background: url("../img/blog/A_perfect_getaway_at_Sixth_Element_and_a_day_with_cute_&_friendly_Elephants_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog18 {
    background: url("../img/blog/Come_spend_your_valentines_day_at_the_Sixth_Element_page.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog19 {
    background: url("../img/about-us-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.blog_block {
    background: rgb(255, 255, 255);
    overflow: hidden;
    display: block;
    transition: 0.5s;
}

.blog_block:hover {
    box-shadow: 2px 5px 5px #eee;
    cursor: pointer;
}

.blog_block:hover img {
    transform: scale(1.1);
}

.blog_block span {
    font-style: italic;
    font-size: 12px;
    display: block;
}

.blog_block h2 {
    padding: 0px 10px;
    color: #000;
}

.blog_block h2 {
    font-size: 1.5em;
    line-height: 1.3;
}

.blog_block span {
    padding: 10px 10px;
    color: #000;
}

.blog_block p {
    padding: 10px !important;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin-top: 5px;
    border-top: 0px solid #cfba6c;
}

.blog_block a {
    font-size: 13px;
}

.blog_block a span {
    text-transform: capitalize;
}

.blog_block a span.blogbtn {
    /* background: #cfba6c29; */
    font-size: 14px;
    color: #cfba6c;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 0px;
    padding-bottom: 20px;
    padding-left: 15px;
    text-decoration: underline;
}

.blog_block .blog_img_block {
    overflow: hidden;
    background: #e6e9eb;
    position: relative;
    float: left;
    width: 100%;

    margin: 0 auto 15px auto;
    padding: 0;
}

.blog_block img {
    transition: 0.5s;
    width: 100%;
}

.blog_detail h2 {
    padding: 20px 0 5px;
    font-size: 2em;
    color: rgb(48, 47, 47);
}

.blog_detail ul {
    margin: 20px 0;
    padding: 0 50px;
}

.blog_detail li {
    list-style: disc;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}

.blog_detail h3 {
    padding: 20px 0 5px;
    font-size: 1.5em;
    color: rgb(48, 47, 47);
}

.blog_detail span {
    color: #989898;
    font-style: italic;
    font-size: 14px;
}

.blog_detail p {
    font-size: 1em;
    line-height: 1.6;
    padding: 20px 0;
    color: #000;
}

.blog_detail img {
    width: 100%;
}

.blogssec .blog_block img {
    height: 288px !important;
    object-fit: cover;
    width: 100% !important;
}

.blogssec .blog_block p,
.blogssec .blog_block h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*[Blog Side Bar]*/
/*=======left column========*/
.left-column {
    width: 26.8%;
    float: left;
}

.left-column.right-left-column {
    float: right;
}

ul.category-list {
    width: 100%;
    float: left;
    margin: 0px 0px 70px;
    padding: 0px;
}

ul.category-list li {
    list-style: none;
    float: left;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    border-bottom: 1px solid #cacaca;
}

ul.category-list li a {
    color: #242424;
    text-decoration: none;
    padding: 15px;
    display: block;
    margin: -1px 0px;
}

ul.category-list li a:hover,
ul.category-list li a.active-category {
    color: #000;
    background: #f2ae2b;
}

ul.blog-category-cl {
    margin: 0px;
    padding: 0px;
}

ul.blog-category-cl li {
    list-style: none;
    float: left;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}

ul.blog-category-cl li a {
    color: #242424;
    text-decoration: none;
    padding: 8px 17px;
    display: block;
    position: relative;
    line-height: 1.3;
}

ul.blog-category-cl li a.active {
    color: #937b23;
}

ul.blog-category-cl li a:before {
    content: "\f105";
    position: absolute;
    font-family: 'FontAwesome';
    top: 8px;
    left: 0px;
    font-size: 15px !important;
    color: #000;
}

ul.blog-category-cl li a:hover {
    color: #b59f4e;
}

ul.blog-category-cl li a:hover:before {
    color: #b59f4e;
}


/*[Contact page ]
=============================================================================
*/

.contact-bg {
    background: url(../img/contact-bg22.jpg) no-repeat;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
}

.contact-sec-custom {
    background: url(../img/conatct-bg1.jpg) !important;
}

/*[Footer section]
=============================================================================
*/

#footer {
    background: #433502 url(../img/footer-bg2.png);
    text-align: center;
    position: relative;
}

.footer {
    width: 100%;
    background: #9a824d;
    font-size: 17px;
    font-weight: 200;
    text-align: center;
    padding: 15px 0;
    letter-spacing: 0.3px;
}

.contact_cards {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 50px;
    padding: 60px 0 50px;
}

.contact_cards .feature p.text-white {
    margin: 0px;
}

.footerform button.btn.btn--primary2.btn--inside {
    padding: 13px;
    margin-left: -67px;
}

.links h3 {
    font-size: 25px;
    color: #fff;
    padding: 15px 0px;
}

.links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.links li {
    margin: 8px 0 20px;
    text-align: left;
}

.links li a {
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff;
}

.uppercase {
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    background: transparent;
    color: inherit;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 0;
    transition: all 200ms ease-in;
    cursor: pointer;
}

.btn--primary2 {
    background: #b18847;
    color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 8px 16px;
}

.btn--primary2:hover {
    background: #6c7ff2;
}

.btn--primary2:active {
    background: #7f8ff4;
    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.btn--inside {
    margin-left: -56px;
}

.form__field {
    width: 260px;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    padding: 10px 12px;
}


.btn_map {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 50px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #fff;
    color: #fff !important;
    border-radius: 30px;
}

.btn-1 {
    border: 3px solid #fff;
    color: #fff;
}

.btn-1a:hover,
.btn-1a:active {
    color: #0e83cd;
    background: #fff;
}







.card {
    float: left;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.card .menu-content {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.card .menu-content::before,
.card .menu-content::after {
    content: '';
    display: table;
}

.card .menu-content::after {
    clear: both;
}

.card .menu-content li {
    display: inline-block;
}

.card .menu-content a {
    color: #fff;
}

.card .menu-content span {
    position: absolute;
    left: 50%;
    top: 0;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Open Sans';
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.card .card-wrap {
    font-family: 'Playfair Display', serif;
/*    min-height: 440px;*/
    min-height: 340px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.8), 0 15px 12px rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}

.card .card-wrap2 {
    font-family: 'Playfair Display', serif;
/*    min-height: 500px;*/
        min-height: 370px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.8), 0 15px 12px rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}


.card .card-wrap:hover .data {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.card .card-wrap2:hover .data {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.card .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(calc(70px + 1em));
    transform: translateY(calc(70px + 1em));
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transition: 0.4s;
}


.card .data2 {
    position: absolute;
    bottom: 45%;
    width: 100%;
    -webkit-transform: translateY(calc(0px + 8em));
    transform: translateY(calc(0px + 8em));
    /*    transform: translateY(calc(70px + 1em));*/
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transition: 0.4s;
}

.card .text2 {
    height: 100px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 20px;
    opacity: 0;
    transition: 0.4s;
    padding: 0 30px;
    text-shadow: 1px 1px 3px #000;
}

.cot_cards .card .text2 {
    height: 100px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 30px;
    font-size: 20px;
    opacity: 0;
    transition: 0.4s;
    padding: 0 30px;
    text-shadow: 1px 1px 3px #000;
}

.card .data2 .button {
    opacity: 0;
    transition: 0.4s;
    margin: 2em auto 0.5em;
    text-shadow: 1px 1px 3px #000;
}

.card .card-wrap2:hover .title {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: 0.4s;
}

.card .card-wrap2:hover .text2 {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
    transition: 0.4s;
    visibility: 100%;
    opacity: 1;
}

.card .card-wrap2:hover .button {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
    transition: 0.4s;
    background: black;
    color: #fff;
    opacity: 1;
    padding: 10px 16px;
    font-size: 13px;
    width: 150px;
    letter-spacing: 0.5px;
}


.card .data .content {
    padding: 1em;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.card .author {
    font-size: 12px;
}

.card .title {
    margin-top: 10px;
    transition: 0.4s;
}

.card .text {
    height: 60px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 24px;
    text-shadow: 1px 1px 3px #000;
    padding: 20px 0;
}

.card .data .content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;
    padding: 10px;
    text-shadow: 1px 2px 2px #000;

}

.card .data2 .content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 500;
    padding: 10px;
    text-shadow: 1px 2px 2px #000;

}



.about {
    background: url('../img/philos-card2.jpg') center/cover no-repeat;
}

.about:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.philos {
    background: url('../img/philos-card.jpg') center/cover no-repeat;
}

.philos:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.native {
    background: url('../img/nativet-card.jpg') center/cover no-repeat;

}

.native:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.team {
    background: url('../img/team-card.jpg') center/cover no-repeat;
    background-position: 30% 10%;
}

.team:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}


.double {
    background: url('../img/double-cot2.jpg') center/cover no-repeat;
    background-position: 60% 20%;
}

.double:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.single {
    background: url('../img/single-cot1.jpg') center/cover no-repeat;
    background-position: 40% 40%;
}

.single:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}


.kitch-gard {
    background: url('../img/kitch-gard-card.jpg') center/cover no-repeat;
}

.kitch-gard:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.honeymoon {
    background: url('../img/honeymoon-card.jpg') center/cover no-repeat;
}

.honeymoon:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.dw {
    background: url('../img/destination-wedding.jpg') center/cover no-repeat;

}

.dw:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.spa {
    background: url('../img/spa-card.jpg') center/cover no-repeat;
    background-position: 30% 10%;
}

.spa:hover {
    filter: grey;
    -webkit-filter: grayscale(100%);
}

/* Auto Popup */

#harvesters h2 {
    font-size: 4rem;
    line-height: 60px;
}
#facilities .card .card-wrap {
    min-height: 310px !important;
}

/* Popup */

.cd-popup-trigger {
    display: block;


    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50em;

    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 1170px) {
    .cd-popup-trigger {
        /*    margin: 6em auto;*/
    }
}

@media only screen and (max-width: 1466px) {
    .harv_content {
        top: 10%;
    }
}

/* -------------------------------- 

xpopup 

-------------------------------- */
.cd-popup {
    z-index: 99999999;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #3a3a3acc;
    /*    background-color: rgba(94, 110, 141, 0.9);*/
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-popup.is-visible {
    opacity: 1;
    /*    opacity: 0;*/
    visibility: visible;
    /*    visibility: hidden;*/
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
    overflow-y: auto;
    overflow-x: hidden;
}

.cd-popup-container {
    position: relative;
    z-index: 99999999;
    width: 90%;
    /*    max-width: 520px;*/
    max-width: 750px;
    margin: 4em auto;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 20px;
}

.cd-popup-container p {
    padding: 3em 1em;
}

.cd-popup-container .cd-buttons:after {
    content: "";
    display: table;
    clear: both;
}

.cd-popup-container .cd-buttons li {
    float: left;
    width: 50%;
}

.cd-popup-container .cd-buttons a {
    display: block;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #FFF;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.cd-popup-container .cd-buttons li:first-child a {
    background: #fc7169;
    border-radius: 0 0 0 .25em;
}

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
    background-color: #fc8982;
}

.cd-popup-container .cd-buttons li:last-child a {
    background: #b6bece;
    border-radius: 0 0 .25em 0;
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: #c5ccd8;
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    z-index: 99;
    text-indent: 2000px;
}

.cd-popup-container .cd-popup-close::before,
.cd-popup-container .cd-popup-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}

.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}

.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}

.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

/* Responsive Menu*/
.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    /*  overflow: hidden;*/

}

.topnav li {
    float: left;
}

.topnav li a {
    font-family: 'Playfair Display', serif;
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

.main-nav li:hover a {
    background-color: #11111145;
}

li.icon {
    display: none;
}

li.icon a {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.modal-content img.img-small {
    display: none;
}

@media screen and (max-width:680px) {
    .topnav {
        background-color: #333;
    }

    .topnav li:not(:nth-child(0)) {
        display: none;
    }

    li.icon {
        float: right;
        display: block;
    }

    .main-nav {
        display: block;
    }

    .modal-content img.img-small {
        display: block;
    }

    .modal-content img.img-big {
        display: none;
    }

    .about_content h1 {
        font-size: 1em;
    }

    .fac_content h1 {
        font-size: 0.7em;
        padding: 15px 5px;
    }
}

@media screen and (max-width:1030px) {

    .modal-dialog {
        width: 97% !important;
    }
}

@media screen and (max-width:680px) {
    .responsive-nav.responsive {
        position: relative;
        z-index: 99;
        top: 20px;
    }

    .responsive-nav.responsive li.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .responsive-nav.responsive li {
        float: none;
        display: inline;
    }

    .responsive-nav.responsive li a {
        display: block;
        text-align: center;
    }

    .blog_cards {
        display: block;
/*        display: grid;*/
        /* grid-template-columns: repeat(1, auto);*/
        /* grid-gap: 30px;*/
    }
}


@media screen and (max-width:1050px) {
    .cd-section h2 {
        font-size: 3em;

    }

    .slide__text {
        /*        width: 80% !important;*/
        display: inline-block;
    }
}

@media screen and (max-width:1800px) {
    .room-details h1 {
        font-size: 3em;
    }
}

@media screen and (max-width:1510px) {
    .room-details h1 {
        font-size: 2.6em;
        line-height: 1;
    }

    .room-details h1 span {
        text-align: center !important;
    }
}

@media screen and (max-width:1381px) {
    .room-details h1 {
        font-size: 2em;
    }

    .btn--primary2 {
        font-size: 15px !important;
    }
}

@media screen and (max-width:800px) {

    .topnav li a {
        font-size: 12px;
        padding: 12px 8px;
    }
}



@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin: 5em auto;
    }


}

@media only screen and (min-width: 600px) and (max-width: 1050px) {

    .cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .cot_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .blog_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
    }

    .harv_cards {
        padding: 100px 0;
        height: auto;
    }


    .fac_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .cont_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .cont_cards h4 {
        font-size: 45px;
        line-height: 1.3;
    }

    .cont_cards h5 {
        font-size: 35px;
        line-height: 2;
    }

    .cont_cards .address2 {
        background: #fff;
        color: #000;
    }

    .about_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .cottage_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 20px 30px;
    }

    .harvest_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 20px 30px;
    }

    .harv_content {
        top: 0%;
        width: 100%;
    }

    .harvest_content_bottom {
        padding-bottom: 150px;
        background-position: 20% 25%;
    }

    .harvest_content_bottom h2 {
        padding: 20px 0;
    }

    .harvest_content_bottom h4 {
        font-size: 1em;
    }


    .cd-section > div {
        height: auto;
    }

    .cd-section {
        height: auto;
        background-position: center;
        display: inline;
    }

    .contact_cards {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-gap: 20px;
        padding: 50px 0;
    }


}

@media only screen and (min-width: 300px) and (max-width: 600px) {
    .cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 40px 0;
        height: auto;
    }

    .cot_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 40px 0;
        height: auto;
    }

    .harv_cards {
        padding: 80px 0;
        height: auto;
    }

    .harv_cards h2 {
        font-size: 30px;
        line-height: 1.2;
        padding: 20px;
        height: auto;
    }

    .cd-section {
        height: auto;
        background-position: center;
        display: inline;
    }

    .cont_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    .fac_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        height: auto;
    }

    .fac_cards01 {

        height: auto;
    }


    .slide__text-heading img {
        width: 100%;
        padding: 20px 0;
    }

    .menu {
        z-index: 99;
    }

    .about_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 100px 0;
        height: auto;
    }

    #wrapper {
        width: 100% !important;

    }

    #slider-wrap {
        width: 100% !important;
    }


    .philos_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 20px 0px;
    }

    .cottage_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 20px 0px;
    }

    .room-details {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 10px;
        padding: 20px 0px;
    }

    .single-bed h3,
    .double-bed h3 {
        font-size: 2.3rem;
    }

    .single-bed h5,
    .double-bed h5 {
        font-size: 1.5rem;
    }

    .harvest_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 30px;
        padding: 20px 30px;
    }

    .harv_content {
        top: 0%;
        width: 100%;
    }

    .harvest_content_bottom {
        padding-bottom: 150px;
        background-position: 20% 25%;
    }

    .harvest_content_bottom h2 {
        padding: 20px 0;
    }

    .harvest_content_bottom h4 {
        font-size: 1em;
    }


    .cd-section > div {
        height: auto;
    }

    .contact_cards {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-gap: 20px;
        padding: 50px 0;
        text-align: center;
    }

    .feature h3 {
        /*        text-align: center;*/
    }

    .links li,
    .links h3 {
        text-align: center;
    }

}

#fadeandscale,
#fadeandscale2 {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.popup_visible #fadeandscale,
.popup_visible #fadeandscale2 {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.well {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: none;
    margin: 1em;
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    color: #000;
    width: 50% !important;
}

.well h4 {
    font-size: 28px;
    padding: 10px;
}

.well p {
    font-size: 18px;
    padding: 10px;
    line-height: 25px;
}

.example-2 .card-wrap:hover .menu-content span {
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
    opacity: 1;
}

.example-2 .header {
    color: #fff;
    padding: 1em;
}

.example-2 .header::before,
.example-2 .header::after {
    content: '';
    display: table;
}

.example-2 .header::after {
    clear: both;
}

.example-2 .header .date {
    float: left;
    font-size: 12px;
}

.example-2 .menu-content {
    float: right;
}

.example-2 .menu-content li {
    margin: 0 5px;
    position: relative;
}

.example-2 .menu-content span {
    transition: all 0.3s;
    opacity: 0;
}

.example-2 .data {
    color: #fff;
    -webkit-transform: translateY(calc(90px + 4em));
    transform: translateY(calc(100px + 4em));
}

.example-2 .title a {
    color: #fff;
}

.example-2 .button {
    display: block;
    width: 100px;
    /*    margin: 3em auto 1em;*/
    margin: 5em auto 0em;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 2;
    position: relative;
    font-weight: 700;
}

.example-2 .button::after {
    content: '\2192';
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all 0.3s;
}

.example-2 .button:hover::after {
    -webkit-transform: translate(5px, -50%);
    /*    transform: translate(5px, -50%);*/
    transform: translate(-15px, -56%);
    opacity: 1;
}

/*Ui Card For Cottages*/
.grid {
    position: relative;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0 1%;
    min-width: 320px;
    max-width: 480px;
    max-height: 760px;
    width: 98%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    border: 2px solid #fff;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

figure.effect-lily img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    opacity: 0.7;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}

figure.effect-lily figcaption {
    text-align: left;
}

figure.effect-lily figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

figure.effect-lily h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.effect-lily p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
    opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.effect-lily:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}



.cd-section:first-of-type > div {
    background-color: #2b334f;
}

.cd-section:first-of-type > div::before {
    /* alert -> all scrolling effects are not visible on small devices */
    content: '';
    position: absolute;
    width: 100%;
    text-align: center;
    top: 20px;
    z-index: 2;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #6a7083;
}

.cd-section:nth-of-type(2) > div {
    background-color: #2e5367;
}

.cd-section:nth-of-type(3) > div {
    background-color: #267481;
}

.cd-section:nth-of-type(4) > div {
    background-color: #fcb052;
}

.cd-section:nth-of-type(5) > div {
    background-color: #f06a59;
}

[data-animation="parallax"] .cd-section > div,
[data-animation="fixed"] .cd-section > div,
[data-animation="opacity"] .cd-section > div {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}

[data-animation="parallax"] .cd-section:first-of-type > div,
[data-animation="fixed"] .cd-section:first-of-type > div,
[data-animation="opacity"] .cd-section:first-of-type > div {
    /*  background-image: url("../img/hero-bg.jpg");*/

}

[data-animation="parallax"] .cd-section:nth-of-type(2) > div,
[data-animation="fixed"] .cd-section:nth-of-type(2) > div,
[data-animation="opacity"] .cd-section:nth-of-type(2) > div {
    background-image: url("../img/about-bg2.jpg");

}

[data-animation="parallax"] .cd-section:nth-of-type(3) > div,
[data-animation="fixed"] .cd-section:nth-of-type(3) > div,
[data-animation="opacity"] .cd-section:nth-of-type(3) > div {
    background-image: url("../img/private-pool_new1.jpg");

}

[data-animation="parallax"] .cd-section:nth-of-type(4) > div,
[data-animation="fixed"] .cd-section:nth-of-type(3) > div,
[data-animation="opacity"] .cd-section:nth-of-type(3) > div {
    background-image: url("../img/best-resort-bg1.jpg");

}

[data-animation="parallax"] .cd-section:nth-of-type(5) > div,
[data-animation="fixed"] .cd-section:nth-of-type(4) > div,
[data-animation="opacity"] .cd-section:nth-of-type(4) > div {
    background-image: url("../img/cottages1.jpg");

}

[data-animation="parallax"] .cd-section:nth-of-type(6) > div,
[data-animation="fixed"] .cd-section:nth-of-type(5) > div,
[data-animation="opacity"] .cd-section:nth-of-type(5) > div {
    background-image: url("../img/harvesters_bg.jpg");
}

[data-animation="parallax"] .cd-section:nth-of-type(7) > div,
[data-animation="fixed"] .cd-section:nth-of-type(6) > div,
[data-animation="opacity"] .cd-section:nth-of-type(6) > div {
    background-image: url("../img/facilities-bg.jpg");
}

[data-animation="parallax"] .cd-section:nth-of-type(8) > div,
[data-animation="fixed"] .cd-section:nth-of-type(7) > div,
[data-animation="opacity"] .cd-section:nth-of-type(7) > div {
    /*background-image: url("img/contact-bg1.jpg"); */
    background: url("../img/contact-bg1.jpg");
    background-size: cover !important;
}

.contact-section {
    background: url("../img/foot-bg1.jpg") !important;
    background-size: cover !important;
}

[data-animation="parallax"] .cd-section:nth-of-type(9) > div,
[data-animation="fixed"] .cd-section:nth-of-type(8) > div,
[data-animation="opacity"] .cd-section:nth-of-type(8) > div {
    background-image: url("../img/foot-bg1.jpg");
}

@media only screen and (min-width: 1050px) {
    .cd-section h2 {
        /*        font-size: 4rem;*/
        font-size: 5rem;
        line-height: 66px;
        font-weight: 300;
    }

    [data-hijacking="on"] .cd-section {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    [data-hijacking="on"] .cd-section > div {
        visibility: visible;
    }

    [data-hijacking="off"] .cd-section > div {
        opacity: 0;
    }

    [data-animation="rotate"] .cd-section {
        /* enable a 3D-space for children elements */
        -webkit-perspective: 1800px;
        -moz-perspective: 1800px;
        perspective: 1800px;
    }

    [data-hijacking="on"][data-animation="rotate"] .cd-section:not(:first-of-type) {
        -webkit-perspective-origin: center 0;
        -moz-perspective-origin: center 0;
        perspective-origin: center 0;
    }

    [data-animation="scaleDown"] .cd-section > div,
    [data-animation="gallery"] .cd-section > div,
    [data-animation="catch"] .cd-section > div {
        box-shadow: 0 0 0 rgba(25, 30, 46, 0.4);
    }

    [data-animation="opacity"] .cd-section.visible > div {
        z-index: 1;
    }
}
.room-details h1 br {
    display: none;
}
@media only screen and (min-width: 1050px) {
    .cd-section:first-of-type > div::before {
        display: none;
    }
}

@media only screen and (min-width: 1050px) {
    .cd-section > div {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /* Force Hardware Acceleration */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    [data-hijacking="on"] .cd-section > div {
        position: absolute;
    }

    [data-animation="rotate"] .cd-section > div {
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        -o-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}

.cd-vertical-nav {
    /* lateral navigation */
    position: fixed;
    z-index: 1;
    /*    right: 3%;*/
    /*    top: 50%;*/
    right: 3.5%;
    top: 84%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.cd-vertical-nav a {
    display: block;
    height: 40px;
    width: 40px;
    /* image replace */
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    background: url(../img/cd-icon-arrow.svg) no-repeat center center;
}

.cd-vertical-nav a.cd-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-bottom: 10px;
}

.cd-vertical-nav a.inactive {
    visibility: visible;
    /*    visibility: hidden;*/
    opacity: 0;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

@media only screen and (min-width: 1050px) {
    .cd-vertical-nav {
        display: block;
    }
}

.mt-20 {
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.main-nav div.logo img {
    width: 190px;
    position: relative;
    top: -8px;
}

.secpadding {
    padding: 70px 0px;
}

.bg-sec,
.cottagesec {
    background: #f9f9f9;
    position: relative;
}

#activities .cottage_cards p {
    line-height: 26px;
    font-size: 17px;
}

#activities .cottage_cards h3 {
    font-size: 45px;
    margin-bottom: 20px;
}

.cottagesec .container-fluid {
    padding: 0px;
}

ul.cottagetabscustom li:last-child {
    border-right: 0px solid #c9c9c9;
}

ul.cottagetabscustom li {
    padding: 20px 0px !important;
    border-right: 1px solid #c9c9c9;
}

ul.cottagetabscustom li a {
    padding: 15px 20px !important;
    font-size: 20px;
    color: #ad9749;
    font-weight: 500;
    letter-spacing: 0.3px;
}

ul.cottagetabscustom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    border: 1px solid #c9c9c9;
}

a:focus {
    outline: none;
}

.gallerycontents a img {
    width: 100%;
    margin-bottom: 30px;
}

.amenitiesrow img {
    width: 50px;
    margin: 10px 0px;
}

.indexheightcss {
    height: 28vh;
}

@media only screen and (max-width: 992px) {
    .wrapper {
        width: 85% !important;
    }

    .cd-section > div {
        padding: 28px 0px !important;
    }

    .cd-section:first-of-type > div {
        background-color: #ffffff !important;
        padding: 0px 0px !important;
    }

    #cssmenu ul ul li a {
        text-align: center !important;
    }

    .cd-popup-trigger {
        border-radius: 0px !important;
    }

    .main-nav div.logo img {
        width: 145px !important;
        top: 3px !important;
    }

    .cd-section h1,
    .harv_cards h2 {
        font-size: 20px !important;
        line-height: 34px !important;
    }

    .example-2 .data {
        transform: translateY(calc(100px + 2em)) !important;
    }

    .indexheightcss {
        height: 16vh;
    }

    section#contact.cd-section > div {
        padding: 0px 0px !important;
        background-position: center center !important;
    }

    #header {
        height: 400px !important;
        background-attachment: scroll;
        background-position: center;
    }

    .heading1 {
        height: 60vh !important;
    }

    .heading1 h2 {
        font-size: 40px !important;
        font-size: 45px !important;
        top: 65% !important;
    }
	
	 .heading1 h5 {
        font-size: 40px !important;
        font-size: 45px !important;
        top: 75% !important;
    }

    .secpadding {
        padding: 50px 0px;
    }

    .about_cards {
        padding: 0px 0;
    }

    .feature h3,
    .experience h2,
    .philosophy h2 {
        font-size: 34px !important;
    }

    .feature p {
        font-size: 17px;
        line-height: 30px;
    }

    section#about-us #wrapper {
        display: none;
    }

    .footer {
        font-size: 14px !important;
    }

    .footerform button.btn.btn--primary2.btn--inside {
        padding: 16px;
        margin-left: -67px;
        position: relative;
        top: -3px;
    }

    #footer .form__field {
        width: 290px;
    }

    #footer .btn--primary2 {
        font-size: 14px !important;
    }

    .mt-50 {
        margin-top: 0px !important;
    }

    ul.cottagetabscustom {
        display: block;
        margin-bottom: 0px;
        border: 0px solid #c9c9c9;
    }

    ul.cottagetabscustom li {
        padding: 15px 0px !important;
        border-top: 1px solid #c9c9c9;
        border-right: 0px solid #c9c9c9;
        width: 49%;
        display: inline-block;
        text-align: center;
    }

    ul.cottagetabscustom li a {
        padding: 10px 13px !important;
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }

    ul.cottagetabscustom li:last-child {
        /* border-top: 1px solid #c9c9c9; */
        /* border-bottom: 1px solid #c9c9c9; */
        /* width: 100%; */
    }

    .room-details .col-md-4.feature {
        border: none !important;

    }

    .row.amenitiesrow .col-md-3 {
        width: 25%;
    }

    .mt-80 {
        margin-top: 0px !important;
    }

    .room-details table tr td {
        font-size: 17px;
    }

    .room-details h1 br {
        display: none;
    }

    .room-details h1 span.outer {
        position: relative;
        /*        left: -15px;*/
    }

    .room-details h4 {
        padding: 20px 0 0px 0px;
    }

    #activities .parallax-window {
        height: 150vh;
    }

    h2.resp-accordion {
        font-size: 15px !important;
        padding: 18px 10px !important;
    }

    section#portfolio.secpadding.bg-sec {
        margin-top: 0px !important;
    }

    #activities {
        overflow: scroll !important;
        padding-bottom: 80px !important;
    }

    .resp-tabs-container div img {
        width: 100%;
        padding: 10px 30px 30px 20px;
    }

    .resp-tabs-container div h5 {
        font-size: 25px;
        line-height: 36px;
    }

    .mylivechat_buttonround {
        left: 50px !important;
    }

    .mylivechat_buttonround_tooltip {
        visibility: hidden;
    }

    .mylivechat_template_float_right {
        right: 0px;
    }

    .mylivechat_template_float_bottom {
        bottom: 0px;
    }

    section#header.cottage2-bg .heading1 h2 {
        font-size: 40px !important;
        top: 45% !important;
    }

    section#header.cottages2-bg .heading1 {
        height: 45vh !important;
    }

    section#header.cottages2-bg .heading1 h2 {
        font-size: 36px !important;
        top: 85% !important;
    }

    section#singlebedroom .room-details,
    section#doublebedroom .room-details {
        grid-gap: 35px;
    }

    .row.mt-50.gallerycontents {
        margin-top: 50px !important;
    }

    .pr-100 {
        padding-right: 12px !important;
    }
    .booking-form .group > label br, .booking-form1 .group > label br {
    display: none;
}
.cottages-bg .heading1 img {
    left: 22% !important;
}
}
.float{
    position:fixed;
    width:40px;
    height:40px;
    bottom:15px;
    left:20px;
    background-color:#25d366;
    color:#fff;
    border-radius:50px;
    text-align:center;
    font-size:25px;
    z-index:100
}
.float:hover{
    position:fixed;
    width:40px;
    height:40px;
    bottom:15px;
    left:20px;
    background-color:#25d366;
    color:#fff;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100
}
.my-float{
    margin-top:8px;
    line-height:.7
}
.mylivechat_container{
	height:12rem;
}

@media only screen and (max-width: 767px){
#feedback {
    position: fixed;
    bottom: 20px;
    left: 34%!important;
    z-index: 9999;
}
}