body {

    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

html {

    scroll-behavior: smooth;
}

ul {padding: 0;margin: 0;}
li {padding: 0;margin: 0;list-style: none;}
a,a:hover {color: #fff;text-decoration: none;}
p {font-size: 14px;color: #333333;line-height: 25px;}
h1,h2,h3,h4,h5 {margin: 0;color: #000;}
figure {background-size: cover;background-repeat: no-repeat;background-position: center;margin: 0;}
img {width: 100%;}


header {

    background: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}

.blank-div {

    height: 120px;
}

header.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    background-color: rgba(255,255,255,.98);
}


.logo {
    display: block;
}

.sticky .logo img {

    height: 50px;
}

.logo img {

    height: 100px;
    width: auto;
}




.top-menu-bar {
    /* position: fixed;
    top: 61px;
    right: 15px; */
    z-index: 9;
    transition: 500ms;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
    transition-delay: 0s;
    cursor: pointer;
    
}

.top-menu-bar.active {

    position: fixed;
    top: 5px;
    right: 5px;
    background: #fff;
    padding: 10px;
}


span.menu-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #424242;
    margin: 9px 0;
    transition: 500ms;
  
}

.top-menu-bar.active span.menu-line:nth-child(1) {
    transform: rotate(45deg);
}

.top-menu-bar.active span.menu-line:nth-child(2) {
    opacity: 0;
}

.top-menu-bar.active span.menu-line:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -19px;
}

.main-head {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {

    position: fixed;
    top: 0;
    right: -20em;
    width: 300px;
    height: 100%;
    background: #370e10;
    transition: 500ms ease all;
    
    z-index: 2;
}

.main-nav.open {

    right: 0;
}

.main-nav ul li {

    display: block;
}

.main-nav ul li a {

    display: block;
    padding: 8px 0;
    color: #fff;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 500ms ease all;
    position: relative;
    z-index: 2;
}

.main-nav ul li a::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #de3952;
    transition: all 500ms cubic-bezier(.32,2,.55,.27);
    z-index: -1;
}

.main-nav ul li a:hover:before {

    width: 100%;
    color: #fff;

}

/* header section ends */


/* main slider section starts */

.main-slider {

    padding: 0 40px;
    position: relative;
}

.main-slide-container figure {

    height: 530px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background-position: top center;
}

/* .main-slide-container figure::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
} */

.main-slide-container figure::after {

    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.17);
    transform: translate(-50%,0);
}


.main-slide-container figure .main-slide-content {

    text-align: center;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}
.slider-thumb {

    position: absolute;
    bottom: 0;
    left: 80px;
}

.slider-thumb p {

    display: block;
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
}


.slider-thumb .slick-slide.slick-current.slick-active p {

    font-size: 30px;
    color: #fff;
    transition: 500ms ease all;
    font-weight: 900;
    text-decoration: underline;
}

.slider-thumb .slick-slide {

    display: block;
    float: none;
}

.main-slide-content h1 {

    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.main-slide-content h1 span {

    font-weight: 900;
    font-size: 100px;
    display: block;
    margin-bottom: 15px;

}



.slick-slide.slick-current.slick-active .main-slide-content h1 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    transition-timing-function: cubic-bezier(0.88, 0.06, 0.64, 0.99);
}

.slick-slide.slick-current.slick-active .main-slide-content h1 {
    -webkit-animation-delay: 0.75s;
    animation-delay: 500ms;
}

.social-media {

    position: absolute;
    left: 0;
    top: 50%;
    transform:translate(0, -50%);

}

.social-media p {
    transform: rotate(-90deg);
    font-size: 14px;
    font-weight: 600;
    margin-left: -18px;
    text-transform: uppercase;
    /* margin: 0; */
    position: relative;
}

.social-media ul {

    margin-top: 122px;
    margin-bottom: -128px;
    position: relative;
    text-align: center;
    margin-left: -22px;
}

.social-media ul::before {

    content: "";
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translate(0,-50%);
    width: 1px;
    height: 50px;
    background: #9c9c9c;
}

.social-media ul li {

    display: block;
}

.social-media ul li a {

    display: block;
    color: #333333;
    margin-bottom: 5px;
    transition: 300ms ease all;
}

.book-btn {

    position: absolute;
    display: block;
    top: 50%;
    right: -66px;
    color: #333333;
    transform: rotate(-90deg);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms ease all;
    cursor: pointer;
}
.social-media ul li a:hover,
.book-btn:hover {

    color: #de3952;
}

