/*------------------------------------------------------------------
[Table of contents]
1. Global CSS   
    1.1 Tipper CSS
2. Menu CSS
    2.1 Sidebar (Menu Widgets) CSS
3. Blog Page CSS
4. Single Post CSS
5. Comments CSS
6. Contact Page CSS
7. Archive CSS / Search CSS / 404 Page CSS / Attachment Page
8. Attachment Page CSS
9. Responsive CSS
-------------------------------------------------------------------*/

@import url("clear.css");
@import url("font-awesome.min.css");
@import url("sm-clean.css");
@import url("swiper.min.css");
@import url("prettyPhoto.css");
@import url("common.css");
@import url("contact.css");
/* ===================================
    1. Global CSS
====================================== */

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  color: #000000;
  background-color: #f6f1e4;
  overflow-x: hidden;
}

body.wait-preloader {
  overflow: hidden;
}

*,
::after,
::before {
  box-sizing: border-box;
}



img {
  max-width: 100%;
}

body a {
  text-decoration: none;
  color: #000000;
  transition: color 0.2s linear, background-color 0.2s linear,
    border-color 0.2s linear;
}

body a:hover {
  color: #acacac;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* .site-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
} */

.doc-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #fff;
}

.doc-loader img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-logo {
  position: absolute;
  top: 35px;
  left: 0;
}

.header-logo img {
  max-width: none;
  max-height: none;
  width: 100px;
  height: 70px;
}

.site-content {
  position: relative;
  margin-top: 50px;
}

.site-content.has-horizontal-slider {
  width: 100%;
  margin-left: 0;
  margin-top: 0;
}

.content-right {
  float: right;
  width: 100%;
  position: relative;
}

.content-right-holder {
  height: 100%;
  padding-left: 100px;
}

.page-template-default .content-right-holder {
  margin-top: 50px;
  margin: 0 auto;
}

.site-description {
  font-size: 13px;
  line-height: 20px;
  padding-top: 40px;
}

h1.entry-title.page-title {
  margin-bottom: 50px;
}

.animate {
  opacity: 0;
  transition: 0.3s ease-in;
}

.animate.show-it {
  opacity: 1;
}

.content-1170 {
  width: 1170px;
  max-width: 80%;
}

.content-960 {
  width: 960px;
  max-width: 95%;
}

.content-850 {
  width: 850px;
  max-width: 95%;
}

.content-570 {
  width: 570px;
  max-width: 95%;
}

nav.navigation.pagination {
  margin: 50px 0 100px;
}

.nav-links .prev,
.nav-links .next {
  display: none;
}

.big-text {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  margin-bottom: 45px;
  font-size: 98px;
  line-height: 110%;
}

.medium-text {
  font-size: 22px;
  line-height: 40px;
  color: #939393;
}

.info-code-title {
  font-size: 10px;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 15px;
}

.info-code-content,
.info-code-content a {
  color: #939393;
}

.title-description-up {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 6px;
}

.margin-0 {
  margin: 0 !important;
}

.one_half.margin-0 {
  width: 50%;
}

.one_third.margin-0 {
  width: calc(100% / 3);
}

.two_third.margin-0 {
  width: calc(100% / 3 * 2);
}

.one_fourth.margin-0 {
  width: 25%;
}

.three_fourth.margin-0 {
  width: 75%;
}

a.socail-text {
  margin-right: 15px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

a.button {
  color: #fff !important;
  background-color: #000;
  padding: 8px 0px 8px 11px;
  display: inline-block;
  font-size: 11px;
  min-width: 170px;
  letter-spacing: 8px;
  transition: opacity 0.3s ease;
  text-align: center;
}

a.button:hover {
  opacity: 0.8;
}

.portfolio-content {
  margin-bottom: 100px;
}


/* ===================================
    2. Menu CSS
====================================== */

#header-main-menu {
  padding-left: 50px;
  padding-right: 10px;
  width: 40%;
  display: inline-block;
  vertical-align: top;
}

#header-main-menu.no-right-text {
  width: 100%;
}

.main-menu.sm-clean {
  background-color: transparent;
  display: inline-block;
  max-width: 90%;
}

.sm ul {
  padding-left: 0;
}

.sm-clean a {
  position: relative;
}

.sm-clean a,
.sm-clean a:hover,
.sm-clean a:focus,
.sm-clean a:active {
  color: #000;
  padding: 10px 0;
  font-size: 26px;
  line-height: 110%;
  font-weight: 800;
}

.sm-clean>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 15px;
  background-color: #9b3d35;
  transition: width 0.3s;
  position: absolute;
  left: 30px;
  bottom: 12px;
  z-index: -1;
}

.sm-clean a.current:after,
.sm-clean a:hover:after,
.sm-clean ul a:hover:after {
  width: 100%;
}

.sm-clean a span.sub-arrow {
  color: #acacac;
  font-size: 45px !important;
  left: -42px;
}

.sm-clean a span.sub-arrow:before {
  display: block;
  content: "\203A";
  transform: rotate(90deg);
}

.sm-clean a.highlighted span.sub-arrow:before {
  display: block;
  content: "\203A";
  transform: rotate(270deg) translateY(-3px);
  margin-left: -4px;
}

.sm-clean .sub-menu li a,
.sm-clean .children li a {
  color: #bbbbbb;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 10px;
  padding: 10px 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.sm-clean .sub-menu li a:hover,
.sm-clean .sub-menu li a.current,
.sm-clean .children li a:hover,
.sm-clean .children li a.current {
  color: #fff;
}

.menu-background-image {
  position: absolute;
  z-index: -1;
  top: 38px;
}

.menu-left-part {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f6f1e4;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 998;
  top: 0;
  left: calc(-100% - 100px);
  transition: 0.4s left cubic-bezier(0.22, 0.61, 0.36, 1);
  padding-left: 150px;
  padding-top: 0;
}


.menu-left-part>* {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.menu-left-part.open {
  left: 0;
}

.menu-right-part {
  position: fixed;
  width: 0;
  left: 0px;
  top: 0;
  z-index: 999;
  transition: 0.2s left cubic-bezier(0.22, 0.61, 0.36, 1),
    0s 0.2s background linear;
  height: 100%;
  overflow: visible;
}

.menu-right-part.open a {
  color: black;
}

#header-main-menu .search-field {
  font-family: "Poppins", sans-serif;
  max-width: 480px;
  width: 90%;
  color: #fff;
  padding: 0;
  margin-top: -3px;
  font-size: 50px;
  line-height: 110%;
  font-weight: 800;
  background-color: transparent;
  border: none;
  border-bottom: 5px solid transparent;
  text-align: left;
  transition: border 0.4s ease;
  -webkit-appearance: none;
}

#header-main-menu .search-field::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

#header-main-menu .search-field::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

#header-main-menu .search-field::-webkit-search-decoration,
#header-main-menu .search-field::-webkit-search-cancel-button,
#header-main-menu .search-field::-webkit-search-results-button,
#header-main-menu .search-field::-webkit-search-results-decoration {
  display: none;
}

#header-main-menu .search-field:focus {
  border-bottom: 5px solid #9b3d35;
}

#header-main-menu .search-field::-webkit-input-placeholder {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 5px 0;
  font-size: 50px;
  line-height: 110%;
  font-weight: 800;
  opacity: 1;
  text-align: left;
}

#header-main-menu .search-field::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 5px 0;
  font-size: 50px;
  line-height: 110%;
  font-weight: 800;
  opacity: 1;
  text-align: left;
}

#header-main-menu .search-field:-ms-input-placeholder {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 5px 0;
  font-size: 50px;
  line-height: 110%;
  font-weight: 800;
  opacity: 1;
  text-align: left;
}

#header-main-menu .search-field:-moz-placeholder {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 5px 0;
  font-size: 50px;
  line-height: 110%;
  font-weight: 800;
  opacity: 1;
  text-align: left;
}

.menu-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 47px;
  line-height: 60px;
  color: #000;
}

.menu-right-text .menu-text a {
  color: #9b3d35;
}

.menu-right-text .menu-text a:hover {
  color: #acacac;
}

p.menu-text-title {
  color: #9b3d35;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.menu-right-text {
  display: inline-block;
  width: 45%;
  vertical-align: top;
  padding-top: 30px;
  color: #fff;
}

