
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans TC", "Noto Serif TC", "Playfair Display", sans-serif;
  background: #fff;
  color: #000;
  font-weight: 300;
  letter-spacing: 1px;
}

a {
  color: #ffc928;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif TC", 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;
  animation: animate-preloader 1s linear infinite;
}

@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;
  background: #000;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ceb464;
  color: #000;
}

.back-to-top:hover i {
  color: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  top: 0px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, .7);
}

#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 {
  height: 80px;
}

/*--------------------------------------------------------------
# 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: 1rem;
  font-weight: 300;
}

.navbar a i,
.navbar a:focus i {
  font-size: 1.3rem;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,


.navbar li:hover>a {
  color: #ffc928;
}

.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: #ceb464;
}

.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.7);
  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: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ceb464;
}

.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: 60vh;
  background: url("../img/hero.jpg") center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
}

#hero .container {
  width: 50%;
  margin-top: -10px;
}

#hero h1 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
  letter-spacing: .5px;
  font-family: "Noto Sens TC", sans-serif;
}

#hero h1 span {
  color: #000;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0;
}

#hero .btns {
  margin-top: 20px;
}

#hero .btn-booking a {
  font-weight: 500;
  font-size: 1.3rem;
  display: inline-block;
  padding: 14px 70px 16px 70px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1.6;
  background: #fff5d7;
  letter-spacing: .5px;

  color: #000;

}

#hero .btn-booking img {
  height: 25px;
  padding: 0 5px 3px 3px;
}
#hero .btn-booking span {
  font-weight: 600;
  font-size: 1.3rem;
  color: #06C755;
}
#hero .btn-booking span.black {
  color: #06C755;
  font-size: 1.1rem;
}
#hero .btn-booking a:hover {
  background: #000;
  color: #fff;
}

#hero .ctrl-logo {
  width: 25%;
  margin: 0 auto;
  transition: 0.3s;
}

@media (max-width:992px) {
  #hero {
    height: 70vh;
  }
  #hero .container {
    width: 90%;
    margin: 0 auto;
  }
  #hero .ctrl-logo {
    width: 45%;
  }
}
@media (max-width:430px) {
  #hero .btn-booking a {
    padding: 12px 0 14px 0px;
    width: 100%;
    margin: 0 auto;
  }
  #hero .ctrl-logo {
    display: none;
  }
  #hero .container {
    padding-top: 70px;
  }
}


@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 100px;
  overflow: hidden;
}

.section-bg {
  background-color: #fff5d7;
}

.section-title {
  padding-bottom: 40px;
  margin-top: 50px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
  color: #000;
  font-family: "Noto Serif TC", serif;
  margin-bottom: -25px;
}
@media (max-width:430px) {
  section {
    padding: 0px 0 60px;
  }
}

/*--------------------------------------------------------------
# Interior
--------------------------------------------------------------*/
#interior {
  padding-bottom: 10px;
}
.interior .section-title h2 span {
  color: #d9be6f;
}
.inter-intro {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #000;
  padding: 18px 20px 15px;
  border-radius: 0;
}

.inter-intro ul {
  font-size: 1.1rem;
  background: #fff5d7;
  border-radius: 0;
}
.inter-intro ul li {
  border: 0;
  list-style: none;
  border-left: .05rem solid #000;
  padding: 0 15px 0 50px;
  background: #fff5d7;
  border-radius: 0;
  text-indent: -.8em;
}
.inter-intro ul li:first-child {
  border: 0;
}
.inter-intro ul li i {
  font-size: 1.4rem;
  vertical-align: text-bottom;
}
@media (max-width:992px) {
  .inter-intro ul li {
    border: 0;
    border-top: .05rem solid #000;
    padding: 22px 15px 18px 40px;
  }
}

.intro-img {
  font-size: 1.4rem;
  font-weight: 600;
}
.intro-img ul {
  font-weight: normal;
}
@media (max-width:992px) {
  .intro-img {
    padding: 6px 8px;
  }
  .intro-img img {
    padding: 2px 0;
  }
}
.interior .inter-section {
  margin: 40px 0 50px;
}
.interior .inter-section .subtitle h2 {
  font-size: 1.4rem;
  font-weight: 600;
}
.interior .inter-section .subtitle h2 span {
  color: #d9be6f;
  font-size: 1.6rem;
}
.interior .inter-section ul li {
  font-size: 1rem;
  line-height: 1.8;
}


/* 當月活動 */
.interior .month {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Playfair", serif;
  margin-bottom: -5px;
  letter-spacing: 0;
}

