/* 
========================================== 
General CSS
========================================== 
*/
@font-face {
    font-family: 'Basis Grotesque Pro';
    src: url('../fonts/BasisGrotesquePro-Bold.woff2') format('woff2'),
        url('../fonts/BasisGrotesquePro-Bold.woff') format('woff'),
        url('../fonts/BasisGrotesquePro-Bold.svg#BasisGrotesquePro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Basis Grotesque Pro';
    src: url('../fonts/BasisGrotesquePro-Regular.woff2') format('woff2'),
        url('../fonts/BasisGrotesquePro-Regular.woff') format('woff'),
        url('../fonts/BasisGrotesquePro-Regular.svg#BasisGrotesquePro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Basis Grotesque Pro';
    src: url('../fonts/BasisGrotesquePro-Light.woff2') format('woff2'),
        url('../fonts/BasisGrotesquePro-Light.woff') format('woff'),
        url('../fonts/BasisGrotesquePro-Light.svg#BasisGrotesquePro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Shelldon';
    src: url('../fonts/Shelldon.woff2') format('woff2'),
        url('../fonts/Shelldon.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,body {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    font-family: 'Basis Grotesque Pro';
    font-weight: normal;
    font-display: block;
    background-color: #ededed;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a:hover,a:focus {
    text-decoration: none;
}
h1 {
        font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    
}
h2 {
    font-size: 19px;
    font-weight: bold;
}
h3 , .heading .hob {
    font-size: 42px;
    font-weight: bold;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 45px;
    font-family: 'Shelldon';
}
h6 {
    font-size: 36px;
    font-family: 'Shelldon';
}
p {
    font-size: 17px;
}
.pad {
    padding: 120px 0;
}
section {
    padding: 80px 0;
}

/*Buttons*/
.custom-btn {
    font-size: 14px;
    color: #ffffff;
    transition: .2s ease all;
    position: relative;
    border: 2px solid #070707;
    display: inline-block;
    height: 40px;
    min-width: 140px;
}
.custom-btn a, .custom-btn input {
    background-color: #d82f18;
    font-size: 14px;
    color: #ffffff;
    transition: .2s ease all;
    position: absolute;
    display: inline-flex;
    min-width: 140px;
    height: 40px;
    align-items: center;
    justify-content: center;
    top: -8px;
    left: -8px;
    cursor: pointer;
}
.custom-btn:hover a, .custom-btn:hover input {
    left: -2px;
    top: -2px;
}
.custom-btn.blue a, .custom-btn.blue input {
    background-color: #0061db;
}

/*Input*/
input[type="text"],input[type="email"],input[type="number"], textarea {
    
}
input:focus, textarea:focus {
    outline: none;
}

/* 
========================================== 
Page CSS
========================================== 
*/

/*Preloader*/
/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
#load {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(https://smallenvelop.com/wp-content/uploads/2014/08/Preloader_11.gif) center no-repeat #fff;
}

/*Homepage CSS*/
header {
    background-color: #ededed;
    transition: .2s ease all;
}
header.fixed {
    z-index: 99;
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
    position: sticky;
    width: 100%;
    top: 0;
}
.header-bar {
    background-color: #ffc86f;
    padding: 12px 0;
    color: #010101;
}
.header-bar p {
    margin-bottom: 0;
    text-align: center;
    position: relative;
    padding: 0 30px;
}
.header-bar p span {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.header-bar p span img {
    width: 20px;
}
.header-bar.none {
    display: none;
}
.navbar {
    justify-content: space-between;
    padding: 0;
}
.navbar-collapse {
    justify-content: center;
}
.navbar-nav .nav-link {
    font-family: 'Shelldon';
    font-size: 35px;
    color: #383838;
    transition: .3s ease all;
}
.navbar-nav .nav-link:hover {
    color: #d82f18;
}
.navbar-nav .nav-item {
    margin: 0 10px;
    position: relative;
}
.navbar-nav .nav-item.active a {
    position: relative;
}
.navbar-nav .nav-item.active a:after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0061db;
}
.navbar-nav .nav-item .submenu {
    position: absolute;
    left: 0;
    top: 60px;
    background-color: #fff;
    opacity: 0;
    height: 0;
    z-index: -1;
    transition: .2s ease all;
    width: 200px;
    overflow: hidden;
}
.nav-item .submenu li {
    padding: 0px 20px;
    margin: 0;
}
.nav-item .submenu li a {
    font-family: 'Shelldon';
    font-size: 28px;
    color: #383838;
    transition: .3s ease all;
}
.nav-item .submenu li a:hover {
    color: #d82f18;
}
.navbar-nav .nav-item .submenu li.active a {
    position: relative;
    padding-bottom: 10px;
}
.navbar-nav .nav-item .submenu li.active a:after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0061db;
}

section.banner {
    padding: 0;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.banner-image {
    height: 500px;
}
.banner {
    position: relative;
}
.banner .owl-dots {
    display: block!important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.banner .owl-dots .owl-dot span {
    border-radius: 0!important;
    width: 15px;
    height: 15px;
    background: #fff;
}
.banner .owl-dots .owl-dot.active span {
    background: #d82f18;
}
.booking {
    padding: 60px 0;
    background-color: #fff;
}
.heading {
    text-align: center;
}
.heading h3 , .heading .hob {
    margin-bottom: 12px;
}
.heading p {
    font-size: 17px;
}
.booking .callus {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -35px;
}
.booking .callus span {
    font-weight: bold;
    color: #2075e0;
    font-size: 17px;
}
.booking .callus a {
    font-weight: bold;
    color: #010101;
    font-size: 17px;
    position: relative;
    margin-left: 15px;
    cursor: pointer;
    transition: .2s ease all;
    z-index: 2;
}
.booking .callus a:nth-child(2):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #d82f18;
    transition: .2s ease all;
    z-index: -1;
}
.booking .callus a:nth-child(3):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #ffc86f;
    transition: .2s ease all;
    z-index: -1;
}
.booking .callus a:hover {
    color: #fff;
}
.booking .callus a:hover:after {
    height: 100%;
}
.booking-form {
    margin-top: 50px;
}
.main-form {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.main-form .form-group {
    margin-bottom: 0;
    width: 20%;
}
.main-form .form-group label,  .main-form .form-group .label{
    display: block;
    margin-bottom: 10px;
}
.main-form .form-group input[type=text], .main-form .form-group input[type=email],.main-form .form-group select {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 10px;
    font-size: 16px;
    background: transparent;
}
.main-form .form-group select:focus {
    outline: none;
}
section .heading {
    margin-bottom: 80px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.heading h2 {
    margin-bottom: 20px;
}
.popular-box .image {
    height: 600px;
}
.popular-box {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.popular-box .package-box {
    position: absolute;
    width: 70%;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
}
.package-box .package-content {
    padding: 30px 10px 10px 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.package-content .text {
    width: 60%;
}
.package-content .know-more a.link {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    color: #010101;
    transition: .2s ease all;
    z-index: 0;
}
.package-content .know-more a.link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #2075e0;
    transition: .2s ease all;
    z-index: -1;
}
.package-content .know-more a:hover {
    color: #fff;
}
.package-content .know-more a:hover:after {
    height: 100%;
}
.popular-slider {
    position: relative;
}
.arrow-right {
    position: absolute;
    right: 15%;
    top: 40%;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: 2px solid #070808;
    z-index: 3;
    cursor: pointer;transition: .2s ease all;
}
.arrow-right svg {
    width: auto;
    height: 100%;
}
.arrow-left {
    position: absolute;
    left: 15%;
    top: 40%;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: 2px solid #070808;
    z-index: 3;
    cursor: pointer;transition: .2s ease all;
}
.arrow-left svg {
    width: auto;
    height: 100%;
}
.arrow-right:hover, .arrow-left:hover {
    background-color: #d82f18;
    border-color: #d82f18;
}
.arrow-left svg path, .arrow-right svg path {
    transition: .2s ease all;
}
.arrow-left:hover svg path, .arrow-right:hover svg path {
    fill:#fff;
}

.visit-text {
    width: 90%;
}
.visit-text h3{
    margin-bottom: 20px;
}
.readmore {
    margin-top: 30px;
}
.visit-image img {
    width: 100%;
}
.about {
    position: relative;
}
.about-bg {
    width: 60%;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 0;
}
.about-image {
    position: relative;
    z-index: 2;
}
.about-image img {
    width: 100%;
}
.about .about_image2 {
    width: 80%;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
}
.about .about_image2 img {
    width: 100%;
}
.about-text {
    width: 90%;
    margin-left: auto;
}
.about-text .at-inner {
    position: relative;
    z-index: 3;
}
.about-text .at-inner .readmore {
    text-align: center;
}
.about-text h3 {
    margin-bottom: 20px;
}
.about-text h2 {
    margin-bottom: 20px;
}
.about-text .image {
    margin-top: 110px;
}
.about-text .image img {
    width: 100%;
}

.activities-slider {
    position: relative;
}
.aslider {
    width: 85%;
    margin: 0 auto;
}
.activities-box .act-img {
    height: 450px;
}
.act-text {
    text-align: center;
    padding: 25px 10px 20px 10px;
    background-color: #fff;
    position: relative;
}
.act-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2075e0;
}
.act-text.red:after {
    background-color: #dd4935;
}
.act-text.yellow:after {
    background-color: #ffc86f;
}
.act-text.grey:after {
    background-color: #b3b3b3;
}
.act-text h5 {
    color: #212529;
    transition: .3s ease all;
}
.activities-box:hover h5 {
    color: #0062db;
}

.activities-slider .arrow-left {
    left: 0;
}
.activities-slider .arrow-right {
    right: 0;
}
.icon-sec {
    margin-top: -60px;
}
.icon-box {
    text-align: center;
    margin-top: 60px;
}
.icon-box .am-icon {
    margin-bottom: 20px;
}
.icon-box .am-icon img {
    height: 53px;
    width: auto;
}
.icon-box .icon-text {
    width: 60%;
    margin: 0 auto;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
}
.icon-sec .book-btn {
    text-align: center;
    margin-top: 50px;
}

.sanluis {
    background-size: 25%;
    background-position: top right;
    
}
.room-outer {
    position: relative;
}
.rooms-slider {
    width: 65%;
    margin: 0 auto;
}
.room-image {
    height: 600px;
}
.room-container {
    position: relative;
}
.room-text {
    position: absolute;
    padding: 60px;
    background-color: #fff;
    bottom: 0;
    left: 50px;
    width: 50%;
    text-align: center;
}
.room-text h4 {
    font-weight: bold;
    margin-bottom: 30px;
    color: #212529;
}
.room-text p {
    margin-bottom: 0;
}
.room-links {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.room-links .book-room {
    margin-left: 30px;
}
.room-links a.link {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    color: #010101;
    transition: .2s ease all;
    z-index: 0;
}
.room-links a.link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #2075e0;
    transition: .2s ease all;
    z-index: -1;
}
.room-links a.link:hover {
    color: #fff;
}
.room-links a.link:hover:after {
    height: 100%;
}
.room-outer .arrow-left {
    left: 0;
}
.room-outer .arrow-right {
    right: 0;
}
.testimonials {
    margin-bottom: 80px;
}
.testimonials-main {
    position: relative;
    margin-bottom: 90px;
}
.test-slider {
    width: 85%;
    margin: 0 auto;
}
.test-icon-left {
    position: absolute;
    left: 0;
    top: -10px;
    width: 60px;
}
.test-icon-right {
    position: absolute;
    right: 0;
    top: -10px;
    width: 60px;
}
.test-details {
    text-align: center;
}
.test-box .test-content {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #999a9a;
}
.test-box .test-details .trip-adv-logo {
    text-align: center;
    margin: 10px 0;
}
.test-box .test-details .trip-adv-logo img {
    height: 35px;
    width: auto;
    margin: 0 auto;
}
.test-box .test-details .name {
    font-size: 22px;
    color: #dd4935;
    font-weight: bold;
}
.test-box .test-details .position {
    font-size: 16px;
    color: #0061db;
    font-weight: bold;
}
.testimonials {
    background-size: 100%;
    background-position: bottom;
    position: relative;
}
.test-bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

section.cta {
    margin-bottom: 50px;
}
.cta-text {
    width: 90%;
}
.cta-text h2 {
    margin-bottom: 20px;
}
.cta-text h3 {
    margin-bottom: 20px;
    font-size: 50px;
}
.cta-text .book-button {
    margin-top: 20px;
}
.cta-image-box {
    position: relative;
}
.cta-image {
    height: 400px;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-image2 {
    height: 240px;
    width: 60%;
    left: 0;
    right: -80px;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
    bottom: -130px;
}
.cta-image-box .box1 {
    position: absolute;
    background-color: #0061db;
    left: 0;
    top: 15px;
    width: 0;
    height: 100px;
    transition: .3s ease all;
}
.cta-image-box .box1.aos-animate {
    width: 50%;
}
.cta-image-box .box2 {
    position: absolute;
    background-color: #dd4935;
    right: 0;
    bottom: -50px;
    height: 0;
    width: 100px;
    transition: .3s ease all;
}
.cta-image-box .box2.aos-animate {
    height: 80%;
}
.cta-image-box .box3 {
    position: absolute;
    background-color: #ffc86f;
    left: 90px;
    bottom: -70px;
    width: 0;
    height: 100px;
    transition: .3s ease all;
}
.cta-image-box .box3.aos-animate {
    width: 50%;
}

.newsform {
    width: 100%;
    margin: 0 auto;
}
.newsform input[type=text]{
    width: 100%;
    border: 2px solid #070808;
    background-color: #fff;
    padding: 15px 15px;
    text-align: center;
}
.newsform  input[type=email] {
    width: 100%;
    border: 2px solid #070808;
    background-color: #fff;
    padding: 12px 15px;
    text-align: center;
}
.newsform .book-room {
    text-align: center;
    margin-top: 20px;
}

footer.bg-img {
    background-color: #070808;
    background-size: contain;
    padding-top: 70px;
    background-position: left;
}
.footer-logo {
    text-align: center;
}
.footer-logo img {
    max-width: 150px;
}
.footer-columns .f-column {
    margin-top: 30px;
}
.f-column h6 {
    font-size: 20px;
    color: #fff;
    font-family: 'Basis Grotesque Pro';
}
.f-column ul {
    margin-top: 20px;
}
.f-column ul li {
    margin-bottom: 6px;
}
.f-column ul li a {
    color: #fff;
    transition: .2s ease all;
    padding: 0;
}
.f-column ul li a:hover {
    color: #ffc86f;
}
.f-column .address {
    padding-left: 25px;
    position: relative;
    margin-top: 20px;
}
.f-column .address .icon {
    position: absolute;
    top: 6px;
    left: 0;
}
.f-column .address .icon img {
    max-width: 12px;
}
.f-column .address .content {
    color: #fff;
    font-size: 16px;
}
.f-column .address .content:last-child {
    margin-top: 15px;
}
.f-column .address .content span {
    font-weight: bold;
    display: block;
}
.f-column .address .content a {
    color: #fff;
    font-weight: 300;
    transition: .2s ease all;
}
.f-column .address .content a:hover {
    color: #ffc86f;
}
.f-column .f-logos ul li {
    margin-bottom: 50px;
}
.f-column .f-logos ul li:last-child {
    margin-bottom: 0;
}
.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 10px;
}
.footer-bottom .social ul li {
    display: inline-block;
    margin-right: 20px;
}
.footer-bottom .social ul li svg {
    height: 18px;
    width: auto;
}
.footer-bottom .social ul li svg path {
    fill:#ffc86f;
    transition: .2s ease all;
}
.footer-bottom .social ul li a:hover svg path {
    fill:#dd4935;
    transition: .2s ease all;
}
.footer-bottom .madewith p {
    color: #fff;
    margin-bottom: 0;
}
.footer-bottom .madewith p a {
    color: #fff;
    transition: .2s ease all;
    font-size: 15px;
}
.footer-bottom .madewith p a:hover {
    color: #ffc86f;
    transition: .2s ease all;
}

/*Offers Page CSS*/
.packages .special-box {
    background-color: #fff;
    text-align: center;
}
.special-box .special-image .bg-img {
    height: 250px;
}
.special-box .special-content {
    padding: 30px 0;
    border-bottom: 5px solid #d82f18;
}
.special-box .special-content h6 {
    margin-bottom: 20px;
}
.packages .row .col-md-4:nth-child(2) .special-content {
    border-color: #ffc86f;
}
.packages .row .col-md-4:nth-child(3) .special-content {
    border-color: #b3b3b3;
}
.special-packages {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}
.package-slider {
    position: relative;
}
.package-slider .arrow-left {
    top: 54%;
    left: -80px;
}
.package-slider .arrow-right {
    top: 54%;
    right: -80px;
}
.offering-images {
    position: relative;
    margin-bottom: 250px;
}
.offering-images .off-image1 {
    height: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 80%;
}
.offering-images .off-image2 {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 60%;
    margin-left: auto;
    position: absolute;
    right: 50px;
    bottom: -120px;
}
.offering-images .off-box {
    position: absolute;
    background-color: #dd4935;
    left: 150px;
    bottom: -170px;
    width: 130px;
    height: 0px;
    transition: .8s ease all;
    z-index: -1;
}
.offering-images .off-box.aos-animate {
    height: 300px;
}
.offering-text .text-box {
    margin: 30px 0;
}
.offering-text .text-box .number {
    font-size: 26px;
    font-weight: bold;
    color: #0061db;
}
.offering-text .text-box:nth-child(2) .number {
    color: #dd4935;
}
.offering-text .text-box:nth-child(3) .number {
    color: #ffc86f;
}
.offering-text .text-box h4 {
    font-weight: bold;
    margin-bottom: 20px;
}
.terms {
    background-color: #fff;
}
.conditions ul li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}
.conditions ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: #d82f18;
}
.conditions ul li:last-child {
    margin-bottom: 0;
}
.heading-btn {
    margin-top: 40px;
}


.gallery .tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.gallery .tab li {
    font-size: 22px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: .2s ease all;
    margin-right: 20px;
}
.gallery .tab li:hover {
    color: #0061db;
}
.gallery .tab li.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #0061db;
    bottom: -5px;
    left: 0;
}
.tabcontent {
    display: none;
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.gallery-box {
    margin-bottom: 30px;
}
.gallery-box .gall-image {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.tabcontent .load-more {
    margin-top: 40px;
}
.inner-banner {
    height: 500px;
}
.about-box .about-image {
    width: 90%;
}
.about-box .about-image .image {
    height: 550px;
}
.about-right-image {
    margin-top: 40px;
}
.about-right-image .image {
    height: 300px;
}
.about-main .other {
    margin-top: 150px;
}
.about-main .other .text h3{
    margin-bottom: 20px;
}
.about-main .other .image {
    width: 85%;
    margin-left: auto;
}
.about-main .other .image img {
    width: 100%;
}
.about-main .other .load-more {
    margin-top: 80px;
}
#map {
    margin-top: 80px;
}
.gallery .load-more {
    margin-top: 40px;
}

/*Amenities Page CSS*/
.amen-sections {
    margin-top: 100px;
}
.amenities .about-box .left {
    width: 90%;
}
.amenities .about-box .right {
    width: 90%;
    margin-left: auto;
}
.amenities .about-box .text-center {
    margin-top: 50px;
}
.amenities .amen-image {
    width: 90%;
}
.amen-image .image {
    height: 380px;
}
.amenities .amen-text {
    width: 70%;
    margin: 0 auto;
}
.amenities .amen-text span {
    font-size: 45px;
    font-family: 'Shelldon';
}
.amenities .amen-text h4 {
    font-weight: bold;
    margin-bottom: 10px;
}
.zigzag {
    width: 60%;
    margin: -10px auto;
    z-index: -1;
    position: relative;
}
.zigzag img {
    width: 100%;
}
.amen-sections>div:nth-child(even) .amen-image {
    margin-left: 0;
}
.amen-sections>div:nth-child(odd) .amen-image {
    margin-left: auto;
}
.amen-sections>div .row .amen-text .amen-button {
    opacity: 0;
    transition: .2s ease all;
    margin-top: 30px;
}
.amen-sections>div .row:hover .amen-text .amen-button {
    opacity: 1;
    transition: .2s ease all;
}
.amen-sections>div .row {
    border: 2px solid transparent;
    cursor: pointer;
    transition: .3s ease all;
}
.amen-sections>div .row:hover {
    border: 2px solid #000;
    background-color: #fff;
}

/*Contact Page CSS*/
.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact-info .info {
    position: relative;
    padding-left: 30px;
}
.contact-info .info span {
    position: absolute;
    left: 0;
    top: 4px;
}
.contact-info .info .top {
    font-weight: bold;
    color: #010101;
    display: inline-block;
    border-bottom: 2px solid #d82f18;
}
.contact-info .info ul li {
    display: inline-block;
}
.contact-info .info ul.phone li a {
    font-size: 16px;
    color: #ffffff;
    background-color: #0061db;
    padding: 5px 10px;
    cursor: pointer;
}
.contact-info .info ul.mail li a {
    font-size: 16px;
    color: #ffffff;
    background-color: #ffc86f;
    padding: 5px 10px;
    cursor: pointer;
}
.reach .position {
    width: 80%;
    margin: 0 auto;
    text-align: center
}
.reach .position h3 {
    margin-bottom: 20px;
    color: #d82f18;
}
.reach .position .sign {
    text-align: center;
}
.reach .position.right h3 {
    color: #0061db;
}
.contact-form {
    margin-top: 100px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.contact-form .form-group {
    margin-bottom: 60px;
}
.contact-form .form-group label {
    width: 100%;
    font-size: 15px;
    color: #000000;
}
.contact-form .form-group input[type=text], .contact-form .form-group textarea, .contact-form .form-group input[type=email] ,.contact-form .form-group input[type=tel]{
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background-color: transparent;
    padding: 5px 10px;
}
.contact-form .form-group.text-center {
    margin-bottom: 0px;
}
.contact-form h3 {
    text-align: center;
    margin-bottom: 50px;
}

/*Activities Page CSS*/

.activity-heading {
    padding-bottom: 0;
}
.act-main {
    width: 80%;
}
.act-main .top {
    margin-bottom: 30px;
}
.act-main .top h3 {
    margin-bottom: 20px;
}
.act-main .top p {
    font-size: 15px;
}
.act-main .sub-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.act-main .sub-content .content {
    width: 40%;
}
.act-main .sub-content .content .content-heading {
    border-bottom: 1px solid #cacbcc;
}
.sub-content .content {
    margin-bottom: 40px;
}
.sub-content .content .content-heading p {
    font-size: 18px;
}
.sub-content .content .content-heading p.bold {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}
.sub-content .content .content-heading p.bold a {
    color: initial;
}
.sub-content .content-para {
    margin-top: 20px;
}
.act-image-box {
    position: relative;
}
.act-slider .image {
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.act-image-box .act-bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: #2075e0;
    right: -30px;
    bottom: -30px;
}
.act-image-box .owl-dots .owl-dot span {
    border-radius: 0;
    background-color: #fff;
}
.act-image-box .owl-dots .owl-dot.active span {
    background-color: #064da7;
}
.activities .container-fluid .activities-box {
    margin-bottom: 150px;
}
.activities .container-fluid .activities-box:last-child {
    margin-bottom: 0px;
}
.activities .container-fluid .activities-box:nth-child(even) .act-bg {
    right: auto;
    left: -30px;
}
.activities .container-fluid .activities-box:nth-child(even) .act-main {
    margin-left: auto;
}
.activities .container-fluid .activities-box:nth-child(2) .act-bg {
    background-color: #d82f18;
}
.activities .container-fluid .activities-box:nth-child(3) .act-bg {
    background-color: #ffc86f;
}
.activities .container-fluid .activities-box:nth-child(4) .act-bg {
    background-color: #b3b3b3;
}
.activities .container-fluid .activities-box:nth-child(2) .owl-dot.active span {
    background-color: #ad1e0b;
}
.activities .container-fluid .activities-box:nth-child(3) .owl-dot.active span {
    background-color: #cd902f;
}
.activities .container-fluid .activities-box:nth-child(4) .owl-dot.active span {
    background-color: #797979;
}
.owl-theme .owl-dots .owl-dot:focus {
    outline: none;
}

/*Policy Page CSS*/

.policies .policy-para {
    margin-bottom: 40px;
}
.policies .policy-para h4 {
    font-weight: bold;
    margin-bottom: 20px;
}

/*Guest Rooms CSS*/

.grooms-box {
    background-color: #fff;
    width: 92%;
    border-bottom: 5px solid #d82f18;
    margin-top: 80px;
}
.grooms-box .groom-slider .g-slider {
    position: relative;
}
.groom-slider .g-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 20px;
}
.grooms-box .groom-slider .g-image {
    height: 410px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.grooms-box .groom-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.g-slider .owl-dots {
    display: block!important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.g-slider .owl-dots .owl-dot span {
    border-radius: 0!important;
    width: 15px;
    height: 15px;
    background: #fff;
}
.g-slider .owl-dots .owl-dot.active span {
    background: #d82f18;
}
.groom-text {
    padding: 40px 30px 10px 30px;
}
.groom-text .groom-content {
    width: 60%;
}
.groom-text .groom-content h3 {
    margin-bottom: 15px;
    color: #212529;
}
.guest-rooms .row {
    align-items: stretch;
}
.guest-rooms .last-room {
    padding-top: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guest-rooms .last-room img {
    width: 50%;
    transition: .3s ease all;
}
.guest-rooms .last-room img.aos-animate {
    transform: rotate(-45deg);
}
.guest-rooms .row .col-lg-6:nth-child(even) .grooms-box {
    margin-left: auto;
}
.guest-rooms .row .col-lg-6:nth-child(2) .grooms-box{
    border-bottom-color: #ffc86f;
}
.guest-rooms .row .col-lg-6:nth-child(3) .grooms-box {
    border-bottom-color: #0061db;
}
.guest-rooms .row .col-lg-6:nth-child(4) .grooms-box {
    border-bottom-color: #b3b3b3;
}
.guest-rooms .row .col-lg-6:nth-child(5) .grooms-box {
    border-bottom-color: #d82f18;
}
.guest-rooms .row .col-lg-6:nth-child(2) .grooms-box .owl-dot.active span {
    background-color: #ffc86f;
}
.guest-rooms .row .col-lg-6:nth-child(3) .grooms-box .owl-dot.active span {
    background-color: #0061db;
}
.guest-rooms .row .col-lg-6:nth-child(4) .grooms-box .owl-dot.active span {
    background-color: #b3b3b3;
}
.guest-rooms .row .col-lg-6:nth-child(5) .grooms-box .owl-dot.active span {
    background-color: #d82f18;
}
.owl-theme .owl-dots .owl-dot:focus {
    outline: none;
}
.inroom-amenities .book-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.inroom-amenities .book-btn .custom-btn {
    margin: 0 20px;
}
section.include {
    background-color: #fff;
}
.include .include-point {
    padding-left: 22px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.include .include-point:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #d82f18;
}
.include-heading {
    width: 90%;
    margin-left: auto;
}
.include-heading h3 {
    margin-bottom: 20px;
}
.guestroom-include .include-heading {
    margin-left: 0;
}
.include-button {
    text-align: center;
    margin-top: 60px;
}
.package-slider .room-inn {
    position: relative;
}
.room-inn .owl-dots {
    display: block!important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}
.room-inn .owl-dots .owl-dot span {
    border-radius: 0!important;
    width: 15px;
    height: 15px;
    background: #fff;
}
.room-inn .owl-dots .owl-dot.active span {
    background: #d82f18;
}




/*Media Queries*/
@media(min-width:1600px){
    .container-fluid {
        padding: 0 100px;
    }
}
@media (max-width: 1700px) {
    
}

@media (max-width: 1500px) {
    .container-fluid {
        padding: 0 40px;
    }
    h5 {
        font-size: 40px;
    }
    h2 {
        font-size: 45px;
    }
    h3 , .heading .hob {
        font-size: 38px;
    }
    .heading h2 {
        margin-bottom: 15px;
    }
    .heading h1{
        margin-bottom: 15px;
        }
    .navbar-nav .nav-link {
        font-size: 30px;
    }
    .arrow-right {
        right: 10%;
    }
    .arrow-left {
        left: 10%;
    }
    .popular-box .package-box {
        width: 75%;
    }
    .package-box .package-content .book-button {
        margin-left: 20px;
    }
    .activities-box .act-img {
        height: 300px;
    }
    .icon-box .am-icon img {
        height: 40px;
    }
    .rooms-slider {
        width: 70%;
    }
    .room-text {
        padding: 50px;
    }
    .test-bg {
        top: 80px;
    }
    .offering-images .off-image1 {
        height: 580px;
    }
    .offering-images .off-image2 {
        height: 260px;
    }
    .gallery .tab li {
        font-size: 20px;
    }
    .contact-info {
        margin-top: 30px;
    }
    .act-slider .image {
        height: 320px;
    }
    .act-image-box {
        width: 90%;
    }
    .activities .container-fluid .activities-box:nth-child(even) .act-image-box {
        margin-left: auto;
    }
    .grooms-box .groom-slider .g-image {
        height: 380px;
    }
    .testimonials {
        margin-bottom: 20px;
    }
}

@media (max-width: 1400px) {
    
}

@media (max-width: 1300px) {
    .navbar-nav .nav-link {
        font-size: 26px;
    }
    .popular-box .package-box {
        width: 90%;
    }
    .popular-box .image {
        height: 500px;
    }
    .icon-box .icon-text {
        width: 80%;
    }
    .room-text h4 {
        margin-bottom: 20px;
    }
    .room-image {
        height: 460px;
    } 
    .test-slider {
        width: 80%;
    }
    .test-bg {
        top: 140px;
    }
    .package-slider {
        width: 85%;
        margin: 0 auto;
    }
    .offering-images .off-image1 {
        height: 540px;
    }
}

@media (max-width: 1200px) {
    h2 {
        font-size: 42px;
    }
    .navbar-brand img {
        width: 80px;
    }
    .navbar-nav .nav-item {
        margin: 0 5px;
    } 
    .navbar-nav .nav-link {
        font-size: 18px;
    }
    .banner-image {
        height: 400px;
    }
    .booking .callus {
        margin-top: 0;
    }
    section {
        padding: 60px 0;
    }
    section .heading {
        width: 90%;
        margin-bottom: 50px;
    }
    .rooms-slider {
        width: 80%;
    }
    .cta-image {
        height: 340px;
    }
    .footer-logo img {
        max-width: 120px;
    }
    .f-column .f-logos ul li img {
        max-width: 100px;
    }
    .special-box .special-image .bg-img {
        height: 200px;
    }
    .conditions ul li {
        font-size: 18px;
    }
    .gallery-box .gall-image {
        height: 270px;
    }
    .inner-banner {
        height: 350px;
    }
    .about-right-image .image {
        height: 270px;
    }
    .amenities .amen-text {
        width: 80%;
    }
    .contact-form {
        width: 60%;
    }
    .act-slider .image {
        height: 260px;
    }
    .act-image-box .act-bg {
        height: 240px;
    }
    .act-main {
        width: 85%;
    }
    .sub-content .content .content-heading p {
        font-size: 16px;
    }
    .grooms-box .groom-slider .g-image {
        height: 270px;
    }
    .grooms-box {
        width: 98%;
        margin-top: 60px;
    }
    .testimonials {
        margin-bottom: 0px;
    }
}
@media(min-width:992px){
    .navbar-nav .nav-item:hover .submenu {
        opacity: 1;
        height: auto;
        z-index: 3;
    }
}
@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 32px;
    }
    h5 {
        font-size: 35px;
    }
    h6 {
        font-size: 30px;
    }
    p {
        font-size: 15px;
    }
    .container-fluid {
        padding: 0 20px;
    }
    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 18px;
        padding: 0;
    }
    .navbar-toggler:focus {
        outline: none;
    }
    .navbar-toggler img {
        width: 100%;
    }
    .header-button {
        position: absolute;
        top: 15px;
        right: 80px;
    }
    .navbar-nav .nav-link {
        font-size: 24px;
        text-align: right;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid #ffc76f;
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-item .submenu {
        position: relative;
        display: none;
        top: -6px;
        padding: 0 10px;
        width: 100%;
        text-align: right;
        background-color: transparent;
    }
    .navbar-nav .nav-item .submenu a {
        font-size: 22px;
    }
    .navbar-nav .submenu.active {
        opacity: 1;
        height: auto;
        z-index: 3;
        display: block;
    }
    .custom-btn {
        min-width: 120px;
    }
    .custom-btn a, .custom-btn input {
        min-width: 120px;
    }
    .banner .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }
    .banner-image {
        height: 360px;
    }
    .booking .callus {
        margin-top: 30px;
    }
    .booking-form {
        margin-top: 20px;
    }
    .heading p {
        font-size: 15px;
    }
    .arrow-right {
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .arrow-left {
        left: 20px;
        width: 40px;
        height: 40px;
    }
    .visit .row {
        flex-direction: column-reverse;
    }
    .visit-image {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .visit-image img {
        width: 60%;
    }
    .about-text {
        width: 100%;
        margin-top: 30px;
    }
    .about-text .image {
        margin-top: 40px;
    }
    .aslider {
        width: 85%;
    }
    .activities-slider .arrow-left {
        left: 0px;
    }
    .activities-slider .arrow-right {
        right: 0px;
    }
    .testimonials {
        margin-top: 50px;
    }
    .test-box .test-content {
        font-size: 20px;
    }
    .test-icon-left, .test-icon-right {
        width: 40px;
    }
    .cta .row {
        flex-direction: column-reverse;
    }
    .cta-text {
        margin-top: 160px;
        width: 100%;
        text-align: center;
    }
    section.cta {
        margin-bottom: 0;
    }
    .newsform {
        width: 70%;
    }
    footer.bg-img {
        padding-top: 40px;
    }
    .footer-logo img {
        max-width: 100px;
    }
    .f-column h6 {
        font-size: 18px;
    }
    .f-column .f-logos ul li img {
        max-width: 80px;
    }
    .f-column .f-logos ul li {
        margin-bottom: 30px;
    }
    .gallery .tab li {
        font-size: 16px;
    }
    .gallery-box .gall-image {
        height: 210px;
    }
    .about-box .about-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-main .other {
        margin-top: 70px;
    }
    .about-main {
        padding-bottom: 0;
    }
    #map {
        margin-top: 0;
    }
    .amenities .amen-text {
        width: 90%;
        padding: 30px 0;
    }
    .amenities .amen-image {
        margin: 0 auto;
        width: 100%;
    }
    .amen-sections>div:nth-child(even) .amen-image {
        margin-left: auto;
    }
    .amen-sections>div:nth-child(odd) .row {
        flex-direction: column-reverse;
    }
    .amen-sections>div .row {
        background-color: #fff;
        border: none;
    }
    .amen-sections>div .row .amen-text .amen-button {
        opacity: 1;
    }
    .contact-info .info ul li {
        margin-bottom: 8px; 
    }
    .reach .position {
        width: 100%;
    }
    .contact-form {
        width: 80%;
    }
    .activities .container-fluid .activities-box:nth-child(odd) .row {
        flex-direction: column-reverse;
    }
    .act-image-box {
        margin: 0 auto 70px auto;
    }
    .act-main {
        width: 90%;
        margin: 0 auto;
    }
    .activities .container-fluid .activities-box {
        margin-bottom: 90px;
    }
    .grooms-box {
        width: 100%;
    }
    .guest-rooms .last-room img {
        width: 40%;
    }
    .newsform input[type=text], .newsform input[type=email] {
        margin-bottom: 10px;
    }
    .amenities .about-box .left, .amenities .about-box .right {
        width: 100%;
    }
    .popular-box .package-box {
        width: 100%;
        position: relative;
    }
    .popular-box .image {
        height: 350px;
    }
    .package-box .package-content {
        padding: 30px 20px;
        flex-direction: column;
    }
    .package-box .package-content .book-button {
        position: absolute;
        top: 40px;
        right: 20px;
    }
    .room-text {
        padding: 30px;
        width: 50%;
        left: 0;
    }
    .header-bar p {
        padding: 0 15px;
    }
    .header-bar p span img {
        width: 15px;
    }
}

@media (max-width: 767px) {
    .booking {
        padding: 40px 0;
    }
    .main-form {
        flex-direction: column;
        margin-top: 30px;
    }
    .main-form .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
    .main-form .form-group label,.main-form .form-group .label {
        margin-bottom: 0;
    }
    section .heading {
        width: 100%;
    }
    h2 {
        font-size: 30px;
    }
    h3 , .heading h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    .popular-box .package-box {
        position: relative;
        width: 100%;
    }
    .package-box .package-content {
        padding: 20px;
        flex-direction: column;
    }
    .package-content .text {
        width: 100%;
    }
    .package-box .package-content .book-button {
        margin-left: 0;
        margin-top: 30px;
    }
    .popular-box .image {
        height: 220px;
    }
    .visit-image img {
        width: 90%;
    }
    section.activities {
        padding-top: 0;
    }
    .room-text {
        position: relative;
        width: 100%;
        left: 0;
        padding: 30px;
    }
    .room-image {
        height: 260px;
    }
    .room-links {
        justify-content: space-around;
        padding: 20px 0;
    }
    .test-bg {
        display: none;
    }
    .testimonials-main {
        margin-bottom: 0;
    }
    .cta-image {
        height: 260px;
    }
    .cta-image2 {
        height: 180px;
    }
    .newsform {
        width: 100%;
    }
    footer.bg-img {
        margin-top: 0;
    }
    .footer-logo {
        text-align: left;
    }
    .footer-bottom {
        display: block;
    }
    .social {
        margin-bottom: 15px;
    }
    .madewith {
        margin-bottom: 15px;
    }
    .packages .special-box {
        margin-bottom: 30px;
    }
    .special-packages {
        padding-bottom: 0;
    }
    .package-slider .arrow-right {
        top: auto;
        bottom: -70px;
        right: 0;
    }
    .special-packages {
        padding-bottom: 80px;
    }
    .package-slider {
        width: 100%;
    }
    .package-slider .arrow-left {
        top: auto;
        bottom: -70px;
        left: 0;
    }
    .gallery .tab {
        flex-direction: column;
    }
    .gallery .tab li {
        margin-bottom: 15px;
    }
    .about-box .about-image .image {
        height: 330px;
    }
    .about-main .other .load-more {
        margin-top: 0;
    }
    .about-main .other .image {
        margin: 30px auto;
    }
    .amen-image .image {
        height: 260px;
    }
    .zigzag {
        width: 90%;
    }
    .amenities .amen-text span {
        font-size: 30px;
        line-height: initial;
    }
    .contact-info {
        flex-direction: column;
    }
    .contact-info .info {
        margin-bottom: 20px;
    }
    .reach .position.right {
        margin-top: 60px;
    }
    .contact-form {
        width: 90%;
        margin-top: 60px;
    }
    .reach .position p {
        margin-bottom: 0;
    }
    .contact-form .form-group {
        margin-bottom: 40px;
    }
    .act-main .sub-content {
        flex-direction: column;
    }
    .act-main .sub-content .content {
        width: 100%;
    }
    .grooms-box .groom-text {
        flex-direction: column;
    }
    .groom-text .groom-content {
        width: 100%;
        margin-bottom: 10px;
    }
    .include .row {
        flex-direction: column-reverse;
    }
    .include-heading {
        width: 100%;
        margin-bottom: 30px;
    }
    .main-form {
        align-items: center;
    }
    .arrow-left {
        left: 10px;
        width: 20px;
        height: 20px;
        padding: 0px;
        border: none;
    }
    .arrow-right {
        right: 10px;
        width: 20px;
        height: 20px;
        padding: 0px;
        border: none;
    }
    .package-box .package-content .book-button {
        bottom: 15px;
        right: 15px;
        margin: 0;
        top: auto;
    }
    .aslider {
        width: 80%;
    }
}
@media(max-width:400px){
    .header-button .custom-btn , .header-button .custom-btn a {
        min-width: 100px;
        height: 30px;
    }
    .package-box .package-content .book-button {
        bottom: 0;
        right: 0;
        margin: 0;
        top: auto;
        position: relative;
        margin-top: 20px;
    }
}
/*Blog Page CSS*/

section.newsletter .heading {
    margin-bottom: 40px;
}
.blog_banner .inner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.blog_banner .inner-banner .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}
.blog_banner_contents {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 40px 20px;
}
.blog_tag {
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
}
.blog_banner_contents h4 {
    margin-bottom: 20px;
}
.blog_knowmore a.link {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    color: #010101;
    transition: .2s ease all;
    z-index: 0;
}
.blog_knowmore a.link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #2075e0;
    transition: .2s ease all;
    z-index: -1;
}
.blog_knowmore a.link:hover:after {
    height: 100%;
}
.blog_knowmore a.link:hover{
    color: #fff;
}
.blog_main {
    padding-bottom: 0;
}
.blog_main .special-image .bg-img {
    height: 350px;
}
.blog_main .special-content {
    padding: 30px 0 60px 0;
}
.blog_main .blog_box {
    margin-bottom: 40px;
}
.blog_box .blog_image {
    position: relative;
}
.blog_box .blog_image .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.5);
    transition: .3s ease all;
    opacity: 0;
}
.blog_box:hover .blog_image .overlay {
    opacity: 1;
}
.blog_box .blog_image .bg-img {
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.blog_box .blog_content {
    padding: 20px 0 30px 0;
}
.blog_box .blog_content h6 {
    font-family: 'Basis Grotesque Pro';
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 20px;
    color: #212529;
}
.blog_box .blog_content h6:hover {
    color: #2075e0;
}
h6.blog_h6 {
    font-family: 'Basis Grotesque Pro';
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 20px;
}
.blog_loadmore {
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #d7d7d7;
    padding-top: 30px;
}
.bloginner_content .blog_heading {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 0px;
    border-bottom: 1px solid #b7b7b7;
}
.blog_heading .published {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog_heading .published .date {
    font-size: 12px;
    margin: 10px;
    font-weight: 600;
}
.blog_heading .published .time {
    font-size: 12px;
    margin: 10px;
    font-weight: 600;
}
.blog_inner {
    padding-bottom: 0;
}
.blog_inner .bloginner_content {
    width: 70%;
    margin: 0 auto;
}
.blog_innstart {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
}
.blog_innstart .b_heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 40px;
}
.blog_innstart .blog_images {
    margin: 30px 0;
    text-align: center;
}
.blog_innstart .blog_images img {
    width: 100%;
}
.blog_innstart ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
.blog_innstart ul {
    margin-bottom: 30px;
}
.blog_innstart ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #d82f18;
    border-radius: 50%;
}
.recent_blogs {
    margin-top: 50px;
}
.recent_blogs .recent_heading h6 {
    text-align: center;
    margin-bottom: 30px;
}
section.white {
    background-color: #fff;
}
.gallery_tour {
    margin-top: 60px;
}
.gallery_tour iframe {
    height: 400px;
}