.menu-right-text a {
  color: #fff;
}

.logo-holder {
  line-height: 0;
  font-size: 0;
}

.logo-holder img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}



#toggle {
  height: 70px;
  position: relative;
  transition: transform 0.3s linear;
}

.open #toggle,
.done #toggle {
  background-color: transparent;
}

#toggle:hover {
  cursor: pointer;
}

#toggle:before,
#toggle:after {
  content: "";
  height: 3px;
  width: 0;
  left: 0px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: all 0.25s;
}

.other_page_line {
  background: #000 !important;
}

.other_page.on {
  color: #fff;
}

#toggle:before {
  transform: translate3d(0, -8px, 0px);
}

.other_page {
  color: #000;
}

#toggle:hover:before {
  margin-left: 9px;
}

#toggle.on:before {
  transform: rotate3d(0, 0, 1, 45deg) translate3d(0, 0, 0);
  background-color: #494117;
  margin-left: 0;
  width: 26px !important;
}

#toggle.on:after {
  transform: rotate3d(0, 0, 1, -45deg);
  background-color: #9b3d35;
  width: 26px !important;
}

#toggle:after {
  transform: translate3d(0, 8px, 0);
}

#toggle .menu-line {
  width: 0;
  height: 3px;
  background: #fff;
  left: 22px;
  position: absolute;
  transition: all 0.25s;
  top: 35px;
}

#toggle.all-loaded .menu-line {
  width: 13px;
}

#toggle.all-loaded:before {
  width: 21px;
}

#toggle.all-loaded:after {
  width: 30px;
}

#toggle:hover .menu-line {
  margin-left: 17px;
}

#toggle.on .menu-line {
  opacity: 0;
}

/* ===================================
    9. Horizontal Slider CSS
====================================== */

.horizontal-slider .swiper-slide.animate-slide {
  transition: transform 0.3s linear;
  transform: translateX(80px);
  opacity: 0;
}

.horizontal-slider .swiper-slide.animate-slide.animate-done {
  transform: translateX(0);
  opacity: 1;
}

.horizontal-slider .swiper-slide .post-num {
  color: #000;
  position: absolute;
  bottom: 195px;
  left: -120px;
  transform: rotate(270deg);
  font-size: 14px;
  font-weight: 500;
  -webkit-backface-visibility: hidden;
}

.horizontal-slider .swiper-slide h2.entry-title {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  line-height: 65px;
  padding: 5px 0 25px 0;
  font-weight: 700;
}

.horizontal-slider .swiper-slide .cat-links {
  color: #000000;
}

.horizontal-slider .swiper-slide .cat-links:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #000;
  vertical-align: 5px;
  margin-right: 5px;
}

.horizontal-slider .carousel-slider img {
  height: 100vh;
  max-width: none;
}

.horizontal-slider .carousel-cat-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.horizontal-slider .carousel-cat-links ul li {
  display: inline-block;
  margin-right: 25px;
}

.horizontal-slider .carousel-cat-links ul li:last-child {
  margin-right: 0 !important;
}

.horizontal-slider .carousel-cat-links ul li a {
  background-color: #9b3d35;
  padding: 10px 15px 10px 19px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.horizontal-slider .carousel-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s linear;
  padding: 80px 60px;
  visibility: hidden;
}

.horizontal-slider .carousel-item-info h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  color: #fff;
}

.horizontal-slider .carousel-item-info a {
  color: #fff;
  transition: opacity 0.3s ease;
}

.horizontal-slider .carousel-item-info a:hover {
  opacity: 0.9;
}

.horizontal-slider .carousel-item-image:hover .carousel-item-info,
.horizontal-slider .carousel-item-image:hover a.img-thumb:after,
.horizontal-slider .carousel-item-image:hover .carousel-item-image-shadow:after {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}

.horizontal-slider .carousel-item-image a.img-thumb:after,
.horizontal-slider .carousel-item-image .carousel-item-image-shadow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,
      transparent 25%,
      rgba(0, 0, 0, 0.34) 100%);
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  opacity: 0;
}

.carousel-item-image.no-title-on-slide .carousel-item-image-shadow:after {
  display: none;
}

.horizontal-slider .swiper-slide.more-posts-portfolio {
  color: #000;
  margin-right: 0 !important;
  margin-left: 0 !important;
  cursor: pointer;
  width: 85px;
  transition: 0.3s;
}

.horizontal-slider .swiper-slide.more-posts-portfolio:hover {
  color: #999;
}

.horizontal-slider .portfolio-slider-load-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  min-width: 400px;
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 6px;
}

.horizontal-slider .carousel-item-text {
  max-width: 500px;
}

.horizontal-slider .carousel-item-text .carousel-content {
  color: #797979;
}

.horizontal-slider .carousel-item-image {
  position: relative;
}

.site-wrapper .horizontal-slider .carousel-item-image img {
  max-width: none;
  max-height: none;
  height: calc(100vh - 70px);
  width: auto;
}

.horizontal-slider .post-num .total-num:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: black;
  vertical-align: 4px;
  margin-right: 10px;
  margin-left: 10px;
}

/* ===================================
    8. Image Slider CSS
====================================== */

.simple-image-slider-pagination.swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-bottom: 50px;
  margin-top: 30px;
}

.simple-image-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  vertical-align: middle;
  margin: 0 5px;
  border: 6px solid white;
}

.simple-image-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  border: 2px solid black;
  background-color: transparent;
}

/* ===================================
    4. Gallery CSS
====================================== */

.coco-gallery-item {
  float: left;
  height: calc(50vh - 45px);
  margin: 10px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.coco-image-gallery {
  padding: 0;
  margin: 0;
  list-style: none;
}

.coco-image-gallery:after {
  content: "";
  display: block;
  clear: both;
}

.site-wrapper .coco-gallery-item img {
  height: 100%;
  transition: all 0.3s ease;
}

.gallery-item-text {
  position: absolute;
  bottom: -20px;
  opacity: 0;
  background-color: #9b3d35;
  color: #fff;
  padding: 10px;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 0;
}

.coco-gallery-item:hover .gallery-item-text {
  opacity: 1;
  bottom: 0;
}

.black-white li.coco-gallery-item img,
li.coco-gallery-item.b-w img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.black-white li.coco-gallery-item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

@media screen and (min-width: 1024px) {
  .split-gallery {
    clear: left;
  }
}

/* ===================================
    5. About Page (Split Page) CSS
====================================== */

.page-split-right {
  width: calc(50% - 100px);
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}

.page-split-left {
  width: calc(50vw - 300px);
  margin-left: 200px;
  margin-bottom: 100px;
}

.site-wrapper img.split-image {
  display: none;
  margin: 0 auto;
  width: 100%;
}

.my-info span {
  color: #adadad;
}

/* ===================================
    3. Blog Page CSS
====================================== */

.blog-holder {
  width: calc(45vw - 100px);
}

.blog-item-holder {
  margin: 0 auto;
}

.blog-item-holder .entry-holder {
  display: flex;
  width: 100%;
  position: relative;
  padding: 35px 0;
  align-items: center;
  overflow: hidden;
}

.blog-item-holder .entry-holder:after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #f7f7f7;
  position: absolute;
  bottom: 0;
}

.blog-item-holder .post-thumbnail {
  position: fixed;
  width: 50vw;
  height: 100vh;
  right: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  visibility: hidden;
  overflow: hidden;
}