.slider-container {
  padding: 0 1rem;
  overflow: hidden;
  position: relative;
}
.my-slider {
  position: relative;
}
.slider-item {
  position: relative;
}
.slider-item:hover {
  cursor: pointer;
}
.controls {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.controls i {
  font-size: 2rem;
}
.controls:focus {
  outline: none;
}
.controls li:hover {
  cursor: pointer;
}

.interior .btn-booking a {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: .5px;
  display: inline-block;
  padding: 14px 0 16px;
  width: 40%;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1.6;
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.interior .btn-booking a:hover {
  background: #fff;
  color: #000;

}

.interior .btn-booking img {
  height: 25px;
  padding: 0 5px 3px 3px;
}
.interior .btn-booking span {
  font-weight: 600;
  font-size: 1.5rem;
  color: #06C755;
}
.interior .btn-booking span.line {
  font-size: 1.1rem;
  color: #06C755;
}

.event-ps {
  width: calc(100% - 6rem);
  margin: 15px auto 20px auto;
  font-weight: 500;
  letter-spacing: .5px;
}
.shape01 i {
  -webkit-text-stroke: 2px black;
  text-stroke: 2px black;
  color: #d9be6f;
  font-size: 1.55rem;
  position: absolute;
  margin-bottom: -7px;
}
.shape02 i {
  -webkit-text-stroke: 2px black;
  text-stroke: 2px black;
  color: #fff;
  font-size: 1.55rem;
  position: absolute;
  margin-bottom: -7px;
}
.info i {
  font-size: 1.2rem;
}
.inter-section .subtitle h2.bg01:before {
  content: 'ctrf+F Space';
  color: rgba(217, 190, 111, .3);
  font-size: 6.6rem;
  font-weight: 700;
  letter-spacing: -2px;
  font-family: "Noto Serif TC", serif;
  position: absolute;
  margin-top: -65px;
  right: 0px;
}

@media (max-width:992px) {
  .inter-section .subtitle h2.bg01:before {
    display: none;
  }
  .interior .btn-booking a {
    width: 70%;
  }
  .interior .month {
    margin-top: 0;
  }
}

.calendar {
  border: 2px solid #000;
}
.calendar .week {
  background: #ceb464;
  text-align: center;
  border-bottom: 2px solid #000;
  padding: 20px 0;
  font-weight: 700;
  width: 20%;
}
.calendar .event {
  background: #fffbf0;
  color: #d9be6f;
  font-size: 2.1rem;
  font-weight: 700;
}
.calendar .event ul {
  margin-left: -10px;
  line-height: 1.5;

}
.calendar .event ul li {
  line-height: 1.4;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  margin-bottom: 10px;
}
.calendar .event ul li a {
  line-height: 1.4;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}
.calendar .event ul li a:hover {
  color: #d9be6f;
  text-decoration: none;
}
.calendar .event ul span.space {
  color: #fff;
  padding: 1px 12px 2px 11px;
  border-radius: 50px;
  font-size: .9rem;
  margin-left: -1px;
  display: inline-block;
  margin-bottom: 2px;
}
.s101{
  background: #72bdb3;
}
.s102{
  background: #0071bc;
}
.s401{
  background: #ed1e79;
}
.calendar tbody tr td {
  padding: 15px 20px 5px;
  color: #e4e4e2;
  font-size: 2.1rem;
  font-weight: 700;
}

@media (max-width:992px) {
  .calendar .week {
    border: 0;
    border-right: 2px solid #000;
  }
}
/* 桌機轉月份 */
.panel-control {
  position:absolute;
  opacity:0;
}
.tab-group label {
  display:inline-block;
  padding: 10px 30px;
  position:relative;
  color: #000;
  font-size: 2rem;
  font-family: "Playfair", serif;
  cursor: pointer;
}
.tab-group {
  margin-left: 27.6%;
}
.content{display:none;}

#radio1:checked ~ .tab-group [for="radio1"],
#radio2:checked ~ .tab-group [for="radio2"],
#radio3:checked ~ .tab-group [for="radio3"] {
  background-color: rgba(0, 0, 0, .0);
  color: #000;
  font-size: 3rem;
  cursor: default;
}

/* #radio2:checked~ .content-group .content1{display:none}
#radio3:checked~ .content-group .content1{display:none} */

#radio1:checked ~ .content-group .content1,
#radio2:checked ~ .content-group .content2,
#radio3:checked ~ .content-group .content3 {display:block}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #f7e19e;
}
.faq .section-title h2 span {
  color: #fff;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 20px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  position: relative;
  border-radius: 10px;

}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Noto Serif TC", serif;
  font-size: 1.4rem;
  line-height: 24px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: #000;
}

.faq .faq-list .icon-help {
  font-size: 1.7rem;
  position: absolute;
  font-weight: 500;
  right: 0;
  left: 27px;
  color: #ceb464;
  margin-bottom: -10px;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 1rem;
  font-weight: normal;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #000;
}

