/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";

:root {
  --persian-blue-strong: #0067a5;
  --persian-blue-pale: #91a3b0;
  --persian-blue-vivid-pale: #bcd4e6;
  --persian-blue-vivid: #1c39bb;
  --persian-blue-grayish-purplish: #4c516d;
  --persian-blue-vivid-purplish: #32127a;
  --persian-brown-strong-reddish: #882d17;
  --persian-green-grayish: #5e716a;
  --persian-green-dark-grayish: #3a4b47;
  --persian-green-brilliant-bluish: #00a693;
  --persian-green-moderate-bluish: #317873;
  --persian-orange-moderate-reddish: #cb6d51;
  --persian-orange-grayish-reddish: #b4745e;
  --persian-orange-vivid-reddish: #e25822;
  --persian-orange-moderate: #d99058;
  --persian-orange-vivid: #f38400;
  --persian-pink-deep-purplish: #f77fbe;
  --persian-pink-moderate-purplish: #d597ae;
  --persian-pink-dark-purplish: #c17e91;
  --persian-purple-vivid-reddish: #870074;
  --persian-red-vivid-purplish: #fe28a2;
  --persian-red-strong-purplish: #b3446c;
  --persian-red-vivid-purplish: #ce4676;
  --persian-red-moderate-purplish: #a8516e;
  --persian-red-vivid: #cc3333;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}

@font-face {
  font-family: "Sparkling Moscow";
  src: url("../fonts/sparkling-moscow-bold.otf") format("truetype");
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

a {
  color: rgb(6, 34, 117);
  text-decoration: none !important;
}

a:hover {
  color: rgb(0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}

html {
  background: var(--persian-red-vivid);
}

html,
body {
  min-height: 100%;
  min-height: 100vh;
  position: relative;
}

body {
  font-family: "Roboto", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  direction: ltr;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.body-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(10, 61, 42, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 100;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
}

.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}

.form-control {
  border-radius: 5px;
}

.btn,
label,
th,
.control-label {
  font-weight: 700;
  font-size: 14px;
}

a>i:only-child,
button>i:only-child {
  line-height: inherit;
}

ol {
  list-style-type: decimal;
}

.row.v-gutters {
  row-gap: 30px;
}

.sm-gutters {
  margin-left: -5px;
  margin-right: -5px;
}

.row.sm-gutters.v-gutters {
  row-gap: 10px;
}

.sm-gutters>.col,
.sm-gutters>[class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.lg-gutters {
  margin-left: -30px;
  margin-right: -30px;
}

.row.lg-gutters.v-gutters {
  row-gap: 60px;
}

.lg-gutters>.col,
.lg-gutters>[class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-content {
  border: none;
}

.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modal-header {
  display: flex;
  align-items: center;
  border: none;
  padding: 44px 44px 0;
}

.modal-body {
  padding: 44px;
}

.modal-footer {
  border: none;
  padding: 0 44px 44px;
}

/*Custom*/
.section {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  padding: 80px 0;
}

.section:first-of-type .section-wrapper {
  padding-top: 80px;
}

.section:last-of-type .section-wrapper {
  padding-bottom: 80px;
}

.section:not(.section-covered)+.section .section-wrapper {
  padding-top: 0;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 40px;
}

.section-title+.section-subtitle {
  margin-top: 10px;
}

.section-title+.section-desc,
.section-subtitle+.section-desc {
  margin-top: 30px;
}

.section-cover {
  position: relative;
}

.section-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--persian-green-dark-grayish);
  margin: 0;
  display: flex;
  align-items: center;
  text-wrap: balance;
}

.section-title::before {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background: url(../img/icon-01.svg) no-repeat center/contain;
  content: "";
  margin-right: 15px;
}

.section-icon {
  margin-top: 30px;
}

.section-icon>img {
  max-width: 100%;
  display: block;
}

.section-subtitle {
  font-size: 60px;
  font-weight: 700;
  color: var(--persian-green-dark-grayish);
  margin: 0;
  text-wrap: balance;
}

.subsection+.subsection {
  margin-top: 60px;
}

.subsection-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--persian-green-dark-grayish);
  margin: 0;
  display: flex;
  align-items: center;
  text-wrap: balance;
}

.subsection-title::before {
  width: 3px;
  height: 30px;
  background: var(--persian-orange-vivid);
  content: "";
  margin-right: 15px;
}

.section-bg img,
.section-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-overlay>.section-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.tbutton {
  height: 54px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  mask-image: linear-gradient(135deg, transparent 5px, black 0),
    linear-gradient(-135deg, transparent 5px, black 0),
    linear-gradient(45deg, transparent 5px, black 0),
    linear-gradient(-45deg, transparent 5px, black 0);
  mask-position: 0 0, 100% 0, 0 100%, 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 51% 51%;
}

.tbutton.disabled,
.tbutton:disabled,
.tbutton[disabled] {
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}

.tbutton-block {
  display: flex;
  width: 100%;
}

.tbutton-fill-primary {
  background: var(--persian-orange-vivid);
  border-color: var(--persian-orange-vivid);
  color: #000;
}

.tbutton-fill-primary:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.tbutton-fill-secondary {
  background: var(--persian-red-vivid);
  border-color: var(--persian-red-vivid);
  color: #000;
}

.tbutton-fill-secondary:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.tbutton::before {
  width: auto;
  height: 70%;
  aspect-ratio: 1 / 1;
}

#header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
}