.blog-featured-image-holder {
  background-image: url(images/blog_img_02.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.blog-item-holder .entry-holder.active-post+.post-thumbnail {
  opacity: 1;
  visibility: visible;
}

.blog-item-holder .entry-info {
  font-size: 10px;
  margin-right: 20px;
  min-width: 150px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 20px;
  font-weight: 700;
  color: #5a5a5a;
}

.blog-item-holder h2.entry-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 37px;
  padding: 0;
  word-break: break-word;
}

.more-posts-index-holder {
  min-height: 1px;
  width: calc(50vw - 200px);
  max-width: 600px;
  margin-top: 65px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.more-posts-index-wrapper {
  padding-left: 190px;
}

.more-posts {
  color: #000 !important;
  padding: 8px 0px;
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 6px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.more-posts:hover {
  opacity: 0.8 !important;
}

/* ===================================
    4. Single Post CSS
====================================== */

.single-post .single-post-header-content {
  margin-bottom: 50px;
}

.single-post .single-post-header-content .attachment-post-thumbnail {
  margin-left: auto;
  margin-right: auto;
}

.single-post .post-info-wrapper {
  font-size: 15px;
  color: #939393;
  width: 150px;
  margin-right: 45px;
  float: left;
  clear: left;
  min-width: 150px;
  min-height: 1px;
  margin-top: 9px;
}

.single-post .post-info-wrapper .sticky-spacer {
  position: static !important;
}

.single-post .post-info-wrapper .entry-info {
  position: relative;
}

.single-post .post-info-wrapper .entry-info>div {
  margin-bottom: 20px;
}

.single-post .post-info-wrapper .entry-info>div:last-of-type {
  margin-bottom: 0;
}

.single-post .post-info-wrapper .entry-info:after {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 3px;
  height: 100%;
  background-color: #9b3d35;
}

.single-post .post-info-wrapper a {
  color: #000000;
}

.single-post .post-info-wrapper .text-holder {
  font-size: 12px;
  color: #a0a0a0;
  letter-spacing: 3px;
  margin-bottom: 0;
  line-height: 15px;
  font-weight: 500;
}

.single-post .post-info-wrapper .text-holder+div {
  color: #000;
}

.single-post h1.entry-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 55px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin: 0 auto 20px;
  width: 680px;
  float: left;
  margin-left: 195px;
  max-width: 100%;
}

.single-post .entry-info div:last-of-type:after {
  display: none;
}

.single-post .entry-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-post .entry-info ul li {
  display: inline-block;
}

.single-post .entry-info .cat-links {
  line-height: 25px;
  margin-top: 5px;
}

.single-post .entry-info .cat-links li:after {
  content: ",";
  padding-right: 5px;
}

.single-post .entry-info .cat-links ul li:last-child:after {
  display: none;
}

.single-post-featured-image {
  padding-bottom: 40px;
  width: 1300px;
  width: 680px;
  float: left;
}

.single-post .entry-content {
  font-size: 15px;
  line-height: 30px;
  color: #000;
  width: 680px;
  float: left;
  margin: 0 auto;
  max-width: 100%;
}

.entry-content>p {
  margin-bottom: 16px;
}

.single .nav-links {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 99;
}

.single .nav-links>a {
  background-color: #9b3d35;
  padding: 25px 35px;
  display: block;
  margin: 0;
}

.single .nav-links>a:hover {
  background-color: #c0ec2e;
}

.single .nav-links>a span {
  color: #fff;
}

/* ===================================
    6. Contact Page CSS
====================================== */

.cfh {
  margin-top: -100px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 0;
  border-bottom: 2px solid;
  padding-top: 13px;
  padding-bottom: 13px;
  margin: 10px 0;
  height: 28px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  width: 100%;
  line-height: 25px;
  background-color: #f6f1e4;
}

.contact-form input[name="your-name"] {
  margin-top: 0;
  padding-top: 0;
}

.contact-form textarea {
  height: 150px;
}

.contact-form input[type="submit"] {
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 20px 0px;
  font-size: 11px;
  cursor: pointer;
  margin-bottom: 25px;
  vertical-align: middle;
  text-decoration: none;
  background: #9b3d35;
  color: #fff;
  font-family: "Poppins", sans-serif;
  width: 100%;
  letter-spacing: 8px;
  transition: opacity 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  opacity: 0.8;
}

.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  font-family: "Poppins", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
}

.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  opacity: 1;
}

.contact-form input[type="text"]:-ms-input-placeholder,
.contact-form input[type="email"]:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  font-family: "Poppins", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
}

.contact-form input[type="text"]:-moz-placeholder,
.contact-form input[type="email"]:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
  font-family: "Poppins", sans-serif;
  color: #404040;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  opacity: 1;
}

/* ===================================
    9. Responsive CSS
====================================== */

