@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}
.back-to-top i {
  font-size: 28px;
  color: #cda45e;
  line-height: 0;
}
.back-to-top:hover {
  background: #cda45e;
  color: #1a1814;
}
.back-to-top:hover i {
  color: #444444;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}








.align-items-centre{
    align-items: center;
     
    margin-left: 66px;
}






/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-color: transparent;
  border-bottom: 0px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0px;
}
#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 45px;
}

/*chatrooom*/

#header .btn{
     margin: 0 0 0 15px;
  border: 2px solid  #;
    border-color: indianred;
  color: #fff;
  border-radius: 9px;
  padding: 3px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
    background-color: indianred;
}


#header .btn:hover {
  background: #cda45e;
  color: #fff;
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid #cda45e;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}
.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #d9ba85;
}

.navsocial-links {
    margin: 0 0 0px 0;
}

.navsocial-links a {
    font-size: 24px;
    display: inline-block;
    background: none;
    color: #fff;
    line-height: 1;
    padding: 5px 0;
    margin-right: 7px;
    border-radius: 15%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.navsocial-links a:hover {
    background:#CC8C18 ;
    color: #000;
    transform: scale(20px);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #cda45e;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #cda45e;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #cda45e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0px;
      position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
    
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
    
}
.hero video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; 
    
    
}

.hero .text-box{
    margin-top: 250px;
    margin-right: 0;
    margin-left: 17px;

    
}
.hero .overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  mix-blend-mode: overlay;
    opacity: 0.4
}

.hero .text-box h1{
  position: relative;
  z-index: 10;
    color: #fff;
    text-transform: full-width;
}


.hero .text-box h1{
    font-size: 45px;
    line-height: 60px;
    line-height: 1em;
    font-family: 'lato', sans-serif;
    font-weight: 700;
    
    
}
.hero .text-box .span1{
    color: indianred;
    font-size:33px;
    font-weight: 700;
}
.hero .text-box .hauko-solo{
    color:#cda45e;
    font-size: 
}


.hero .text-box a{
    margin-top: 30px;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid #cda45e;
    color: #cda45e;
    padding: 10px 30px;
    text-decoration: none;
    position: relative;
    font-weight: 700;
}

.hero .text-box a:hover{
    background-color: #cda45e;
    color: black;
    font-weight: 700;
    
}

 .text-box auto-input,p{
    color: #fff;
    position: relative;
    
    
    
}
.text-box p{
     font-weight: 600;
}

.hero .text-box .btn{
    background-color:  #cda45e;
    color: #000;
    margin-left: 40px;
    font-weight: 600;
     z-index: 10;
    
}

.hero .text-box .btn:hover{
    
    background-color: transparent;
    color: #cda45e;
}




#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 110px;
}
@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
 font-family: 'lato', sans-serif
}
#hero h1 span {
  color: #cda45e;
}
#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
    font-family: 'lato', sans-serif;
}
#hero .btns {
  margin-top: 30px;
    
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
    font-family: 'lato', sans-serif;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}
#hero .btn-book {
  margin-left: 15px;
}
#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}
#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}



.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #cda45e;
}