#header.sticky {
  background: #fff;
  box-shadow: 0 2px 5px rgba(50, 50, 50, 0.3);
  padding: 15px 0;
}

#header>div {
  display: flex;
  justify-content: start;
  align-items: center;
}

#navigation {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

body.nav-open #navigation {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#navigation>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation>ul>li>a {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: min(10vw, 70px);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  color: #000;
}

#navigation>ul>li:not(:last-child) {
  margin-bottom: min(5vw, 30px);
}

#navigation>ul>li>a:hover {
  color: var(--persian-brown-strong-reddish);
}

#navigation>ul>li.current-menu-item>a {
  color: var(--persian-orange-vivid);
}

#navigation>ul>li.current-menu-item>a::before,
#navigation>ul>li.current-menu-item>a::after {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background: url(../img/icon-01.svg) no-repeat center/contain;
  content: "";
  margin: 0 15px;
}

#navigation>ul>li.current-menu-item>a::before {
  margin-left: 0;
}

#navigation>ul>li.current-menu-item>a::after {
  margin-right: 0;
}

#navigation::before,
#navigation::after {
  width: 75vw;
  max-height: 75vh;
  aspect-ratio: 1/1;
  opacity: 0.6;
  background: var(--persian-brown-strong-reddish);
  filter: blur(500px);
  z-index: -1;
  content: "";
}

#navigation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}

#navigation::after {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.nav-toggle {
  font-size: 0;
  width: 54px;
  height: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M0 88C0 74.7 10.7 64 24 64H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 112 0 101.3 0 88zM64 248c0-13.3 10.7-24 24-24H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H88c-13.3 0-24-10.7-24-24zM448 408c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H424c13.3 0 24 10.7 24 24z'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  border: none;
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
}

body.nav-open .nav-toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z'/%3E%3C/svg%3E");
}

.ticket-toggle {
  margin-right: 20px;
}

.ticket-toggle:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.ticket-toggle::before {
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M64,112c-8.8,0-16,7.2-16,16v256c0,8.8,7.2,16,16,16h512c8.8,0,16-7.2,16-16v-35c-41.4-10.7-72-48.2-72-93s30.6-82.3,72-93 v-35c0-8.8-7.2-16-16-16H64z M0,128c0-35.3,28.7-64,64-64h512c35.3,0,64,28.7,64,64v61.3c0,11.2-12.8,18.7-24,18.7 c-26.5,0-48,21.5-48,48s21.5,48,48,48c11.2,0,24,7.5,24,18.7V384c0,35.3-28.7,64-64,64H64c-35.3,0-64-28.7-64-64V128z M432,144 c8.8,0,16,7.2,16,16s-7.2,16-16,16s-16-7.2-16-16S423.2,144,432,144z M432,208c8.8,0,16,7.2,16,16s-7.2,16-16,16s-16-7.2-16-16 S423.2,208,432,208z M416,288c0-8.8,7.2-16,16-16s16,7.2,16,16s-7.2,16-16,16S416,296.8,416,288z M432,336c8.8,0,16,7.2,16,16 s-7.2,16-16,16s-16-7.2-16-16S423.2,336,432,336z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(-45deg);
  content: "";
  display: inline;
}

.ticket-toggle:hover::before {
  filter: brightness(0) invert(1);
}

.section-hero .section-bg {
  height: auto;
}

.slide-card-img {
  width: 100vw;
}

.section-hero .section-title {
  font-family: "Sparkling Moscow";
  background: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg,
      rgba(230, 200, 200, 0.2) 0%,
      rgba(255, 255, 255, 0.7) 100%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1.5px #fff;
  text-stroke: 1.5px #fff;
  paint-order: fill;
  font-size: 10vw;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: 10px;
}