@media screen and (max-width: 1360px) {
  .single-post h1.entry-title {
    margin-left: auto;
    float: none;
    text-align: center;
    margin-bottom: 15px;
  }

  .single-post .post-info-wrapper {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .single-post .post-info-wrapper .sticky-spacer {
    width: 100% !important;
    height: auto !important;
  }

  .single-post .post-info-wrapper .entry-info {
    position: relative !important;
    top: 0 !important;
  }

  .single-post .post-info-wrapper .entry-info:after {
    display: none;
  }

  .single-post .post-info-wrapper .entry-info>div {
    display: inline-block;
    margin: 0 20px;
  }

  .single-post .entry-content {
    float: none;
  }

  .more-posts-index-holder,
  .blog-holder {
    width: calc(70vw - 200px);
  }

  .blog-item-holder .post-thumbnail {
    width: 30vw;
  }

  .page-split-left {
    width: calc(50vw - 200px);
    margin-left: 150px;
  }
}

@media screen and (max-width: 1024px) {

  .menu-right-text {
    padding-top: 0;
  }

  .menu-text {
    font-size: 35px;
    line-height: 120%;
  }
}

@media screen and (max-width: 1020px) {
  .site-content {
    margin-top: 100px;
  }

  .page-template-default .content-right-holder {
    width: 95%;
    padding: 0;
  }

  .header-logo {
    top: 0;
    transition: transform 0.3s linear;
  }

  .open .header-logo {
    transform: translateX(-100%);
  }

  .menu-right-part {
    width: 100%;
    height: auto;
    min-height: 100px;
  }

  #toggle {
    padding: 0;
  }

  .horizontal-slider {
    padding-left: 0;
  }

  #header-main-menu {
    width: 100% !important;
    display: block;
  }

  .menu-left-part {
    padding-top: 100px;
    height: 100%;
    padding-left: 0px;
    width: 100%;
  }


  .menu-left-part>* {
    position: relative;
    top: 0;
    transform: none;
  }

  .menu-right-text {
    display: block;
    width: 75%;
    margin-left: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .single .nav-links {
    position: relative;
    margin: 30px auto;
    text-align: center;
  }

  .single .nav-links>a {
    display: inline-block;
    margin: 0 10px;
    padding: 15px 25px;
  }

  .tipper {
    display: none !important;
  }

  .more-posts-index-holder,
  .blog-holder {
    width: 95%;
    padding: 0;
    margin: 50px auto;
    text-align: center;
  }

  .more-posts-index-wrapper {
    padding: 0;
  }

  .blog-item-holder .entry-info {
    margin: 0;
  }

  .blog-item-holder .entry-holder {
    opacity: 1;
    padding: 25px 0;
  }

  .blog-item-holder .post-thumbnail {
    display: none;
  }

  .blog-item-holder .entry-holder {
    display: block;
  }

  .cfh {
    margin-top: 0;
  }

  .img-right {
    margin-right: auto;
  }

  .big-text {
    font-size: 65px;
    text-align: center;
  }

  .title-description-up {
    text-align: center;
    margin-left: -6px;
  }

  .coco-gallery-item,
  .site-wrapper .coco-gallery-item img {
    height: auto;
    max-width: 100%;
  }

  .coco-gallery-item {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: table;
    margin-bottom: 70px;
  }

  p.gallery-item-text {
    position: relative;
    opacity: 1;
    bottom: 0;
  }

  .page-split-left {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    text-align: center;
  }

  .page-split-right {
    width: 100%;
    position: relative;
    background-image: none !important;
  }

  .page-split-right img.split-image {
    display: block;
  }

  @media screen and (max-width: 500px) {
    .horizontal-slider .no-horizontal-slider {
      display: block !important;
      width: 100%;
    }

    .worshop-start {
      width: 100%;
      height: auto;
    }

    .works-cont {
      padding: 20px 0px !important;
      height: 100%;
      width: 100%;
    }

    .workmain-2 {
      padding: 0 10px !important;
    }

    main.work-main {
      margin-top: 78px;
    }

    .workmain-1 {
      width: 100%;
      display: inline-block;
      margin: 0 0 60px;
    }

    .workmain-img {
      margin-bottom: 28px;
    }

    h2.hedi {
      text-transform: none;
      font-weight: bold;
      color: #444;
      font-size: 26px;

    }

    p.art-work-para {
      padding: 0 0 7px;
      font-size: 16px;
      line-height: 27px;
    }



  }



  .horizontal-slider .no-horizontal-slider .swiper-slide {
    display: block !important;
    height: auto;
    margin-bottom: 70px;
    margin-left: 0;
    margin-right: 0;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-text {
    max-width: 100%;
  }

  .horizontal-slider .no-horizontal-slider .post-num {
    display: none;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-image img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-info {
    position: relative;
    opacity: 1;
    padding: 0;
    transform: none !important;
    margin-top: 25px;
    visibility: visible;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-info h2 {
    font-size: 35px;
    line-height: 120%;
    padding: 0;
    color: #000;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-info h2 a {
    color: #000;
  }

  .horizontal-slider .no-horizontal-slider .carousel-cat-links ul {
    margin-bottom: 20px;
  }

  .horizontal-slider .no-horizontal-slider .carousel-cat-links ul li {
    margin: 5px 25px 0 0;
  }

  .horizontal-slider .no-horizontal-slider .carousel-cat-links ul li a {
    font-size: 9px;
  }

  .horizontal-slider .no-horizontal-slider .carousel-item-image a.img-thumb:after,
  .horizontal-slider .no-horizontal-slider .carousel-item-image .carousel-item-image-shadow:after {
    display: none;
  }

  .horizontal-slider .no-horizontal-slider .swiper-slide.more-posts-portfolio {
    margin-left: 0 !important;
    width: auto;
    margin-bottom: 30px;
    display: inline-block !important;
  }

  .horizontal-slider .no-horizontal-slider .portfolio-slider-load-more {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
    min-width: 0;
    padding: 17px 40px;
    text-align: left;
  }

  .horizontal-slider .no-horizontal-slider .swiper-slide.animate-slide {
    transform: translateY(100px);
  }

  .horizontal-slider .no-horizontal-slider .swiper-slide.animate-slide.animate-done {
    transform: translateY(0);
  }

  .portfolio-content {
    width: 95%;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 650px) {
  .single-post h1.entry-title {
    font-size: 34px;
    line-height: 40px;
  }

  a.socail-text {
    font-size: 16px;
  }

  .menu-text {
    font-size: 24px;
    line-height: 120%;
  }

  .sm-clean a span.sub-arrow {
    font-size: 45px !important;
  }

  .sm-clean a,
  .sm-clean a:hover,
  .sm-clean a:focus,
  .sm-clean a:active {
    font-size: 29px;
  }

  .sm-clean>li>a:after {
    height: 10px;
    left: 10px;
  }

  #header-main-menu .search-field {
    font-size: 40px;
  }

  #header-main-menu .search-field::-webkit-input-placeholder {
    font-size: 40px;
  }

  #header-main-menu .search-field::-moz-placeholder {
    font-size: 40px;
  }

  #header-main-menu .search-field:-ms-input-placeholder {
    font-size: 40px;
  }

  #header-main-menu .search-field:-moz-placeholder {
    font-size: 40px;
  }

  .simple-image-slider-pagination.swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-bottom: 50px;
    margin-top: 30px;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    width: 100%;
  }

  .swiper-pagination {
    text-align: center;
    transition: 0.3s opacity;
    z-index: 10;
  }

  .simple-image-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    border: 2px solid black;
    background-color: transparent;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }

  .simple-image-slider-pagination .swiper-pagination-bullet {
    opacity: 1;
    vertical-align: middle;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }

  .swiper-pagination-bullet-active {
    background: #007aff;
  }

  .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 100%;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }

  .simple-image-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    vertical-align: middle;
    border: 6px solid white;
  }

  .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 100%;
    background: #000;
  }

  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }

  .center-relative {
    margin-left: auto;
    margin-right: auto;
  }

  .content-960 {
    width: 960px;
    max-width: 95%;
  }

  .center-relative {
    margin-left: auto;
    margin-right: auto;
  }

  .single-post .single-post-header-content {
    margin-bottom: 50px;
  }

  .content-1170 {
    width: 1170px;
    max-width: 80%;
  }

  .center-relative {
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-container {
    margin: 0 auto;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }

  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
  }

  .single-post h1.entry-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 55px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    margin: 0 auto 20px;
    max-width: 100%;
  }

  .swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform, -webkit-transform;
  }

  blockquote:before {
    position: relative;
    margin-top: 70px;
    top: -30px;
    width: 70px;
    height: 55px;
    margin-left: auto;
    margin-right: auto;
  }

  blockquote:before {
    content: "";
    display: block;
    left: 0;
    top: calc(50% - 70px);
    position: absolute;
    background-image: url(../images/quotes_image.png);
    background-size: cover;
    width: 140px;
    height: 110px;
  }

  blockquote p {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
    display: block !important;
    margin: 0 auto;
  }

  blockquote cite {
    text-align: center;
  }

  blockquote {
    font-family: "PT Serif", serif;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 35px;
    color: #939393;
    font-weight: 400;
    font-style: italic;
    position: relative;
    z-index: 2;
  }

  .single-post .post-info-wrapper .entry-info>div {
    display: block;
    margin: 10px 0;
  }

  .simple-image-slider-pagination.swiper-pagination {
    margin-bottom: 15px;
  }

  .single-post-header-content .simple-image-slider-pagination.swiper-pagination {
    margin-bottom: 5px;
  }
}

.home__hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.home__hero {
  width: 100vw;
  height: 100vh;
  position: relative;
}

@media  screen and (max-width: 1200px) {
  .home__hero {
    height: 65vh;
  }
  .home__hero-h {
    font-size: 1.4em !important;
    line-height: 45px;
  }
}

@media screen and ( max-width: 600px) {
  .home__hero {
    height: 70vh;
  }
}
.home_hero_overlay {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
}