/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #cda45e;
}
.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}
.specials .nav-link:hover {
  border-color: #cda45e;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.specials .details p {
  color: #aaaaaa;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}


/*--------------------------------------------------------------
# Projects style css
--------------------------------------------------------------*/

/*Color*/
/*---Reset*/


.card {
  margin-bottom: 20px;
  display: flex;
  background-color: #000;
  transition: box-shadow 0.3s ease;
  border-radius: 0px; }
  .card:hover {
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.04); }
  .card .card-image {
    width: 30%; }
    .card .card-image img {
      width: 100%;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px; }
  .card .card-meta {
    width: 70%;
    padding: 1rem;
    flex: 1;
    margin-left: 1rem;
       
}
  .card .card-title {
    font-family: 'lato', serif ;
    font-size: 2rem;
    margin: 0px;
    margin-bottom: 1rem;

}
    .card .card-title > a {
      display: block;
      color: #cda45e;
      text-decoration: none; }
      .card .card-title > a:hover {
        color: greenyellow;
          font-weight: 700;
}
  .card .card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .card .card-top .cat {
      display: block;
      text-decoration: none;
      text-transform: uppercase;
      color: #6F798C; }
      .card .card-top .cat:hover {
        color: #;

}
.card .card-top .date {
      color: #6E798C;
}
  .card .card-bottom {
    display: flex;
    margin-top: 1rem;
    justify-content: space-between; }
    .card .card-bottom .avatar {
      display: inline-block;
      vertical-align: middle;
      margin-right: 0.5rem; }
      .card .card-bottom .avatar img {
        width: 32px;
        height: 32px;
        justify-content: space-between; }
    .card .card-bottom .username {
      color: #6E798C;
      font-weight: 600; }
    .card .card-bottom .readmore {
      display: block;
      padding: 5px 10px;
      text-decoration: none;
      color: #6E798C;
      font-weight: 600;
      transition: transform 0.3s ease; }
      .card .card-bottom .readmore:hover {
        transition: transform 0.3s ease;
        transform: translateX(-10px); }

.box-cards-blog.-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .box-cards-blog.-grid .card {
    width: calc(33.33333% - 10px);
    display: block;
    padding: 1rem; }
    .box-cards-blog.-grid .card .card-title {
      font-size: 1.5rem; }
    .box-cards-blog.-grid .card .card-image {
      width: 100%; }
      .box-cards-blog.-grid .card .card-image img {
        border-radius: 0px;
        width: 100%; }
    .box-cards-blog.-grid .card .card-meta {
      width: 100%;
      margin-left: 0px;
      padding: 0px;
      margin-top: 1rem; }

.tabs {
  text-align: center;
  max-width: 200px;
  margin: auto;
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: space-between; }
  .tabs .tab {
    width: calc(50% - 5px);
    text-align: center;
    padding: 7px 10px;
    border: 1px solid #;
    border-radius: px;
    cursor: pointer; }
    .tabs .tab:hover {
      background-color: #f5f5f5; }
    .tabs .tab.active {
      background-color: #007AE9;
      color: #fff;
      border-color: #007AE9; }

/*Responsive*/
@media (max-width: 991px) {
  .box-cards-blog.-grid {
    display: block; }
    .box-cards-blog.-grid .card {
      width: 100%;
      display: flex; }
      .box-cards-blog.-grid .card .card-image {
        width: 200px; }
      .box-cards-blog.-grid .card .card-meta {
        margin-left: 20px;
        margin-top: 0px; } }

@media (max-width: 768px) {
  .box-cards-blog {
    padding: 0px; }
  .card {
    display: block; }
  .card .card-image {
    width: 100%; }
    .card .card-image img {
      border-radius: 0px; }
  .card .card-meta {
    width: 100%;
    margin-left: 0px; }
  .box-cards-blog.-grid .card {
    display: block; }
    .box-cards-blog.-grid .card .card-image {
      width: 100%; }
    .box-cards-blog.-grid .card .card-meta {
      margin-left: 0px;
      margin-top: 1rem; } }

/*--------------------------------------------------------------
# Timer style scss
--------------------------------------------------------------*/

.timerbg {
  background: url("../img/AMN-2804.jpg") center;
  background-size:cover;
  position: relative;
  padding: 0px 0;

 
}
.timerbg:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


#timer {
  position: relative;
  width: 100%;
  padding: 10px 0;
  /* countdown */
}
#timer h1 {
  margin: 10px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
    font-family: 'lato';
    padding-top: 10px
}
#timer h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 22px;
    font-family: 'lato';
}
#timer .countdown {
  margin-bottom: 40px;
}
#timer .countdown div {
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}
#timer .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
    font-family: 'lato';
}
#timer .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
    font-family: 'lato';
}
@media (max-width: 575px) {
  #timer .countdown div {
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }
  #timer .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  #timer .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
      font-family: 'lato';
  }
}

#timer .social-links {
  margin-top: 0px;
    padding-bottom: 30px
}
#timer .social-links a {
  font-size: 16px;
  color: #fff;
  margin: 0 3px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#timer .social-links a i {
  line-height: 0;
}
#timer .social-links a:hover {
  background: #24b7a4;
  border-color: #24b7a4;
}






/*--------------------------------------------------------------
# End Timer style scss
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Projects style scss
--------------------------------------------------------------*/

/*Color*/



/*---Reset*/







details > summary {
  padding: 4px;
  width: 100%;
  background-color: ;
  border: none;
  
  cursor: pointer;
}

details > p {
  background-color:;
  padding: 4px;
  margin: 0;
  box-shadow: 1px 1px 2px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs1 {
  padding: 150px 0;
  background: #1d1b16;
  margin-top: 110px;
   background: url("../img/blog-bg.jpg") center;
   
}
.breadcrumbs1 h2{
    color: white;
     
}
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 10px;
  
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/slide-1.jpg") center;
  background-size: cover;
  position: relative;
  padding: 80px 0;

 
}
.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .about-img {
  position: relative;
  transition: 0.5s;
}
.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}
.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}
.about .about-img:hover {
  transform: scale(1.03);
}
.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}
.about .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}