/* main slider section ends */


/* about section starts */

.about-section {

    position: relative;
    overflow: hidden;
}


.all-sec-padding {

    padding: 80px 0;
}

.about-image-side img {

    width: 100%;
    height: auto;
}

.about-side-image {

    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 130px;
}

.about-side-image img {

    width: 100%;
    height: auto;
}

.title-wrapper {

    margin-bottom: 15px;
    display: block;
}

.title-wrapper h2 {

    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 35px;
}

/* about section ends */

/* tab section starts */


.tab-title {

    text-align: center;
    display: block;
}


.tab-title span {

    color: #de3952;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.tab-wrapper {

    margin-bottom: 40px;
}

.tab-wrapper .nav-tabs {

    display: block;
    text-align: center;
    border: none;
    position: relative;
}

.tab-wrapper .nav-tabs::before {

    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f2f2f2;
    z-index: -1;
}

.tab-wrapper .nav-tabs .nav-item {
    display: inline-block;

}

.tab-wrapper .nav-tabs .nav-link {

    border: none;
    margin: 0 20px;
}

.tab-wrapper .nav-tabs .nav-link  span {

    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.nav-tabs .nav-item.show .nav-link .tab-image-wrapp, .nav-tabs .nav-link.active .tab-image-wrapp,
.tab-wrapper .nav-tabs .nav-link:hover .tab-image-wrapp {

    border-color: #f46231;
}

.tab-image-wrapp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    line-height: 80px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: 300ms ease all;
    text-align: center;
    margin-bottom: 10px;
}

.tab-image-wrapp img {

    max-width: 40px;
    height: auto;
    width: auto;
}