.home__hero-content {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  padding-left: 12vw;
  padding-right: 8vw;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home__hero-h-w {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-block;
}

.home__hero-h {
  color: #fff;
  letter-spacing: -0.05em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Arimo, sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 1.4em;
}

.nav {
  z-index: 9996;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

/* @media screen and (max-width: 1200px) {
  .nav {
    position: relative;
  }
} */
@media screen and (min-width: 1440px) {
  .home__track {
    height: 1180vw;
  }
}

@media screen and (min-width: 1280px) {
  .home__track {
    height: 1180vw;
    max-height: none;
  }
}

.home__track {
  z-index: 1;
  height: 2000vw;
}



.nav__button-w {
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .nav__button-w {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.nav__year {
  z-index: 2;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 9vh;
  font-size: 1.3em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1em;
  transform: rotate(90deg);
}

.nav__button-line {
  width: 28px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 0;
}

.nav__button-line.nav__button-line--1,
.nav__button-line.nav__button-line--2 {
  margin-bottom: 6px;
}

/* /BANNER SECTION */

.home__hero-video>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  margin: auto;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
}

/* ARROW SECTIONS */
.home__hero-arrow-w {
  width: 9em;
  height: 9em;
  border: 1.5px solid #fef7ec;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .home__hero-arrow-w {
    width: 6em !important;
    height: 6em !important;
  }
}
.w-inline-bloc {
  max-width: 100%;
}

/* menus color sections */
.menu-right-text .menu-text a {
  color: #9b3d35;
}

p.menu-text-title {
  color: #9b3d35;
}

.sm-clean>li>a:after {
  background-color: #9b3d35;
}

#toggle .menu-line {
  width: 0;
  height: 3px;
  left: 0px;
  position: absolute;
  transition: all 0.25s;
}

@media screen and (max-width: 1200px) {

  .page-template-carousel.open .home_nav #toggle:after,  
  .page-template-carousel.open .home_nav #toggle:before { 
    background-color: #8e321e;
  }
  .page-template-carousel .home_nav #toggle:after,
  .page-template-carousel .home_nav #toggle:before {
    background-color: #8e321e;
  }

  .home_nav #toggle .menu-line {
    background-color: #494117;
  }

  .nav_mobile_active #toggle .menu-line {
    background-color: #494117;
  }

  .page-template-carousel .nav_mobile_active #toggle:before,
  .page-template-carousel .nav_mobile_active #toggle:after {
    background-color: #8e321e;
  }

  .site-content1 {
    width: 100%;
    background-color: #f6f1e4;
  }

  .nav__button {
    position: relative;
    transform: rotate(-90deg);
    right: 35px;
    background-color: #f6f1e4;
  }

  .nav__button img {
    height: 145px;
  }

  #toggle:before,
  #toggle:after {
    top: 25px;
    background-color: #000;
  }

  .toggle-holder {
    width: 50px;
    height: 50px;
    padding: 0 10px;
  }

  #toggle .menu-line {
    top: 25px;
    background-color: #000;
  }

  .horizontal-slider .no-horizontal-slider {
    display: block !important;
    text-align: center;
    max-width: 100%;
  }

  .other_page_nav {
    background-color: #f6f1e4;
  }
  .other_page_nav .nav__bar {
    border-bottom: 0.1px solid #000;
  }

  .page-template-carousel .home_nav .nav__bar {
    border-bottom: 1px solid #fff;
  }
  .page-template-carousel .home_nav.nav_mobile_active .nav__bar {
    border-bottom: 1px solid #8e321e;
  }
  .nav__bar {
    width: 100%;
    height: 6em;
    border-right-style: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  #toggle {
    height: 50px;
  }

  .nav {
    height: auto;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    position: relative;
  }

  .nav__year {
    display: none;
  }

  .home__hero-arrow-w {
    width: 9em;
    height: 9em;
    border: 1px solid #fef7ec;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home__hero-h-w {
    display: inline-block;
  }

  .home__hero-h {
    color: #fff;
    letter-spacing: 0.4px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 60px;
  }

  img.sitewrapimg {
    rotate: 90deg;
  }

  .home__hero-content {
    justify-content: space-between;
    align-items: center;
    padding-left: 12vw;
    padding-right: 8vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    margin-top: 100px;
    right: 0%;
  }

  .videohome {
    height: inherit;
    width: inherit;
  }

  .horizontal-slider .swiper-slide {
    align-items: center;
    width: auto;
  }

  .aboutus {
    width: 100vw;
    display: block;
  }

  .aboutus_content {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
  }

  .img1 {
    margin-top: 20px;
  }

  .about_bg_video {
    width: 100%;
    object-fit: cover;
    background-position: 50%;
    background-size: cover;
    margin: auto;
  }

  .photos_section {
    display: block;
    overflow: hidden;
    width: 100vw;
    height: auto;
    max-height: none;
    padding-right: 0px;
    padding-left: 0px;
  }

  .photos-upper {
    height: auto;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    display: block;
    max-height: none;
    margin-bottom: 0vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
  }

  .part1 {
    display: block;
    padding-top: 25px;
    height: 100%;
  }

  .Text1 {
    width: 90%;
    margin: 0 auto;
  }

  .photo_section_copy {
    color: #797979;
    font-size: 16px;
    line-height: 30px;
    font-weight: 200;
  }

  h2 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .image-grid-upper_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
  }

  .image-grid-lower_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
  }

  .last_img {
    width: 97% !important;
  }

  .testimonials {
    background-image: url(../images/testimonials1.jpg);
    width: 100vw;
    background-attachment: fixed;
    position: relative;
    background-position: left;
    display: block;
    margin-top: 40px;
  }

  .play_section {
    width: 100vw;
    margin-top: 50px;
    position: relative;
  }

  img.gamimg {
    display: block;
    width: 98%;
    margin-top: 49px;
  }

  img.gamimg1 {
    display: block;
    width: 98%;
    margin-top: 49px;
  }

  img.gamimg2 {
    display: block;
    width: 98%;
    margin-top: 49px;
  }

  img.gamimg3 {
    display: block;
    width: 98%;
    margin-top: 49px;
  }

  .contact {
    margin: 30px 0px
  }

  .keep-scrolling_wrapper {
    display: none !important;
  }
}

.photos_image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  height: inherit;
}

.Text2 {
  display: block;
  width: 100vw;
  height: auto;
  letter-spacing: 1px;
  -webkit-box-pack: end;
  font-weight: 500;
}

.photos-lower {
  display: block;
  max-height: none;
  margin-top: 0vh;
  padding-right: 0px;
  -webkit-box-direction: normal;
  transform: scale(1);
}

/* testimonals ----------------------------------------------------------- */

.testimonials .testimonials-container {
  display: block;
  margin: 10px;
}

.testimonials .quote-container {
  padding: 1px;
}


.fadeInRight {
  animation-name: fadeInRight;
}

.animated {
  animation-duration: 1s;
}

.testimonials .quote-container>div {
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.testimonials .quote-container>div p {
  margin-top: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  display: block;
}

.testimonials .quote-container>div p .quote {
  font-size: 14px;
  padding-top: 30px;
  line-height: 30px;
  letter-spacing: 0.5px;
  font-style: italic;
  padding-left: 15px;
  padding-right: 12px;
  color: white;
  text-align: justify;
}

.testimonials .quote-container>div p span {
  display: block;
}

.testimonials .quote-container>div p span.person {
  color: #9b3d35;
}

.testimonials .quote-container>div p span.person {
  font-weight: 500;
  font-size: 16px;
  margin-top: auto;
  padding-left: 15px;
  font-style: normal;
  margin-bottom: 6px;
}

.testimonials .quote-container>div p span.job {
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials .quote-container>div img {
  margin-left: 110px;
  border-radius: 50%;
  border: 4px solid #222;
}


/*contact us ------------------------------------------  */

.content_right {
  position: relative;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
}



.title_description_up {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 6px;
  text-align: center;
}

.content_right_holder {
  padding: 0;
}

.big_text {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-size: 65px;
  text-align: center;
  padding: 20px 0;
  line-height: 110%;
  color: #9b3d35;
}

.one_half {
  position: relative;
  padding: 30px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 30px;
}

.my-info {
  margin-top: 50px;
  line-height: 30px;
}

.my-info p {
  color: #adadad91;
}

a.socail-text {
  margin-right: 15px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}

input {
  vertical-align: middle;
}

.contact-form input[type="email"],
.contact-form input[type="text"] {
  border: 0;
  border-bottom: 2px solid;
  padding-top: 13px;
  padding-bottom: 25px;
  margin: 10px 0;
  letter-spacing: 1px;
  height: 28px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
}

.contact-form textarea {
  border: 0;
  border-bottom: 2px solid;
  padding-top: 13px;
  padding-bottom: 13px;
  margin: 10px 0;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 25px;
}

.contact-form textarea {
  height: 150px;
}

.contact-form input[type="submit"] {
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 20px 0px;
  font-size: 11px;
  cursor: pointer;
  margin-bottom: 25px;
  vertical-align: middle;
  text-decoration: none;
  background: #9b3d35;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 8px;
  transition: opacity 0.3s ease;
}

/* games section------------------------------------------- */


.gm,.wrapper,.games_section{
  width: 100%;
  height: 100%;
}

.games_vd_background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bounce-left {
  animation: bounceleft 0.6s forwards linear;
}

.radio-field {
  height: 55px;
  position: relative;
  display: grid;
  place-content: center;
  margin-bottom: 10px;
}

.radio-field input {
  position: absolute;
  border: solid 4px transparent;
  border-radius: 7px;
  background-color: rgb(239, 239, 239);
  box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.03);
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.5s;
  -webkit-appearance: none;
}

.radio-field input:checked~label {
  color: #9b3d35;
}

input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.radio-field label {
  font-size: 24px;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
  transition: 0.5s;
}

label {
  display: inline-block;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.next-prev {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 30px;
}

.next-prev>.next {
  background-color: #9b3d35;
  color: white;
  /* width: 95%; */
  /* margin-bottom: 18px; */
  /* margin-left: 10px; */
}

button.prev {
  margin-bottom: 20px;
  background-color: rgb(239, 239, 239);
  color: black;
}


.next-prev>button {
  border: solid 1px transparent;
  border-radius: 8px;
  box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.03);
  height: 55px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0px 10px;
}

button#step1btn, button#step2btn, button#step3btn, button#step4btn {
  width: 100%;
  background-color: #9b3d35;
  margin-bottom: 18px;
  color: white;
}

button#step4btn {
  background-color: #9b3d35;
  color: white;
  width: 99%;
  margin-right: 4px;
  margin-left: 5px;
  margin-bottom: 16px;
}


.radio-field input:checked {
  border-color: #9b3d35;
}

.radio-field input:checked::before {
  transform-origin: left top;
  animation: checkmark linear both 0.3s;
}