/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.events .section-title h2 {
  color: #fff;
}
.events .container {
  position: relative;
}
@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}
.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}
.events .event-item {
  color: #fff;
}
.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}
.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}
.events .event-item ul {
  list-style: none;
  padding: 0;
}
.events .event-item ul li {
  padding-bottom: 10px;
}
.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}
.events .event-item p:last-child {
  margin-bottom: 0;
}
.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}
.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}
.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}
.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #cda45e;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #d3af71;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}






#contact .btn-menu,
#contact .btn-book {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 10px;
    border-radius: 10px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
   color: #cda45e;
    border: 2px solid #cda45e;
    align-items: center;
}

#contact .btn-menu:hover,
#hero .btn-book:hover {
    background: #cda45e;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #cda45e;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #cda45e;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}





/*=================================================================
  Latest Posts
==================================================================*/
.blog-item-content h3 {
  line-height: 36px;
}

.blog-item-content h3 a {
  transition: all .4s ease 0s;
}

.blog-item-content h3 a:hover {
  color: #f75757 !important;
}

.lh-36 {
  line-height: 36px;
}


.tags a {
  background: #f5f8f9;
  display: inline-block;
  padding: 8px 23px;
  border-radius: 38px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  font-size: 14px;
  text-transform: capitalize;
}

.pagination .nav-links a, .pagination .nav-links span.current {
  font-size: 20px;
  font-weight: 500;
  color: #c9c9c9;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pagination .nav-links span.current, .pagination .nav-links a.next, .pagination .nav-links a.prev {
  color: #242424;
}

h3.quote {
  font-size: 25px;
  line-height: 50px;
  font-weight: normal;
  padding: 0px 25px 0px 85px;
  margin: 65px 0 65px 0 !important;
  position: relative;
}

h3.quote::before {
  content: '';
  width: 55px;
  height: 2px;
  background: #f75757;
  position: absolute;
  top: 25px;
  left: 0;
}

.nav-posts-title {
  line-height: 25px;
  font-size: 18px;
}

.latest-blog {
  position: relative;
  padding-bottom: 50px;
}
.latest-blog h3{
    font-family:'poppins';
    font-size: 25px;
}

.latest-blog .btn {
        margin-top: 0px;
    display: inline-block;
    border-radius: 60px;
    border: 2px solid #cda45e;
    color: #cda45e;
    padding: 10px 30px;
    text-decoration: none;
    position: relative;
    font-weight: 700;
}



.latest-blog .btn:hover{
    background: #cda45e;
    
}

.mt-70 {
  margin-top: -70px;
}

.border-1 {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/*=================================================================
  Single Blog Page
==================================================================*/
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 0 0 40px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: ;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #94c045;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #a3ab95;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #94c045;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #9fc658;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: ;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: burlywood;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #3c4133;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #8b9578;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #94c045;
  transition: 0.3s;
    background-color: transparent
}
.blog .entry .entry-footer a:hover {
  color: #94c045;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
    
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
    
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: ;
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #94c045;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: aqua;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 7px;
  padding: 10px 10px;
  font-size: 14px;
    background-color: transparent;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #c0da91;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
     background-color: transparent;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #c0da91;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
    
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 9px;
  padding: 10px 20px;
  border: #94c045 solid;
  background-color: transparent;
    color: #94c045
    
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #94c045;
    color: white;
}
.blog .blog-pagination {
  color: #717a60;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #94c045;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #94c045;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: ;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
     background-color: transparent;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
     background-color: transparent;
    
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #94c045;
  color: #;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #9dc554;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #94c045;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #fff;
  transition: 0.3s;
    font-family: 'poppins'
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #94c045;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #7e886b;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #94c045;
  display: inline-block;
  transition: 0.3s;
    background-color: transparent;
    border-radius: 10px;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #94c045;
  background: #94c045;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #d5d8ce;
  font-size: 14px;
}


/********** banner style ************/

.banner-inner-1 {
  padding-bottom: 43px;
   
}

.banner-inner {
  padding-bottom: 70px;
    
}


.banner-inner a{
  
    margin-top: 0px;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid #cda45e;
    color: #cda45e;
    padding: 5px 13px;
    text-decoration: none;
    position: relative;
    font-weight: 700;
}
.banner-inner a:hover{
    background-color:#cda45e;
    
}
.banner-inner .thumb {
  position: relative;
}
.banner-inner .thumb img {
  position: relative;
  z-index: 3;
  border-radius: 5px;
    max-height: 350px;
}
@media only screen and (max-width: 900px){
    
    .banner-inner .thumb img {
  position: relative;
  z-index: 3;
  border-radius: 5px;
    max-height: 220px;
    }}