.tab-content-side ul li h3 {

    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.tab-content-side img {

    max-width: 100%;
    margin-bottom: 15px;
    width: auto;
}

.tab-image-side img {

    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    width: auto;
}

.tab-image-side {
    text-align: center;
} 


.tab-image-side h3 {

    font-size: 25px;
    font-weight: 800;
}

.tab-content {
    margin-bottom: 30px;
}

/* tab section ends */

/* gallery section starts */


.gallery-section {
    position: relative;
}


.gallery-bottom-image,
.gallery-top-image {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.gallery-bottom-image {

    top: auto;
    bottom: 0;
}

.gallery-bottom-image img,
.gallery-top-image img {

    width: 100%;
    height: auto;
}


.gallery-title {

    text-align: center;
}

.gallery-title span {

    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 5px;
    font-style: italic;
}

.gallery-tab .nav-tabs::before {

    display: none;
}

.gallery-tab .nav-tabs .nav-item .nav-link span {

    text-transform: uppercase;
    font-size: 14px;
}

.gallery-tab .nav-tabs .nav-item .nav-link:hover span,
.gallery-tab .nav-tabs .nav-item .nav-link.active span {

    color: #f46231;
}

.gallery-grid {

    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    
}

.gallery-grid img {

    width: 100%;
    height: auto;
    margin: 7px 0;
}

/* gallery section ends */

/* review section starts */

.review-side {

    text-align: center;
    overflow: hidden;
}

.review-wrapper p {

    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.review-wrapper h4 {

    font-size: 18px;
    color: #c81d38;
}

.review-slider button.slick-arrow {

    position: absolute;
    bottom: 0;
    bottom: 0;
}



.review-slider button.slide-arrow.next-arrow {

    right: -15em;
    transition: 300ms ease all;
}

.review-slider button.slide-arrow.prev-arrow {

    left: -15em;
    transition: 300ms ease all;
}

.review-slider:hover button.slide-arrow.next-arrow {

    right: 0;
}
.review-slider:hover button.slide-arrow.prev-arrow {

    left: 0;
}

.review-slider button.slide-arrow.prev-arrow::before,
.review-slider button.slide-arrow.next-arrow::before {

    content: "\f178";
    font-family: fontawesome;
    font-size: 16px;
    color: #000;
    right: 0;
} 

.review-slider button.slide-arrow.prev-arrow::before {

    content: "\f177";

}

.post-side {

    position: relative;
    background: #f4f3f3;
    height: 100%;
}

.post-image {

    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.post-image img {

    max-width: 100%;
    height: auto;
}

ul.post-link {
    max-height: 200px;
    overflow-y: scroll;
    padding: 30px;
    padding-top: 0;
}



ul.post-link::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}



ul.post-link::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}



ul.post-link::-webkit-scrollbar-thumb
{
	background-color: #c81d38;
}

.post-title {

    margin-bottom: 40px;
    padding: 30px;
    padding-bottom: 0;
}

.post-title span {

    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.post-title h2 {
    color: #c81d38;
}

.whole-post-wrapp {

    z-index: 2;
    position: relative;
}

.post-link li a h4 {

    font-size: 18px;
    font-weight: 400;
    transition: 300ms ease all;
   
}

.post-link li a:hover h4 {

    color: #c81d38;
}

.post-link li p {

    font-size: 16px;
    color: #c81d38;
}

.map-side iframe {

    width: 100%;
}

section.map-section {

    margin-bottom: 30px;
}

.opening-image img {

    max-width: 100%;
    height: auto;
    width: auto;
}
.opening-side {
    background: #c81d38;
    padding: 30px;
    text-align: center;
    right: 0;
    top: 100px;
}

.tab-content-side {
    text-align: center;
}
/* .opening-side {
    position: relative;
    left: -53px;
    bottom: -46px;
    border: 5px solid #c81d38;
} */

.opening-side img {

    max-width: 100%;
    height: auto;
}

.opening-side h2 {

    font-size: 30px;
    color: #fcdaaa;
    font-weight: 800;
    margin-bottom: 20px;
    font-style: italic;
    display: block;
}

.opening-side p {

    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* map section ends */

/* footer section starts */

footer {

    background: #000;
}

.footer-logo {

    /* background: #fff; */
    display: block;
    padding: 20px 10px;
    text-align: center;
}

.footer-logo img {

    width: 150px;
}

.footer-col-wrapper ul li {

    display: flex;
    align-items: center;
    font-style: 16px;

}

.footer-col-wrapper ul li i {

    color: #bdbdbd;
    margin-right: 10px;
    font-size: 25px;
}

.footer-col-wrapper ul li a,
.footer-col-wrapper ul li p {

    color: #bdbdbd;
    margin: 0;
}

.footer-media a:hover,
.footer-col-wrapper ul li a:hover {

    color: #c81d38;
}

.footer-media {

    margin-top: 15px;
}

.footer-media a {

    margin: 0 5px;
    display: inline-block;
    color: #bdbdbd;
}

.footer-row {

    align-items: center;
}

/* footer section ends */

/* modal */


.blur{
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
  }
  
  a.btn{
    width:150px;
    display:block;
    margin:-25px 0 0 -75px;
    padding:1em 0;
    position:absolute;
    top:50%; left:50%;
    font:1.125em 'Arial', sans-serif;
    font-weight:700;
    text-align:center;
    text-decoration:none;
    color:#fff;
    border-radius:5px;
    background:rgba(217,67,86,1);
  }
  
  .modal-wrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(53, 12, 14, 0.79);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    overflow: visible;
    z-index: 9;
  }
  
  .modal-wrapper.open{
    opacity:1;
    visibility:visible;
  }
  
  .modal{
    max-width: 600px;
    height: auto;
    display: block;
    /* margin: 50% 0 0 -300px; */
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: visible;
  }
  
  .modal-wrapper.open .modal{
    transform: translate(-50%, -50%);
    opacity:1;
  }
  
  .head{
    
    height: 52px;

    background: #da2440;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  
  .btn-close{
    width: 32px;
    height: 32px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    display: block;
    position: absolute;
    top: -28px;
    right: -27px;
    background: #000;
    border: 2px solid #da2440;
  }

  
  .content{
    padding:5%;
  }

  .content form textarea,
  .content form input {

    display: block;
    padding: 10px;
    border: 1px solid #eaeaea;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 15px;
  }

  .content form textarea {

    height: 150px;
  }

  .content form button {

    outline: none;
    border: none;
    padding: 10px 25px;
    color: #fff;
    font-size: 16px;
    background: #c81d38;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 300ms ease all;
  }

  .content form button:hover {

    background: #370e10;
    color: #fff;
  }

  /* sigle page */

  .sigle-page .row {

    align-items: center;
    flex-direction: row-reverse;
    padding: 0 150px;
  }

  .sigle-page {

    position: relative;
  }




  section.sigle-page {

    padding: 140px 0;
    background: #f2f2f26e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #f2f2f2;
  }


.side-wrapper {
    background: #fff;
    text-align: center;
}

.side-wrapper a {

    display: inline-block;
    text-align: center;
}

.side-wrapper a img {

    max-width: 100%;
    width: auto;
    height: auto;
}


span.errorSpan {
    position: fixed;
    z-index: 99;
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 20px;
}