.radio-field input:checked::before {
  content: "";
  position: absolute;
  border-left: 5px solid #9b3d35;
  border-bottom: 5px solid #9b3d35;
  top: 23px;
  right: 30px;
  width: 25px;
  height: 15px;
  transform: rotate(-45deg);
  border-radius: 2px;
  z-index: 1000;
}


@keyframes checkmark {
  0% {
    height: 0px;
    width: 0;
    opacity: 0;
    right: 55px;
  }

  30% {
    height: 15px;
    width: 0;
    opacity: 1;
    right: 55px;
  }

  100% {
    height: 15px;
    width: 25px;
    opacity: 1;
  }

}


@media screen and (min-width: 1201px) {
  .sec1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .steps {
    width: 90%;
    margin: 0 auto;
    height: 100%;
  }

  .page-template-carousel.open .nav__year {
    color: #9b3d35 !important;
  }
  .page-template-carousel.open .home_nav #toggle:after,
  .page-template-carousel.open .home_nav #toggle:before {
    background-color: #9b3d35;
  }

  .page-template-carousel .home_nav #toggle::after,
  .page-template-carousel .home_nav #toggle:before {
    background-color: #fff;

  }
  .home_nav #toggle .menu-line {
    background-color: #fff;
  }

  .nav__button {
    background-color: #f6f1e4;
  }
  .nav__button img {
    width: 100%;
  }

  .nav__button-w {
    border-bottom: 1px solid #fff;
    padding: 3.1em 1em;
  }

  #toggle:before,
  #toggle:after {
    top: 35px
  }

  .other_page::before,
  .other_page::after {
    background: #000;
  }

  .toggle-holder {
    position: absolute;
    width: 70px;
    height: 70px;
  }

  .open .other_page_nav .nav__bar {
    border-right: 0.1px solid #fff;
  }

  .open .other_page_nav .nav__button-w {
    border-bottom: 0.1px solid #fff;
  }

  .open .other_page_line {
    background-color: #fff;
  }

  .open .other_page_nav .nav__year {
    color: #9b3d35;
  }

  .other_page_nav .nav__bar {
    border-right: 0.1px solid #000;
  }


  .other_page_nav .nav__button-w {
    border-bottom: 0.1px solid #000;
  }

  .other_page_nav .nav__year {
    color: #000;
  }

  .other_page_nav {
    background-color: #f6f1e4;
  }
  .nav__bar {
    z-index: 2;
    height: 100%;
    border-right: 1px solid #fff;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .horizontal-slider .swiper-slide {
    display: flex;
    align-items: center;
    width: auto;
    height: 100vh;
  }

  .aboutus {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-around;
  }

  .aboutus_content {
    width: 100vw;
    padding-left: 110px;
    padding-right: 100px;
    padding-top: 40px;
  }



  .img1 {
    width: 80%;
    position: relative;
  }

  .about_bg_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
  }

  /* Gallery section */
  .photos_section {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0px 80px;
    height: 100%;
    -webkit-box-pack: center;
    transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .photos-upper {
    position: relative;
    z-index: 10;
    height: 50%;
    display: flex;
    max-height: 360px;
    margin-bottom: 3vh;
    -webkit-box-align: center;
    align-items: center;
  }

  .part1 {
    width: 600px;
    height: 100%;
    letter-spacing: 1px;
    padding-right: 60px;
    padding-bottom: 35px;
    padding-top: 40px;
  }

  .Text1 {
    width: 100%;
  }

  .photo_section_copy {
    color: #797979;
    font-size: 16px;
    line-height: 36px;
    font-weight: 200;
  }

  .split-gallery {
    clear: left;
  }


  /* tetimonals ----------------------------------------------------------*/

  .testimonials {
    background-image: url(../images/testimonial_bg.jpeg);
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-attachment: fixed;
    position: relative;
    background-position: center;
    display: flex;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.4);
  }


  .testimonials .testimonials-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* margin: 0 180px; */
  }

  .testimonials .quote-container {
    padding: 40px;
  }

  .animated-layer.animated,
  .animated-layer.animated:before {
    opacity: 1;
  }

  .fadeInRight {
    animation-name: fadeInRight;
  }

  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }

  .testimonials .quote-container>div {
    position: relative;
    width: 900px;
    min-height: 360px;
  }

  .testimonials .quote-container>div p {
    margin: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 360px;
  }

  /* p {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
  } */

  .testimonials .quote-container>div p .quote {
    font-size: 20px;
    line-height: 40px;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
  }

  .testimonials .quote-container>div p span {
    display: block;
  }

  .testimonials .quote-container>div p span.person {
    color: #9b3d35;
  }

  .testimonials .quote-container>div p span.person {
    font-weight: 500;
    font-size: 16px;
    margin-top: auto;
    font-style: normal;
    margin-bottom: 6px;
  }

  .testimonials .quote-container>div p span.job {
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
  }

  .testimonials .quote-container>div img {
    max-width: 120px;
    position: absolute;
    bottom: -60px;
    right: -60px;
    border-radius: 50%;
    border: 4px solid #222;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }


  .testimonials .testimonials-container .quote-container:not(:first-child) {
    margin-left: 90px;
  }

  .opposite-separator {
    height: 100vh;
  }

  .z-1 {
    z-index: 1;
  }

  /* contact us------------------------------------------------------------------------ */

  .contact {
    justify-content: space-around;
    display: flex;
    padding: 20px;
    width: 100vw;
  }

  .content_right {
    padding-right: 20px;
  }

  .contact-form {
    padding-top: 70px;
    min-width: 400px;
    max-width: 450px;
  }

  .title_description_up {
    font-size: 12px;
    color: #a0a0a0;
    line-height: 24px;
    padding-top: 40px;
    font-weight: 500;
    letter-spacing: 8px;
  }

  .content_right_holder {
    max-width: 100%;
  }

  .big_text {
    font-family: "Playfair Display", serif;
    font-weight: bold;
    font-size: 98px;
    line-height: 110%;
    color: #9b3d35;
  }

  .one_half {
    line-height: 20px;
    position: relative;
    font-size: 17px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .one_half>p {
    margin-bottom: 16px;
  }

  .my-info {
    margin-top: 50px;
    line-height: 30px;
  }

  .my-info p {
    color: #adadad91;
  }

  a.socail-text {
    margin-right: 15px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  .contact-form input[name="your-name"] {
    margin-top: 0;
    padding-top: 0;
  }

  .contact-form input[type="text"] {
    border: 0;
    border-bottom: 2px solid;
    margin: 10px 0;
    height: 28px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    line-height: 25px;
  }

  input {
    vertical-align: middle;
  }

  .contact-form input[type="email"],
  .contact-form input[type="text"] {
    border: 0;
    border-bottom: 2px solid;
    padding-top: 13px;
    padding-bottom: 25px;
    padding-left: 15px;
    margin: 10px 0;
    height: 28px;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    line-height: 25px;
    letter-spacing: 1px;
  }

  .contact-form textarea {
    border: 0;
    border-bottom: 2px solid;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 15px;
    margin: 10px 0;
    font-size: 15px;
    background-color: #f6f1e4;
    font-family: "Poppins", sans-serif;
    line-height: 25px;
  }

  .contact-form textarea {
    height: 150px;
  }

  .contact-form input[type="submit"] {
    display: inline-block;
    border: 2px solid;
    text-align: center;
    padding: 20px 0px;
    font-size: 11px;
    cursor: pointer;
    margin-bottom: 25px;
    vertical-align: middle;
    text-decoration: none;
    background: #9b3d35;
    color: #fff;
    font-family: "Poppins", sans-serif;
    letter-spacing: 8px;
    transition: opacity 0.3s ease;
  }

  /* games section------------------------------------------- */
  .play_section {
    width: 90vw;
    height: 100vh;
    position: relative;
    background-image: url(../images/game_bg.png);
    background-repeat: round;
    background-attachment: fixed;
    background-size: contain;
  }

  .gm {
    width: 100%;
    height: 100%;
  }

  .games_vd_background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
  }

  .right1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  img.gamimg {
    display: block;
    margin-left: auto;
    width: 24%;
    margin-right: 179px;
  }

  img.gamimg1 {
    display: block;
    margin-left: auto;
    width: 24%;
    margin-right: 242px;
  }

  img.gamimg2 {
    display: block;
    margin-left: auto;
    width: 24%;
    margin-right: 242px;
  }

  img.gamimg3 {
    display: block;
    margin-left: auto;
    width: 24%;
    margin-right: 179px;
  }

  fieldset {
    width: 35%;
    margin: 0 auto;
  }


  .bounce-left {
    animation: bounceleft 0.6s forwards linear;
  }

  .radio-field {
    height: 55px;
    position: relative;
    display: grid;
    place-content: center;
    margin-bottom: 16px;
  }

  .radio-field input {
    -webkit-appearance: none;
    position: absolute;
    border: solid 4px transparent;
    border-radius: 7px;
    background-color: rgb(239, 239, 239);
    box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.03);
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.5s;

  }

  .radio-field input:checked~label {
    color: #9b3d35;
  }


  input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .radio-field label {
    font-size: 24px;
    letter-spacing: 1.5px;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
    transition: 0.5s;

  }

  label {
    display: inline-block;
  }

  .delay-100 {
    animation-delay: 100ms;
  }

  .delay-200 {
    animation-delay: 200ms;
  }

  .delay-300 {
    animation-delay: 300ms;
  }

  .next-prev {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
    cursor: pointer;
    width: 100%;

  }

  .next-prev>.next {
    background-color: #9b3d35;
    color: white;
  }


  button#step4btn {
    background-color: #9b3d35;
    color: white;
    width: 43%;
  }

  .site-content1 {
    width: calc(100% - 95px);
    margin-left: auto;
    padding-top: 3%;
  }

}