.faq .faq-list a.collapsed:hover {
  color: #ceb464;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-bottom: 60px;
}
.about .section-title h2 span {
  color: #e2e2e2;
}
.about p {
  color: #828181;
  line-height: 2;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  background: #000;
}
.gallery .section-title h2 {
  color: #ffc928;
}
.gallery .section-title h2 span {
  color: rgba(255, 255, 255, 1);
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: rgba(0, 0, 0, .05);
  padding: 30px 0 60px;
}
.contact .section-title h2 span {
  color: #d0cece;
}
.contact .info i {
  font-size: 1.1rem;
  float: left;
  width: 30px;
  height: 30px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info p {
  padding: 2px 0 0 40px;
  font-size: 1rem;
  color: #000;
}
.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 20px;
}
.contact .qrcode {
  margin-top: 30px;
  font-weight: 400;
  line-height: 0;
}
.contact .qrcode img {
  width: 65%;
  background: #fff;
  margin: 0 10px 10px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 20px 0;
  color: rgba(255, 255, 255, .5);
  font-family: "Noto Serif TC", serif;
  font-size: .8rem;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# News List
--------------------------------------------------------------*/
.news {
  margin-top: -25px;
  margin-bottom: 0;
  padding-bottom: 0;

}
@media (max-width:430px) {
  .news {
    margin-top: 10px;
  }
}
/*.news:after {
  content: 'News';
  color: rgba(0, 0, 0, .04);
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: -5px;
  font-family: "Noto Serif TC", serif;
  position: absolute;
  bottom: -70px;
  right: 3%;
}*/
@media (max-width:768px) {
  .news:after {
    display: none;
  }
}
.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item:last-child a {
  border-bottom: 0;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, .1);
  padding: 25px 30px 20px 30px;
  color: #101010;
}
.news-list .item .date {
  margin: 0;
  min-width: 105px;
  padding: 0;
}
.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0;
}
.news-list .item .category span {
  background: rgba(0, 0, 0, .05);
  color: #000;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 1rem;
  line-height: 1;
}
.news-list .item .title {
  margin: 0;
  margin-top: -5px;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: .5px;
  line-height: 1.5;
}

.news-list .item a:hover .title {
  color: #B7A372;
}

@media screen and (max-width: 992px){
  .news-list .item a{
    flex-wrap: wrap;
  }
  .news-list .item .date{
    min-width: 100px;
  }
  .news-list .item .title{
    margin-top: 10px;
  }
}

@media (max-width:992px) {
  .md-show {
    display: block;
  }
  .lg-show {
    display: none;
  }
}
@media (min-width:992) {
  .lg-show {
    display: block;
  }
  .md-show {
    display: none;
  }
}

.measure {
  font-size: 1.1rem;
  line-height: 1.6;
}
.measure ul li {
  list-style-type:cjk-ideographic;
  font-size: 1.35rem;
  margin-top: 10px;
  margin-left: 13px;
  font-weight: 500;
  color: #ceb464;
}
.measure ol li {
  list-style-type: decimal;
  font-size: 1.1rem;
  margin-top: 5px;
  margin-left: -10px;
  font-weight: 400;
  color: #101010;
}
.measure ol li > ul li{
  list-style-type: disc;
  margin-top: 5px;
  margin-left: -10px;
  font-weight: 300;
}
/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts {
  background: rgba(0, 0, 0, .01);
  padding: 50px 0 100px;
}
.thisweek-title {
  font-family: "Playfair", serif;
  font-weight: 700;
  letter-spacing: 0;
}
.thisweek-title span {
  font-size: 2.4rem;
  color: #ceb464;
}
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, .1);
  transition: 0.3s;
  background: #fff;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px 6px 20px;
  font-weight: 500;
  border-top-left-radius: 10px;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: #000;
}

.recent-blog-posts .post-item .meta span {
  font-size: 16px;
  color: #000;
}


.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  line-height: 1;
  transition: 0.3s;
  letter-spacing: 0;
  margin-top: 10px;
  color: rgba(0, 0, 0, .4);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}
.height-date {
  height: 350px;
}

/*--------------------------------------------------------------
# Rrtists
--------------------------------------------------------------*/
#art-brut {
  margin-top: -43px;
  height:250px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
#art-brut h1 {
  color: #fff;
  font-size: 4rem;
  padding-top: 110px;
}
#art-brut .subtitle {
  font-size: 1.3rem;
  margin-top: -40px;
  color: rgba(255, 255, 255, .4);
}
#artists img.artist {
  padding: 50px 15px;
}
#artists h2.artist-name {
  color: #d9be6f;
  margin-top: 100px;
  margin-left: -3px;
  font-size: 34px;
  font-weight: 600;
}
#artists h3.artist-name01 {
  color: rgba(255, 255, 255, .1);
  font-size: 6.6rem;
  margin-top: -140px;
  margin-bottom: 30px;
  font-style: italic;
}
#artists h3.artist-name02 {
  color: rgba(255, 255, 255, .2);
  font-size: 6.6rem;
  margin-top: -140px;
  margin-bottom: 30px;
  font-style: italic;
}
#artists p.artist-detail {
  line-height: 1.6;
  color: #fff;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}
.projects h2 {
  color: #fff;
  margin-top: -20px;
  letter-spacing: 0;
  padding-bottom: 10px;
  font-size: 26px;
}
@media screen and (max-width:768px) {
  #artists h3.artist-name01, #artists h3.artist-name02 {
    font-size: 4rem;
    margin-top: -100px;
  }
  #artists img.artist {
    padding: 50px 15px 0;
    margin-bottom: -20px;
  }
  .projects h2 {
    margin-top: 10px;
  }
}
.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 24px;
  padding: 5px 10px;
  font-weight: 400;
  color: #d9be6f;
  display: inline-block;
  font-weight: 600;
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  
  display: inline-block;
  left: 20px;
  right: 20px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 15px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: #d9be6f;
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