.section-hero .section-title::before {
  display: none;
}

.section-hero .section-subtitle {
  color: rgba(250, 240, 230, 0.9);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  animation: Rotate 5s ease-in-out infinite reverse;
}

.section-hero .section-subtitle::before,
.section-hero .section-subtitle::after {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.section-hero .section-subtitle::before {
  box-shadow: inset 0 0 0 30px rgba(0, 0, 0, 0.25),
    0 0 0 7px rgba(0, 0, 0, 0.25);
}

.section-hero .section-subtitle::after {
  background: url(../img/icon-star-2.svg) no-repeat center;
  background-size: 50%;
  filter: brightness(0) invert(1);
}

.section-hero .section-wrapper>div {
  height: 100%;
  position: relative;
}

.section-hero .section-icon {
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  animation: Rotate 7s infinite linear;
  z-index: -1;
}

@keyframes Rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.countdown-timer {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  text-transform: capitalize;
}

.countdown-timer>span {
  color: var(--persian-orange-vivid);
  width: 100%;
  font-size: 7vw;
  font-weight: 800;
  position: relative;
  display: flex;
  align-items: center;
}

.countdown-timer>span::after {
  content: attr(data-title);
  font-size: 3vw;
  color: var(--persian-red-vivid);
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke fill;
  position: relative;
  transform: translateX(-2vw);
  z-index: 1;
}

.section-intro .section-cover>img {
  border-radius: 32px;
}

.section-guest {
  background-color: rgb(246, 244, 249);
}

.section-guest .section-wrapper {
  padding-top: 80px !important;
}

.guest-card {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(135deg, transparent 15px, black 0),
    linear-gradient(-135deg, transparent 15px, black 0),
    linear-gradient(45deg, transparent 15px, black 0),
    linear-gradient(-45deg, transparent 15px, black 0);
  mask-position: 0 0, 100% 0, 0 100%, 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 51% 51%;
}

.guest-carousel .guest-card {
  margin-left: 20px;
}

.guest-card-img {
  aspect-ratio: 1/1.5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guest-card-body {
  padding: 30px 15px;
  background: linear-gradient(174deg,
      rgba(178, 13, 93, 0) 46.95%,
      rgb(243, 132, 0, 0.81) 103.38%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.guest-card-title {
  font-size: 24px;
  font-weight: 650;
  color: #fff;
  margin: 0;
}

.section-schedule::before {
  width: 50%;
  max-height: 500px;
  aspect-ratio: 1/1;
  opacity: 0.6;
  background: var(--persian-brown-strong-reddish);
  filter: blur(500px);
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-schedule .section-tab {
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
}

.section-schedule .section-tab>li {
  width: 100%;
  padding: 10px;
}

.section-schedule .section-tab>li>a {
  border-radius: 15px;
  padding: 15px 10px;
  background-color: rgb(246, 244, 249);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  line-height: 1;
}

.section-schedule .section-tab>li>a>strong {
  color: var(--persian-green-dark-grayish);
  font-weight: 800;
  font-size: 26px;
}

.section-schedule .section-tab>li>a>span {
  color: var(--persian-blue-grayish-purplish);
  margin-top: 10px;
  font-weight: 450;
  font-size: 18px;
}

.section-schedule .section-tab>li.active>a {
  background-color: var(--persian-green-dark-grayish);
}

.section-schedule .section-tab>li.active>a>strong,
.section-schedule .section-tab>li.active>a>span {
  color: #fff;
}

.schedule-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-table>li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.schedule-table>li {
  padding: 15px 0;
}

.schedule-table>li>strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.schedule-table>li>main>h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.schedule-table>li>main>div {
  margin-top: 10px;
  font-size: 16px;
}

.section-tab-content {
  margin-top: 30px;
}

.section-event,
.section-ticket {
  background: linear-gradient(to right,
      rgb(33, 134, 81) 0%,
      rgb(3, 196, 97) 50%,
      rgb(33, 134, 81) 100%);
}

.section-ticket::before,
.section-ticket::after {
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  height: 85%;
  width: 45%;
  content: "";
  z-index: -1;
}

.section-ticket::before {
  background-image: url(../img/icon-02.png);
  background-position: left bottom;
  left: 0;
}

.section-ticket::after {
  background-image: url(../img/icon-03.png);
  background-position: right bottom;
  right: 0;
}

.section-event .section-wrapper,
.section-ticket .section-wrapper {
  padding-top: 80px !important;
}

.ticket-card-header,
.ticket-card-body,
.ticket-card-footer {
  background-color: rgba(160, 155, 165, 0.7);
  border: 2px solid #fff;
  padding: 30px;
  text-align: center;
}

.ticket-card-header {
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  padding-bottom: 0;
}

.ticket-card-img {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
}

.ticket-card-body {
  border-top: none;
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-card-title {
  font-size: 30px;
  text-wrap: balance;
  margin: 0;
}

.ticket-card-desc {
  font-weight: 400;
  font-size: 18px;
  margin: 15px 0 0;
}

.ticket-card-footer {
  border-top: none;
  border-radius: 0 0 30px 30px;
  padding-top: 0;
}

.ticket-card-divider>svg {
  width: 100%;
}

.ticket-card-divider>svg>path,
.ticket-card-divider>svg>line {
  stroke-width: 2px;
  stroke: #d2d2d2;
  stroke: #fff;
}

.ticket-card-divider>svg>path {
  fill: rgba(160, 155, 165, 0.7);
}

.ticket-card-btn {
  height: 54px;
  border-radius: 10px;
  background: var(--persian-orange-vivid);
  border: 2px solid var(--persian-orange-vivid);
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 24px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.ticket-card-btn::before {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M64,112c-8.8,0-16,7.2-16,16v256c0,8.8,7.2,16,16,16h512c8.8,0,16-7.2,16-16v-35c-41.4-10.7-72-48.2-72-93s30.6-82.3,72-93 v-35c0-8.8-7.2-16-16-16H64z M0,128c0-35.3,28.7-64,64-64h512c35.3,0,64,28.7,64,64v61.3c0,11.2-12.8,18.7-24,18.7 c-26.5,0-48,21.5-48,48s21.5,48,48,48c11.2,0,24,7.5,24,18.7V384c0,35.3-28.7,64-64,64H64c-35.3,0-64-28.7-64-64V128z M432,144 c8.8,0,16,7.2,16,16s-7.2,16-16,16s-16-7.2-16-16S423.2,144,432,144z M432,208c8.8,0,16,7.2,16,16s-7.2,16-16,16s-16-7.2-16-16 S423.2,208,432,208z M416,288c0-8.8,7.2-16,16-16s16,7.2,16,16s-7.2,16-16,16S416,296.8,416,288z M432,336c8.8,0,16,7.2,16,16 s-7.2,16-16,16s-16-7.2-16-16S423.2,336,432,336z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(-45deg);
  content: "";
  display: inline;
}

.ticket-card-btn:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.ticket-card-btn:hover::before {
  filter: brightness(0) invert(1);
}

.blog-card {
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.blog-card-body {
  padding-top: 15px;
}

.blog-card-title {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.blog-card-desc {
  margin: 10px 0 0;
}

.section-event {
  background-color: rgb(246, 244, 249);
}

.section-event .section-wrapper {
  padding-top: 80px !important;
}

.partner-card {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.section-partner .section-footer {
  text-align: center;
}

.section-partner .section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  row-gap: 15px;
}

#footer {
  background-color: rgb(246, 244, 249);
  margin-top: auto;
  padding: 50px 0;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.footer-nav>li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
}

.section-gallery .section-wrapper {
  padding-bottom: 80px !important;
}

.gallery-carousel .gallery-card {
  height: 300px !important;
  margin-right: 30px;
}

.gallery-carousel.reverse,
.gallery-carousel.reverse .slick-list {
  direction: rtl;
}

.gallery-carousel+.gallery-carousel {
  margin-top: 30px;
}

.gallery-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(135deg, transparent 15px, black 0),
    linear-gradient(-135deg, transparent 15px, black 0),
    linear-gradient(45deg, transparent 15px, black 0),
    linear-gradient(-45deg, transparent 15px, black 0);
  mask-position: 0 0, 100% 0, 0 100%, 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 51% 51%;
}

.contact-info {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: square;
}

.social-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin: 0;
  padding: 0 30px;
  list-style: none;
}

.social-nav>li>a>img {
  height: 28px;
}

.section-about-intro .section-wrapper {
  padding-top: 140px !important;
}

.section-about-member {
  background-color: rgb(246, 244, 249);
}

.member-card {
  padding: 10px;
  background: #fff;
  height: 100%;
  mask-image: linear-gradient(135deg, transparent 10px, black 0),
    linear-gradient(-135deg, transparent 10px, black 0),
    linear-gradient(45deg, transparent 10px, black 0),
    linear-gradient(-45deg, transparent 10px, black 0);
  mask-position: 0 0, 100% 0, 0 100%, 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 51% 51%;
}

.member-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
  mask-image: linear-gradient(135deg, transparent 5px, black 0),
    linear-gradient(-135deg, transparent 5px, black 0),
    linear-gradient(45deg, transparent 5px, black 0),
    linear-gradient(-45deg, transparent 5px, black 0);
  mask-position: 0 0, 100% 0, 0 100%, 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 51% 51%;
}

.member-card-body {
  padding-top: 10px;
}

.member-card-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.member-card-subtitle {
  font-weight: 300;
  font-size: 14px;
  margin: 5px 0 0;
}

.section-about-member .section-wrapper {
  padding-top: 80px !important;
}

#page-header {
  padding: 140px 0 40px;
}

.page-title {
  font-size: 46px;
  font-weight: 600;
  color: var(--persian-green-dark-grayish);
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.page-title::before,
.page-title::after {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background: url(../img/icon-01.svg) no-repeat center/contain;
  content: "";
  margin: 0 15px;
}

.page-title::before {
  margin-left: 0;
}

.page-title::after {
  margin-right: 0;
}

#page-body {
  padding: 60px 0 100px;
}

.entry-header {
  border-bottom: 1px dashed var(--persian-blue-grayish-purplish);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.entry-title {
  font-size: 24px;
  margin: 0;
}

.entry-meta {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricetable {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.pricetable thead {
  background-color: var(--persian-green-moderate-bluish);
  color: #fff;
  text-align: center;
}

.pricetable th,
.pricetable td {
  vertical-align: middle;
  text-align: center;
}

.pricetable tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.pricetable th.scope-row {
  background-color: #e9ecef;
  font-weight: bold;
  text-align: left;
}

.pricetable caption {
  caption-side: top;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--persian-green-moderate-bluish);
}

/*Plugins*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/*CMS*/
/*Responsive*/

@media (max-width: 767.98px) {
  #header {
    width: 100vw;
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }

  #header>div {
    justify-content: space-between;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
  }

  .tbutton {
    height: 46px;
    padding: 0 18px;
  }

  .section {
    overflow: hidden;
  }

  .section-wrapper {
    padding: 50px 0;
  }

  .section-subtitle {
    font-size: 40px;
  }

  .section-hero {
    text-align: center;
  }

  .section-hero .section-wrapper {
    padding: 0 !important;
  }

  .section-hero .section-wrapper>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-hero .section-title {
    font-size: 18vw;
    margin: 10px 0 30px;
    letter-spacing: 2px;
  }

  #footer {
    text-align: center;
  }

  .footer-nav {
    margin-top: 10px;
    justify-content: center;
  }

  #page-header {
    text-align: center;
  }

  .section-schedule .section-tab>li>a>strong {
    font-size: 18px;
  }

  .section-schedule .section-tab>li>a>span {
    font-size: 14px;
  }

  .social-nav {
    margin: 15px auto;
  }
}

@media (min-width: 768px) {
  .container-fluid {
    max-width: 1400px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .section-blog .section-header,
  .section-event .section-header,
  .section-partner .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .section-blog .section-header>div:nth-child(1),
  .section-event .section-header>div:nth-child(1),
  .section-partner .section-header>div:nth-child(1) {
    width: 35%;
  }

  .section-blog .section-header>div:nth-child(2),
  .section-event .section-header>div:nth-child(2),
  .section-partner .section-header>div:nth-child(2) {
    width: 45%;
    text-align: end;
  }

  #footer>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .section-hero .section-icon {
    position: absolute;
    left: -40px;
    top: -100px;
  }

  .section-hero .section-subtitle {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  #footer>div>.footer-col:first-child,
  #footer>div>.footer-col:last-child {
    flex: 1;
    display: inline-flex;
    flex-shrink: 0;
  }

  #footer>div>.footer-col:first-child {
    text-align: start;
  }

  #footer>div>.footer-col:last-child {
    text-align: end;
    justify-content: end;
  }

  #footer>div>.footer-col:nth-child(2) {
    flex: 0 1 auto;
    margin: 0 auto;
  }

  .schedule-table>li {
    display: flex;
  }

  .schedule-table>li>strong {
    width: 25%;
  }

  .schedule-table>li>main {
    width: 75%;
  }

  #header+#page-body {
    padding-top: 130px;
  }
}