/* about us */
@media screen and (max-width: 500px) {
  .about_bg_video {
    height: 600px;
  }
  .aboutus_content .about_desc {
    line-height: 45px !important;
    font-size: 25px !important;
  }
}

.section_sub_title {
  font-size: 14px;
  font-weight: 500;
  color: #9b3d35;
}

.aboutus_content .about_desc {
  line-height: 55px;
  font-size: 38px;
  color: #4d4d4d;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Playfair Display', sans-serif;
}

.about_subtitle {
  color: #9b3d35;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.about_sub_content {
  color: #797979;
  font-size: 16px;
  line-height: 36px;
  font-weight: 200;
}

@keyframes bounceleft {
  0% {
    opacity: 0;
    transform: translatey(-2000px);
  }

  60% {
    opacity: 1;
    transform: translatey(30px);
  }

  80% {
    opacity: 1;
    transform: translatey(-10px);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
  }
}

#error div {
  position: fixed;
  top: 20px;
  left: 150px;
  z-index: 1000;
}

.alert-danger {
  background-color: #f8d7f8;
  padding: 16px;
  color: #9b3d35;
  border: 1px solid #9b3d35;
  border-radius: 5px;
}

@keyframes checkmark {
  0% {
    height: 0px;
    width: 0;
    opacity: 0;
    right: 55px;
  }

  30% {
    height: 15px;
    width: 0;
    opacity: 1;
    right: 55px;
  }

  100% {
    height: 15px;
    width: 25px;
    opacity: 1;
  }
}

.nav_active {
  background-color: #f6f1e4;
}

.nav_active .nav__bar {
  border-color: rgba(0, 0, 0, 0.2);
}

.nav_active .nav__button-w {
  border-color: rgba(0, 0, 0, 0.4);
}

.nav_active #toggle .menu-line {
  background-color: #9b3d35 !important;
}



.nav_active #toggle:after,
.nav_active #toggle:before {
  background-color: #494117 !important;
}

.nav_active .nav__year {
  color: #9b3d35 !important;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.keep-scrolling_wrapper {
  display: flex;
  position: absolute;
  bottom: 50px;
}

.keep-scrolling_div {
  position: relative;
  display: flex;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-items: center;
}

.right-arrow_image {
  position: relative;
  width: 25px;
  margin-left: auto;
  margin-right: auto;
}

.keep-scrolling_image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 0px;
  width: 150px;
  animation: rotateImage 5s linear infinite;
}


.arts_gallery {
  padding: 0;
  margin: 0;
  list-style: none;
}

.event-sect {
  width: 100%;
  height: 100%;
  background-color: #f6f1e4;
  position: relative;
}


.event-cont {
  min-height: 700px;
  padding-bottom: 160px;
  width: 100%;
}

h2.event-calender {
  align-items: center;
  display: flex;
  font-weight: 400;
  color: #444;
  font-size: 25px;
}

h2.event-calender::after {

  background-color: #d5d5d5;
  content: "";
  display: block;
  flex: auto;
  height: 1px;
  margin-left: 20px;
}

.cale-date {
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 25px;
  margin-bottom: 25px;
}

.cale-dt {
  padding: 0 20px 0 0;
  min-width: 120px;
  width: 12%;
  position: relative;
}

time.cale-time-event {
  border: 1px dashed #ec6830 !important;
  background: #ffd7cd !important;
  border-radius: 8px;
  border-collapse: separate !important;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 4px;
}

span.event-day {
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #5d5d5d;
  margin-bottom: 4px;
  text-transform: uppercase;
}

span.event-day1 {
  font-size: 16px;
  line-height: 1.42;
  font-weight: 500;
  color: #5d5d5d;
  font-family: 'Poppins';
}

.event-contemt {
  padding: 0;
  flex: 11.111%;
  min-width: 0;
  flex-direction: row;
}

article.event-content-area {
  display: flex;
  border: 1px dashed #ec6830 !important;
  background: #ffd7cd !important;
  border-radius: 8px;
  border-collapse: separate !important;
  margin: 0;
  padding: 40px;
  gap: 30px;

  @media (max-width:425px) {
    gap: 20px;
  }

}

@media (max-width: 425px) {
  .cale-date {
    display: block;
  }

  .event-contemt {
    margin-top: 10px;
  }

  article.event-content-area {
    padding: 15px !important;
  }
}

