[class^="section-home-"] {
  padding: 80px 0;
}

@media (max-width: 767px) {
  [class^="section-home-"] {
    padding: 40px 0;
  }
}

@keyframes zoomimg {
  0% {
    -ms-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomimg_in {
  0% {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomimg_out {
  0% {
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.heading-title {
  position: relative;
  z-index: 1;
}

.heading-title .title1 {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--shop-color-main);
  font-weight: 600;
  margin-bottom: 25px;
}

.heading-title .title2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.heading-title .desc {
  margin-bottom: 40px;
  color: rgba(37, 42, 43, 0.6);
}

@media (max-width: 991px) {
  .heading-title .title2 {
    font-size: 30px;
  }

  .heading-title .desc {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .heading-title .title1 {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .heading-title .title2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .heading-title .desc {
    margin-bottom: 25px;
  }
}

.home-slider .container {
  position: relative;
  z-index: 1;
}

.home-slider .slider-item {
  position: relative;
  padding: 80px 0;
}

.home-slider .slider-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.home-slider .slider-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.home-slider .slider-detail {
  color: var(--shop-home-slider-color);
}

.home-slider .slider-detail h2 {
  font-size: 60px;
  /*display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;*/
}

.home-slider .slider-detail .title1 {
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.home-slider .slider-detail .desc {
  margin-top: 20px;
}

.home-slider .slider-detail .btn-more {
  margin-top: 30px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 15px;
}

.home-slider .slider-detail .btn-more .btn-white {
  background: transparent;
  border: 1px solid var(--shop-home-slider-color);
}

.home-slider .slider-detail .btn-more .btn-white:before {
  background: transparent;
}

.home-slider .slider-detail .btn-more .btn-white:hover {
  background-color: var(--shop-color-hover);
}

.home-slider .slider-owl {
  /*pointer-events: none;*/
}

.home-slider .slider-owl .owl-dots {
  display: none;
}

.home-slider .owl-item.active .slider-item:before {
  animation: zoomimg 5s forwards;
}

.home-slider .slide-social .list-social {
  text-align: right;
}

.home-slider .slide-social .list-social li {
  margin-bottom: 10px;
  display: flex;
  justify-content: end;
}

.home-slider .slide-social .list-social li.social-svg svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
  margin-top: -5px;
}

.home-slider .slide-social .list-social li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--shop-home-slider-color);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.home-slider .slide-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.home-slider .slide-video .icon-video {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-slider .slide-video .icon-video .icon-play {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 50%;
}

.home-slider .slide-video .icon-video .icon-play svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  fill: currentColor;
}

.home-slider .slide-video .icon-video .icon-play:hover {
  background: var(--shop-color-main);
  color: #fff;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .home-slider .slider-detail h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .home-slider .slider-detail h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .home-slider .slider-item:before {
    background-image: var(--bg-imgmb);
  }

  .home-slider .slide-social .list-social {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .home-slider .slide-video {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .home-slider .slider-detail h2 {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .home-slider .slider-detail .desc {
    font-size: 14px;
  }
}

.section-home-about1 {
  background: rgba(212, 163, 115, 0.1);
}

.section-home-about1 .about-banner img {
  border-radius: 20px;
  overflow: hidden;
}

.section-home-about1 .about-right .about-banner {
  margin-bottom: 30px;
}

.section-home-about1 .about-right .desc {
  margin-bottom: 30px;
}

.section-home-about1 .about-right .about-list {
  display: flex;
  gap: 30px;
}

.section-home-about1 .about-right .about-list .about-item {
  -ms-flex: 0 0 calc(100% / 3 - 20px);
  flex: 0 0 calc(100% / 3 - 20px);
  max-width: calc(100% / 3 - 20px);
}

.section-home-about1 .about-right .about-list .about-item .item-img {
  margin-bottom: 20px;
}

.section-home-about1 .about-right .about-list .about-item .item-img img {
  max-height: 60px;
}

.section-home-about1 .about-right .about-list .about-item .item-detail .detail-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.section-home-about1 .about-right .about-list .about-item .item-detail .detail-desc {
  color: rgba(37, 42, 43, 0.6);
  margin: 0;
}

.section-home-about1 .about-right .btn-more {
  margin: 40px 0 50px;
}

.section-home-about1 .list-counter {
  margin: 80px 0 0;
  padding: 40px 0;
  border: 1px solid var(--shop-color-border);
  border-radius: 20px;
}

.section-home-about1 .list-counter .counter-item .counter-num {
  letter-spacing: 0.125rem;
  line-height: 1;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  height: 3.75rem;
  font-size: 3.75rem;
  margin: 0 1.25rem;
  font-family: "Calistoga", sans-serif;
}

.section-home-about1 .list-counter .counter-item .counter-num > span {
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 2s ease;
  transform: translateY(0);
  line-height: 1;
}

.section-home-about1 .list-counter .counter-item .counter-num > span span {
  flex: 0 0 100%;
  height: 100%;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(1) > span {
  transition-delay: 0s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(2) > span {
  transition-delay: 0.375s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(3) > span {
  transition-delay: 0.75s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(4) > span {
  transition-delay: 1.125s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(5) > span {
  transition-delay: 1.5s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(6) > span {
  transition-delay: 1.875s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(7) > span {
  transition-delay: 2.25s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(8) > span {
  transition-delay: 2.625s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(9) > span {
  transition-delay: 3s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(10) > span {
  transition-delay: 3.375s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(11) > span {
  transition-delay: 3.75s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(12) > span {
  transition-delay: 4.125s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(13) > span {
  transition-delay: 4.5s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(14) > span {
  transition-delay: 4.875s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(15) > span {
  transition-delay: 5.25s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(16) > span {
  transition-delay: 5.625s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(17) > span {
  transition-delay: 6s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(18) > span {
  transition-delay: 6.375s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(19) > span {
  transition-delay: 6.75s;
}

.section-home-about1 .list-counter .counter-item .counter-num:nth-child(20) > span {
  transition-delay: 7.125s;
}

.section-home-about1 .list-counter .counter-item .counter-desc {
  color: rgba(37, 42, 43, 0.6);
  margin-top: 10px;
}

@media (min-width: 1200px) {
  .section-home-about1 .about-left {
    padding-right: 30px;
  }

  .section-home-about1 .about-right {
    padding-left: 30px;
  }

  .section-home-about1 .list-counter .counter-item:not(:first-child) {
    border-left: 1px solid var(--shop-color-border);
  }
}

@media (max-width: 1199px) {
  .section-home-about1 .about-banner {
    text-align: center;
  }

  .section-home-about1 .about-right {
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .section-home-about1 .about-right .btn-more {
    margin-bottom: 0;
  }

  .section-home-about1 .list-counter {
    margin: 50px 0 0;
    gap: 25px 0;
  }
}

@media (max-width: 767px) {
  .section-home-about1 .about-right .about-list {
    gap: 20px 0;
    flex-flow: wrap;
  }

  .section-home-about1 .about-right .about-list .about-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .section-home-about1 .about-right .about-list .about-item .item-img {
    margin-bottom: 15px;
  }

  .section-home-about1 .about-right .about-list .about-item .item-detail .detail-title {
    font-size: 18px;
  }

  .section-home-about1 .about-right .btn-more {
    margin-top: 30px;
    text-align: center;
  }

  .section-home-about1 .list-counter .counter-item .counter-num {
    height: 2.75rem;
    font-size: 2.75rem;
  }

  .section-home-about1 .list-counter .counter-item .counter-num .counter-desc {
    margin-top: 5px;
  }
}

.section-home-category {
  position: relative;
  color: var(--shop-home-category-color);
}

.section-home-category:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(//theme.hstatic.net/200000931339/1001294381/14/home_category_bg_img.jpg?v=1752);
  background-size: cover;
  background-position: center;
}

.section-home-category > div {
  position: relative;
}

.section-home-category .heading-title {
  max-width: 1000px;
  margin: 0 auto 50px;
}

.section-home-category .list-category {
  position: relative;
  overflow: hidden;
  /*.bg-list{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: var(--bg-img);
      background-size: cover;
      background-position: center;
      transition: all 1.5s;
      -ms-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1);
      opacity: 0;
  }*/
}

.section-home-category .list-category .bg-item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1.5s;
}

.section-home-category .list-category .bg-item .bg-list {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  transition: all 1.5s;
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.section-home-category .list-category .list-bg .bg-item:first-child {
  opacity: 1;
}

.section-home-category .list-category .category-item {
  position: relative;
  z-index: 2;
  -ms-flex: 0 0 calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  min-height: 465px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.section-home-category .list-category .category-item .item-title {
  padding: 40px 20px;
  position: relative;
}

.section-home-category .list-category .category-item .item-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--shop-home-category-bg);
  z-index: -1;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.section-home-category .list-category .category-item .btn-more {
  padding-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(40%);
  transform: translateY(40%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.section-home-category .list-category .category-item.active .item-title:before {
  height: 100%;
}

.section-home-category .list-category .category-item.active .btn-more {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.section-home-category .logo-category {
  margin-top: 60px;
}

.section-home-category .logo-category .logo-title {
  font-size: 22px;
  margin-bottom: 30px;
}

.section-home-category .logo-category .logo-item {
  padding: 0 30px;
}

.section-home-category .logo-category .logo-item img {
  opacity: 0.5;
  transition: all 0.3s;
}

.section-home-category .logo-category .logo-item:hover img {
  opacity: 1;
}

@media (min-width: 1920px) {
  .section-home-category .list-category {
    max-width: 1600px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .section-home-category .list-category .category-item:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 767px) {
  .section-home-category .list-category .category-item {
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
    /*min-height: auto;*/
    min-height: 400px;
    position: unset;
  }

  .section-home-category .list-category .category-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .section-home-category .list-category .category-item:nth-child(3) {
    display: none;
  }

  .section-home-category .list-category .category-item .btn-more {
    padding-top: 20px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}

.section-home-service {
  background: rgba(212, 163, 115, 0.1);
}

.section-home-service .list-service .item-banner img {
  border-radius: 20px;
  overflow: hidden;
}

.section-home-service .list-service .item-service {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-home-service .list-service .item-service .item-icon {
  flex: 0 0 140px;
  border-radius: 20px;
  overflow: hidden;
}

.section-home-service .list-service .item-service .item-detail .detail-title {
  font-size: 26px;
}

.section-home-service .list-service .item-service .item-detail .detail-desc {
  margin: 0;
  color: rgba(37, 42, 43, 0.6);
}

@media (min-width: 992px) {
  .section-home-service .heading-title {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .section-home-service .list-service {
    /*gap: 33%;*/
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 40px;
    /*grid-row-gap: 40px;*/
    grid-row-gap: 25px;
    align-items: center;
    justify-content: center;
  }

  .section-home-service .list-service .item-banner {
    grid-column: 2;
    grid-row-start: 1;
    grid-row-end: 4;
    position: relative;
  }

  .section-home-service .list-service .item-banner a:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
  }

  .section-home-service .list-service .item-banner:hover a:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }

  .section-home-service .list-service .item-service:nth-child(even) {
    flex-flow: row-reverse;
  }

  .section-home-service .list-service .item-service:nth-child(even) .item-detail {
    text-align: right;
  }
}

@media (max-width: 1199px) {
  .section-home-service .list-service {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 20px 0;
  }

  .section-home-service .list-service .item-banner {
    order: 1;
  }
}

@media (max-width: 767px) {
  .section-home-service .list-service .item-service {
    gap: 15px;
  }

  .section-home-service .list-service .item-service .item-icon {
    flex: 0 0 65px;
    border-radius: 8px;
  }

  .section-home-service .list-service .item-service .item-detail .detail-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .section-home-service .list-service .item-service .item-detail .detail-desc {
    font-size: 14px;
  }
}

.section-home-about2 {
  position: relative;
}

.section-home-about2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 250px);
  background: rgba(212, 163, 115, 0.2);
  z-index: 0;
}

.section-home-about2 .banner-about img {
  border-radius: 20px;
}

.section-home-about2 .list-about {
  border-top: 1px solid rgba(37, 42, 43, 0.2);
  padding-top: 30px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.section-home-about2 .list-about .about-item {
  display: flex;
  gap: 15px;
}

.section-home-about2 .list-about .about-item .item-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--shop-color-main);
}

.section-home-about2 .list-about .about-item .item-detail .detail-title {
  font-size: 22px;
}

.section-home-about2 .list-about .about-item .item-detail .detail-desc {
  color: rgba(37, 42, 43, 0.6);
}

@media (min-width: 1200px) {
  .section-home-about2 .about-right {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .section-home-about2 .banner-about {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .section-home-about2 .list-about .about-item {
    gap: 10px;
  }

  .section-home-about2 .list-about .about-item .item-icon svg {
    width: 18px;
    height: 18px;
  }

  .section-home-about2 .list-about .about-item .item-detail .detail-title {
    font-size: 16px;
  }
}

.section-home-review {
  position: relative;
}

.section-home-review:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
  background: rgba(212, 163, 115, 0.1);
}

.section-home-review .heading-title {
  margin-bottom: 60px;
}

.section-home-review .review-bg {
  position: relative;
  color: #ffffff;
  padding: 80px 50px;
  border-radius: 20px;
  overflow: hidden;
}

.section-home-review .review-bg:before, .section-home-review .review-bg:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section-home-review .review-bg:before {
  background-image: url(//theme.hstatic.net/200000931339/1001294381/14/home_review_bg_img.jpg?v=1752);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-home-review .review-bg:after {
  background: rgba(44, 95, 45, 0.8);
}

.section-home-review .review-bg .review-item {
  padding: 30px 40px;
  border: 1px solid;
  border-radius: 20px;
}
.section-home-review .review-bg .list-review {
  z-index: 2;
}

.section-home-review .review-bg .review-item .item-desc {
  margin-bottom: 30px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-home-review .review-item.slick-slide {
  margin: 0 15px;
}
.section-home-review .list-review .slick-dots {
  bottom: -55px;
}

.section-home-review .review-bg .review-item .item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-home-review .review-bg .review-item .item-info .info-avt img {
  max-width: 70px;
  border-radius: 50%;
}

.section-home-review .review-bg .review-item .item-info .info-detail p {
  margin: 0;
}

.section-home-review .review-bg .review-item .item-info .info-detail p.detail-name {
  font-size: 18px;
  font-family: "Calistoga", sans-serif;
  font-weight: 600;
}

.section-home-review .review-bg .review-item .item-info .info-detail p.detail-position {
  font-size: 13px;
  color: var(--shop-color-main);
}

.section-home-review .review-bg .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  text-align: center;
}

.section-home-review .review-bg .owl-dots .owl-dot {
  margin: 0 3px;
  outline: 0;
}

.section-home-review .review-bg .owl-dots .owl-dot span {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  width: 7px;
  height: 7px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.section-home-review .review-bg .owl-dots .owl-dot.active span {
  background: #ffffff;
}

@media (max-width: 767px) {
  .section-home-review {
    padding-top: 0;
  }

  .section-home-review .heading-title {
    margin-bottom: 30px;
  }

  .section-home-review .review-bg {
    padding: 40px 20px;
    width: calc(100% - 30px);
  }

  .section-home-review .review-bg .review-item {
    padding: 20px 15px;
  }

  .section-home-review .review-bg .owl-dots {
    bottom: -40px;
  }
}

.section-home-gallery .heading-title .title2 {
  margin: 0;
}

.section-home-gallery .list-gallery {
  margin-top: 50px;
  display: grid;
  grid-template-areas: 'item1 item1 item2 item4' 'item1 item1 item3 item4';
  gap: 30px;
}

.section-home-gallery .list-gallery .gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.section-home-gallery .list-gallery .gallery-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.section-home-gallery .list-gallery .gallery-item--1 {
  grid-area: item1;
  min-height: 550px;
}

.section-home-gallery .list-gallery .gallery-item--2 {
  grid-area: item2;
  min-height: 100px;
}

.section-home-gallery .list-gallery .gallery-item--3 {
  grid-area: item3;
}

.section-home-gallery .list-gallery .gallery-item--4 {
  grid-area: item4;
}

.section-home-gallery .gallery-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.section-home-gallery .gallery-video .icon-video {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section-home-gallery .gallery-video .icon-video .icon-play {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 50%;
}

.section-home-gallery .gallery-video .icon-video .icon-play svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  fill: currentColor;
}

.section-home-gallery .gallery-video .icon-video .icon-play:hover {
  background: var(--shop-color-main);
  color: #fff;
}

@media (min-width: 992px) {
  .section-home-gallery .gallery-right {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .section-home-gallery .gallery-right {
    margin-top: 20px;
  }

  .section-home-gallery .list-gallery {
    gap: 15px;
    grid-template-areas: 'item1 item1' 'item2 item4' 'item3 item4';
  }

  .section-home-gallery .list-gallery .gallery-item--2 {
    min-height: 250px;
  }

  .section-home-gallery .list-gallery .gallery-item--3 {
    min-height: 120px;
  }
}

@media (max-width: 767px) {
  .section-home-gallery .list-gallery {
    margin-top: 30px;
  }

  .section-home-gallery .gallery-video {
    margin-top: 15px;
  }

  .section-home-gallery .gallery-video .icon-video .icon-play {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .section-home-gallery .gallery-video .icon-video .icon-play svg {
    width: 10px;
    height: 10px;
  }
}

.section-home-form {
  position: relative;
  background: rgba(212, 163, 115, 0.1);
}

.section-home-form:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-image: url(//theme.hstatic.net/200000931339/1001294381/14/home_form_bg_img.jpg?v=1752);
  background-size: cover;
  background-position: center;
}

.section-home-form .heading-title .title1 {
  margin-bottom: 15px;
}

.section-home-form .heading-title .title2 {
  margin-bottom: 20px;
}

.section-home-form .heading-title .desc {
  margin-bottom: 30px;
}

.section-home-form .form-bg {
  padding: 60px;
  background: #fff;
  position: relative;
  border-radius: 20px;
}

.section-home-form .form-banner {
  padding-top: 40px;
  border-top: 1px solid var(--shop-color-border);
}

.section-home-form .form-banner img {
  border-radius: 20px;
}

.section-home-form .form-booking {
  padding: 50px 30px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.section-home-form .form-booking:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(//theme.hstatic.net/200000931339/1001294381/14/home_form_bg_form.jpg?v=1752);
  background-size: cover;
  background-position: center;
}

.section-home-form .form-booking .contact-form .row {
  margin: 0;
  gap: 20px;
}

.section-home-form .form-booking .contact-form .input-group {
  margin: 0;
}

.section-home-form .form-booking .contact-form .input-group input, .section-home-form .form-booking .contact-form .input-group textarea, .section-home-form .form-booking .contact-form .input-group select {
  border-radius: 20px;
  font-size: 14px;
  color: #5c5c5c;
  outline: none;
  box-shadow: none;
}

.section-home-form .form-booking .contact-form .input-group input::-webkit-input-placeholder, .section-home-form .form-booking .contact-form .input-group textarea::-webkit-input-placeholder, .section-home-form .form-booking .contact-form .input-group select::-webkit-input-placeholder {
  color: #5c5c5c !important;
}

.section-home-form .form-booking .contact-form .input-group input::-moz-placeholder, .section-home-form .form-booking .contact-form .input-group textarea::-moz-placeholder, .section-home-form .form-booking .contact-form .input-group select::-moz-placeholder {
  color: #5c5c5c !important;
}

.section-home-form .form-booking .contact-form .input-group input:-moz-placeholder, .section-home-form .form-booking .contact-form .input-group textarea:-moz-placeholder, .section-home-form .form-booking .contact-form .input-group select:-moz-placeholder {
  color: #5c5c5c !important;
}

.section-home-form .form-booking .contact-form .input-group input, .section-home-form .form-booking .contact-form .input-group select {
  height: 58px;
}

.section-home-form .form-booking .contact-form .input-group select {
  border: 1px solid var(--shop-color-border);
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.section-home-form .form-booking .contact-form .select-group i {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #5c5c5c;
  z-index: 3;
}

.section-home-form .form-booking .contact-form .col-form {
  padding: 0;
  position: relative;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.section-home-form .form-booking .contact-form .form-datepicker {
  display: flex;
  flex-flow: wrap;
  gap: 15px 20px;
}

.section-home-form .form-booking .contact-form .form-datepicker > div {
  -ms-flex: 0 0 calc(100% / 2 - 10px);
  flex: 0 0 calc(100% / 2 - 10px);
  max-width: calc(100% / 2 - 10px);
}

.section-home-form .form-booking .contact-form .form-datepicker .form-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  border: 1px solid var(--shop-color-border);
  padding: 0 20px;
  border-radius: 20px;
  background: #fff;
}

.section-home-form .form-booking .contact-form .form-datepicker .form-date label {
  margin: 0;
  color: #5c5c5c;
}
.form-datepicker.t-datepicker input {
  color: #5c5c5c;
}

.section-home-form .form-booking .contact-form .form-datepicker .form-date .t-check {
  flex: 0 0 40%;
  margin-left: 10px;
  position: unset;
  text-align: right;
}

.section-home-form .form-booking .contact-form .form-datepicker .form-date .t-check .t-dates {
  position: relative;
  padding: 0;
  height: auto;
}

.section-home-form .form-booking .contact-form .form-datepicker .form-date .t-datepicker-day {
  right: 0;
  left: 0;
  width: 100%;
}

.section-home-form .form-booking .contact-form .btn-booking {
  width: 100%;
  padding: 13px 20px;
  background-color: var(--shop-color-button);
}

.section-home-form .form-booking .contact-form .btn-booking:before {
  background-color: var(--shop-color-main);
}

@media (min-width: 1200px) {
  .section-home-form .form-left {
    padding-right: 40px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }

  .section-home-form .form-right {
    padding: 0;
  }

  .section-home-form .form-booking .contact-form .col-form.col-form-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section-home-form .form-booking .contact-form .col-form.col-form-6 {
    -ms-flex: 0 0 calc(100% / 2 - 10px);
    flex: 0 0 calc(100% / 2 - 10px);
    max-width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 991px) {
  .section-home-form .form-right {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .section-home-form {
    padding-bottom: 20px;
  }

  .section-home-form .heading-title .desc {
    margin-bottom: 20px;
  }

  .section-home-form .form-bg {
    width: calc(100% - 30px);
    padding: 30px 20px;
  }

  .section-home-form .form-banner {
    padding-top: 20px;
  }

  .section-home-form .form-booking {
    padding: 30px 20px;
  }

  .section-home-form .form-booking .contact-form .row {
    gap: 10px;
  }

  .section-home-form .form-booking .contact-form .input-group input, .section-home-form .form-booking .contact-form .input-group select, .section-home-form .form-booking .contact-form .input-group textarea {
    font-size: 13px;
  }

  .section-home-form .form-booking .contact-form .input-group input, .section-home-form .form-booking .contact-form .input-group select {
    height: 40px;
  }

  .section-home-form .form-booking .contact-form .input-group textarea {
    height: 80px;
    padding: 10px 20px;
  }

  .section-home-form .form-booking .contact-form .select-group i {
    top: calc(50% - 6px);
  }

  .section-home-form .form-booking .contact-form .form-datepicker > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section-home-form .form-booking .contact-form .form-datepicker .form-date {
    height: 40px;
    font-size: 13px;
  }

  .section-home-form .form-booking .contact-form .btn-booking {
    padding: 10px 20px;
  }
}

.section-home-blog {
  padding-top: 40px;
  background: rgba(212, 163, 115, 0.1);
}

.section-home-blog .heading-title .title1 {
  font-size: 14px;
  margin-bottom: 20px;
}

.section-home-blog .heading-title .title2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-home-blog .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  text-align: center;
}

.section-home-blog .owl-dots .owl-dot {
  margin: 0 3px;
  outline: 0;
}

.section-home-blog .owl-dots .owl-dot span {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  width: 7px;
  height: 7px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(37, 42, 43, 0.5);
}

.section-home-blog .owl-dots .owl-dot.active span {
  background: #252a2b;
}

@media (min-width: 1200px) {
  .section-home-blog .blog-left {
    padding-right: 30px;
  }

  .section-home-blog .blog-right {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .section-home-blog .row {
    flex-flow: column-reverse;
  }

  .section-home-blog .heading-title .title2 {
    font-size: 30px;
  }
  .header-wrap-menu {
    margin: 0 auto;
    max-width: 480px;
    position: fixed !important;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: 999;
    background: #ffffff;
    background-clip: padding-box;
    display: flex!important;
    flex-direction: column;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.35s ease, left 0.25s ease, visibility 0s;
    transition: transform 0.35s ease, left 0.25s ease, visibility 0s;
  }
  .header-wrap-menu.show {
    left: 0;
    width: 85%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .mainHeader .header-wrap-menu .menuList-main > li > a {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mainHeader .header-wrap-menu .menuList-main {
    display: flex;
    flex-direction: column;
    text-align: start;
  }
  .mainHeader .header-wrap-menu .menuList-main li.has-submenu .menuList-submain {
    position: relative;
    box-shadow: none;
    padding: 0;
    pointer-events: auto;
    visibility: visible;
    /*top: 100%;*/
    opacity: 1;
    display: none;
  }
  .open-sub-menu {
    width: 40px;
    text-align: right;
  }
  .mainHeader .header-wrap-menu .navbar-mainmenu {
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  .section-home-blog .heading-title .title2 {
    font-size: 22px;
  }

  .section-home-blog .owl-dots {
    bottom: -10px;
  }



}