@media(max-width:1500px){
    .blog_box .blog_content h6 {
        font-size: 25px;
        margin-bottom: 12px;
    }
}
@media(max-width:1300px){
    .blog_box .blog_image .bg-img {
        height: 300px;
    }
}
@media(max-width:1200px){
    .blog_banner_contents {
        width: 60%;
    }
    .blog_inner .bloginner_content {
        width: 100%;
    }
    .bloginner_content .blog_heading {
        padding-bottom: 20px;
    }
    .gallery_tour iframe {
        height: 350px;
    }
}
@media(max-width:991px){
    .blog_banner_contents {
        width: 80%;
    }
    .blog_box .blog_image .bg-img {
        height: 210px;
    }
}
@media(max-width:767px){
    .blog_banner_contents {
        width: 100%;
    }
    .blog_tag {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .blog_box .blog_content h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .blog_knowmore a.link {
        font-size: 14px;
    }
    .blog_main .blog_box {
        margin-bottom: 20px;
    }
    .blog_loadmore {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}

.newsform .row>div {
    margin: 0 5px;
}
.newsform .row {
    align-items: flex-end;
}
.newsform  .book-room p {
    display: none;
}
.newsform input[type=text] {
    padding: 12px 15px;
}
.newsform .book-room {
    margin-left: 10px;
}
#nav-icon3 {
  width: 35px;
  height: 25px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #d82f18;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 11px;
}

#nav-icon3 span:nth-child(4) {
  top: 22px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.footer-columns .f-column .f-logos .textwidget p {
    display: none;
}
.f-column .f-logos .textwidget ul li:nth-child(1) a img {
    width: auto;
    height: 110px;
}
.f-column .f-logos .textwidget ul li br {
    display: none;
}
@media(max-width:1200px){
    .f-column .f-logos .textwidget ul li:nth-child(1) a img {
        height: auto;
    }
    .f-column .f-logos ul li {
        margin-bottom: 30px;
        
    }
}
@media(max-width:991px){
    .newsform .book-room {
        margin-left: 0;
        width: 100%;
    }
    .newsform .row .book-room {
        margin-top: 10px;
    }
    .navbar-collapse {
        transition: .2s ease all;
    }
    .navbar-nav .nav-item {
        text-align: right;
    }
    .navbar-nav .nav-link {
        display: inline-block;
    }
    .f-column .f-logos {
        text-align: right;
    }
    .f-column .f-logos ul li img {
        max-width: 70px;
        height: auto;
    }
    .guest-rooms .last-room {
        height: auto;
    }
    .amen-sections>div .row .amen-text .amen-button {
        display: none;
    }
}
@media(max-width:767px){
    .f-column .f-logos {
        text-align: left;
    }
    .guest-rooms .last-room img {
        width: 60%;
    }
    .gallery-main p>iframe {
        width: 100%;
    }
    .gallery .tab li {
        margin-right: 0;
    }
}

/* shivam */

.bullet-list{
    list-style: disc !important;
}

.blog_innstart h2 {
	font-size:22px;
	padding-bottom: 10px; 
	padding-top: 10px; 
	letter-spacing: 1px;

	
}

/* Hero video banner */
.banner-slider {
    position: relative;
    /* min-height: 500px; */
}

.banner-slider__bg {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.banner-slider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider__video--mobile {
    display: none;
}

.hero__bg-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero__bg-video--mobile {
    display: none;
  }
  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__video--mobile {
    display: none;
  }

  @media screen and (max-width: 767px) {
    .banner-slider__video--desktop {
        display: none;
    }

    .banner-slider__video--mobile {
        display: block;
    }
      .hero__video--mobile {
        display: block;
      }
      .hero__video--desktop {
        display: none;
      }
      .hero__bg-wrapper iframe {
        height: 100vw;
        min-height: 86vh;
        min-width: 100vh;
      }
      .hero__bg-video--desktop {
        display: none;
      }
      .hero__bg-video--mobile {
        display: block;
      }
}
/* End Hero video banner */