@media (max-width: 799px) {
  article.event-content-area {
    flex-direction: column;
    align-items: center;
  }

  .event-content-area_img {
    width: 100%;
    height: 250px;
  }

  .event-content-area_img img {
    width: inherit;
    height: inherit;
    object-fit: inherit;
    border-radius: 5px;
  }

  .event-content-area2 {
    padding-left: 0px;
    padding-top: 5px;
  }

  .event-cont {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 800px) {
  article.event-content-area {
    flex-direction: row;
  }

  .event-content-area_img {
    max-width: 250px;
    height: 250px;
  }

  .event-content-area_img img {
    max-width: inherit;
    height: inherit;
  }

  .event-content-area2 {
    padding-left: 15px;
    width: 100%;
  }

  .event-cont {
    padding: 0px 20px;
  }
}



.event-content-area1 {
  padding-left: 15px;
  padding-right: 73px;
  margin-bottom: 0;
  width: 40px;
  flex: none;
  min-width: 0;
}


.header-event2 {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.62;
  color: #141827;
  font-weight: 400;
}

.header-event3 {
  color: black;
  display: flex;
  margin-top: 10px;
}

.Reg_btn1 {
  max-width: 400px;
  background-color: #9b3d35;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

.Event_footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

h3.slidessssss {
  font-size: 23px !important;
  line-height: 1.304em !important;
  font-family: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.event-address {
  font-size: 13px;
  font-family: inherit;
  line-height: 1.62;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 10px;
  display: flex;
}

.event-para {
  font-size: inherit;
  font-family: inherit;
  display: block !important;
  visibility: visible;
  color: black;
  line-height: 1.62;
}

.event-money {
  padding-bottom: 10px;
  font-weight: 600;
  padding-left: 5px;
}


p.event-parass {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 20px;
}
.event_highlight_t {
  margin-bottom: 20px;
}
.event_highlight {
  font-weight: 300;
    font-size: 14px;
}

.Event_footer1 {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.event-para2 {
  font-size: inherit;
  font-family: inherit;
  margin-top: 5px;
  font-weight: 400;
  color: black;
  line-height: 1.63;
  display: flex;
}

.PointS {
  margin-top: 8px;
}

span.address-area-event {
  font-weight: 700;
}

/* workshop */
.workshop_container {
  display: flex;
  justify-content: center;
}

.works-cont {
  padding: 0px 0px 60px 0px;
}

.qodef-grid {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

@media (max-width: 425px) {
  .workshop_container {
    display: flex;
    flex-direction: column;
  }

  .work-left {
    order: 2
  }

}

@media (min-width: 800px) {
  .workmain-2 {
    width: 60%;
  }

}

.workmain-2 {
  padding: 0 30px;
  margin: 0 0 60px;
}

.workmain-img {
  margin-bottom: 28px;
}

.work-left {
  padding: 0 15px;
  margin: 0 0 60px;
}

aside.work-left1 {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.image-down-cont-work {
  margin: 0 0 30px;
  text-align: center;
}



h5.image-cont-h {
  margin: 0 0 1px;
  font-weight: bold;
  /* color: #444; */
  font-size: 18px;
  line-height: 1.15em;
  word-wrap: break-word;
}

span.image-cont-span {
  color: #ec6830;
}

p.image-cont-para {
  margin: 0;
  font-size: 16px;
}

.work-category {
  margin: 0 0 30px;
}

h5.work-cat {
  /* margin: 0 0 15px; */
  text-transform: none;
  font-size: 22px;
  margin-bottom: 10px;
}

ul.work-cat-list {
  /* height: 10%; */
  padding: 0;
  margin: 0;
  font-size: 14px;
  list-style: none;
}

li.work-cat-listss {
  display: block;
  margin: 0 0 3px;
}

.work-latest-post {
  margin: 0 0 32px;
  font-size: 15px;
}

h4.work-latst {

  margin: 0 0 15px;
  text-transform: none;
  font-size: 21px;
  color: #444;
  font-weight: 900;
  line-height: 1.304em;
}

.work-lat-blog {
  margin: 0 -10px;
}

.blo1 {
  margin: 0 0 20px;
}

article.work-art-lat {
  width: 100%;
  padding: 0 10px;
  margin: 0 0 20px;

  display: inline-block;
  /* width: 100%; */
  position: relative;
  min-height: 1px;
  vertical-align: top;
}

.work-side-img {
  display: flex;
  align-items: flex-start;
  width: 100%;
  vertical-align: top;
}

.work-side-img1 {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  margin: 0 20px 0 0;
  border-radius: 2px;
  overflow: hidden;
  display: block;
  vertical-align: top;
}

img.post-image {
  transform: scale(1.05) translateX(0);
  transition: transform .3s ease;
  will-change: transform;
  display: block;
  width: 100%;
}

.work-side-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.image-left {
  margin-bottom: 20px;
  align-self: center;
}

.image-left img {
  width: 230px;
  height: 230px !important;
  border-radius: 50%;
  object-fit: cover;
}
p.site-con-work1 {
  font-size: 13px;

  letter-spacing: .04em;
  font-weight: 400;
  text-transform: uppercase;
  color: #6c7272;
  line-height: 1.4em;
}

h5.site-con-work2 {
  text-align: left;
  margin: 0;
  text-transform: none;
  /* font-family: "Baloo Chettan", cursive; */
  font-weight: bold;
  color: #444;
  font-size: 17px;
  line-height: 1.294em;
}

.heading1 {

  padding-left: opx;
  padding-left: 0;
  padding-right: 0;

  margin-bottom: 49px;
}

h2.hedi {
  text-align: left;
  margin: 0;

  text-transform: none;
  font-weight: bold;
  color: #444;
  font-size: 28px;
  line-height: 1.149em;
}

p.art-work-para {
  margin: 8px 0 0;
  /* width: 58%; */
  padding: 0 0 7px;
  font-size: 15px;
  line-height: 29px;
  text-align: justify;
}

.work-image {
  display: flex;
  flex-wrap: inherit;
  margin: 0 -5px;

}

.workimage1 {
  padding: 0 5px;
  margin: 0 0 10px;
  display: inline-block;

  min-height: 1px;


}

.work-top-image {
  max-width: 100%;
}

img.wkima {
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}

p.image-under-cont {
  margin: 10px 0;
  line-height: 28px;

  padding: 0 0 7px;
  font-size: 15px;
  line-height: 29px;
  text-align: justify;
  font-weight: 400;
}

/* GALLERY */
.title-description-up {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 3px;
}

.gallery-title {
  font-family: 'Playfair Display', sans-serif;
  font-weight: bold;
  margin-bottom: 25px;
  padding: 10px 0px;
  font-size: 65px;
  line-height: 110%;
}

/* GALLERY */


@media screen and (max-width: 900px) {
  .gallery_image {
    margin: 5px;
    float: left;
    position: relative;
    overflow: hidden;
    height: 250px;
  }
}

@media screen and (min-width: 901px) {
  .gallery_image {
    height: calc(50vh - 45px);
    margin: 10px;
    float: left;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 1024px) {
  .gallery_image {
    height: 35vh;
    margin: 10px;
    float: left;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 1201px) {
  .gallery_image {
    height: 43vh;
    margin: 10px;
    float: left;
    position: relative;
    overflow: hidden;
  }
}

/* GALLERY */
.photos_section {
  background-color: #f6f1e4;
}

.quiz-question {
  position: relative;
  z-index: 10;
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 20px;
  height: 310px;
  margin: 0 auto;
}
.quiz-question img {
  width: 100%;
}
.quiz-question h2 {
  font-size: 20px;
  width: 60%;
  font-weight: bold;
  position: absolute;
  z-index: 10;
  margin: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 400px) {
  .quiz-question {
    width: 100%;
    padding-left: 0px;
  }
}

@media screen and (min-width: 401px) {
  .quiz-question {
    width: 85%;
    padding-left: 0px;
  }
}

@media screen and (min-width: 701px) {
  .quiz-question {
    width: 48%;
    padding-left: 0px;
  }

  .radio-field {
    width: 50%;
    margin: 10px auto;
  }
}

@media screen and (min-width: 1000px) {
  .quiz-question {
    width: 37%;
    padding-left: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .quiz-question {
    width: 37%;
    padding-left: 20px;
  }

  .radio-field {
    width: 100%;
    margin: 10px auto;
  }
}

@media screen and (max-width: 1200px) {

  .quiz-question img {
    width: 100%;
  }

  .radio-field {
    width: 90%;
    margin: 10px auto;
  }

  .next-prev {
    width: 90%;
    margin: 0px auto;
  }

  #error div {
    position: fixed;
    top: 80px;
    left: 150px;
    z-index: 1000;
  }
}

.mCS_img_loaded {
  width: 130px;
  height: 130px;
}

/* event page */
/* Popup container */
.home-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 9998;
}

.home-popup-content {
  background-color: #f6f1e4;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  transition: transform 0.5s ease;
  position: relative;
}
.home-popup-content img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 10000;
}
.home_event_btn_pp {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.popup_reg_btn {
  max-width: 400px;
    background-color: #9b3d35;
    padding: 6px 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    width: 150px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}
/* Popup content */
.popup-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 20px 20px;
  width: 98%;
  max-width: 600px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

/* Popup active state */
.popup-container.active {
  opacity: 1;
  visibility: visible;
}

.popup-container.active .popup-content {
  transform: scale(1);
}

.home-popup-container.active {
  opacity: 1;
  visibility: visible;
}

.home-popup-container .popup-content {
  transform: scale(1);
}
/* Close button */
.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

#hubspotForm {
  position: relative;
  z-index: 1;
}

.form_strip {
  left: 0;
    width: 100%;
    height: 75px;
    position: absolute;
    bottom: 10px;
    z-index: 2;
    background: #fff;
}

.age_group {
  display: flex;
    align-items: center;
    gap: 10px;
}
.age_group img {
  width: 15px;
}
.age_group p {
  font-size: 14px;
  font-weight: 500;
}
.event-slide-time {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.header-event3  img  {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}


@media screen and (max-width: 768px) {
  .arts_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .arts_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-content1 {
  background-color: #f6f1e4;
}

.contact {
  height: 100vh;
}
.payment_form_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 15px;
}
.payment_form_content .payment_page {
  height: 300px;
  object-fit: contain;
  margin: 0 auto;
}
.payment_form_content .payment_terms {
  font-size: 12px;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: justify;
}

.ticket-selection {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ticket-selection label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.ticket-selection select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ticket-selection select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.ticket-selection select option {
  font-size: 16px;
}