.banner-inner .thumb.after-left-top {
  margin-left: 30px;
  margin-top: 30px;
}
.banner-inner .thumb.after-left-top:after {
  content: "";
  background: #cda45e;
  position: absolute;
  left: -30px;
  top: -30px;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 5px;
}
.banner-inner .banner-details {
  margin-left: 0px;
   padding-top: 10px;
    
}
.banner-inner .banner-details .post-meta-single {
  margin-bottom: 38px;
    
}
.banner-inner .banner-details .post-meta-single li {
  color: #ffffff;
}
.banner-inner .banner-details .post-meta-single li .tag-base {
  font-size: 20px;
  height: 42px;
  line-height: 42px;
  padding: 0 28px;
  border-radius: 5px;
}
.banner-inner .banner-details .post-meta-single li.date {
  font-size: 14px;
  margin-left: 17px;
}
.banner-inner .banner-details p {
  color: #fff;
  margin-top: 27px;
}
.banner-inner .banner-details h2 {
  color: #fff;
    font-family: 'poppins';
    font-size: 25px
}
.banner-inner .banner-details .btn {
  margin-top: 32px;
}

.banner-inner-3 {
  margin-bottom: 58px;
}
.banner-inner-3 .thumb {
  margin-bottom: 20px;
  overflow: hidden;
}
.banner-inner-3 .thumb img {
  transform: scale(1.01);
  transition: 0.8s;
}
.banner-inner-3 .thumb:hover img {
  transform: scale(1.06);
}
.banner-inner-3 .author-meta span {
  color: var(--main-color);
}
.banner-inner-3 .author-meta .media-left img {
  border-radius: 50%;
}
.banner-inner-3 .single-post-wrap {
  margin-bottom: 20px;
}
.banner-inner-3 .single-post-wrap.style-overlay-bg .details {
  position: absolute;
  bottom: 0;
  padding: 18px 30px;
  z-index: 4;
  margin: 0;
  border: 5px solid var(--main-color);
  border-top: 0;
  background-color: rgba(0, 0, 0, 0.502);
  border-radius: 0 0 6px 6px;
  width: 100%;
}
.banner-inner-3 .single-post-wrap.style-overlay-bg .details p,
.banner-inner-3 .single-post-wrap.style-overlay-bg .details .title {
  color: #fff;
}


/*donate*/
/* For mobile phones: */







#content-section-2  article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
    display: block;
}




#content-section-2 element.style {
    background-image: url(https://mountkenyatrust.org/wp-content/uploads/2015/10/donation-bg.jpg);
    padding-top: 90px;
    padding-bottom: 65px;
    background-position: center -64.02px;
}


.greennature-color-wrapper, .greennature-parallax-wrapper {
    overflow: hidden;
    background-position: center 0px;
    background-repeat: repeat;
    position: relative;
}

.greennature-color-wrapper, .greennature-parallax-wrapper, .greennature-full-size-wrapper {
    padding-bottom: 40px;
}





@media only screen and (max-width: 959px)
body .container {
    max-width: 768px;
}





element.style {
    background: url(https://mountkenyatrust.org/wp-content/uploads/2015/10/donation-bg-1.jpg);
}









.greennature-action-ads-item .action-ads-button {
    margin-top: 3px;
}
.greennature-button.large {
    font-size: 13px;
    padding: 15px 28px;
    font-weight: 800;
    background-color: red
}






.greennature-button,{
    display: inline-block;
    font-size: 12px;
    padding: 14px 27px;
    margin-bottom: 15px;
    margin-right: 15px;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    letter-spacing: 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
 .six {
    width: 50%;
}



#content-section-2 .column, .columns {
    float: left;
    position: relative;
    min-height: 1px;
}


#content-section-2 element.style {
    background: url(https://mountkenyatrust.org/wp-content/uploads/2020/10/10to4-Mountainbike-Challenge-2.jpg);
}


.greennature-action-ads-item {
    padding: 50px 40px 37px;
    overflow: hidden;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.greennature-item {
    margin: 0px 15px 20px;
    min-height: 1px;
}


 .greennature-action-ads-item .action-ads-title {
    font-size: 26px;
    margin-bottom: 2px;
    font-weight: 700;
     font-family: 'lato';
        
}

 .greennature-action-ads-item .action-ads-title {
    
    margin-bottom: 2px;
    font-weight: 700;
}

 .greennature-action-ads-item .action-ads-content {
    color: #ffffff;
}
@media only screen and (max-width: 768px) {
  /* For mobile: */
 #content-section-2 .column {width: 50%;}
  #content-section-2 .columns {width: 100%;
    
    }
}
    @media only screen and (max-width: 978px) {
       .greennature-item {
    margin: 0px 5px 20px;
} 
    }
    
    
    /*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
