/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";
@font-face {
  font-family: "General Sans";
  font-weight: normal;
  src: url("../fonts/GeneralSans-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}
:root {
  --theme-primary-color: #cbc4bb;
  --theme-secondary-color: #06262d;
  --theme-purple-color: #906d96;
  --theme-red-color: #d94f34;
  --theme-yellow-color: #d89b2b;
  --theme-green-color: #457a7c;
  --theme-dark-color: #28211f;
  --theme-light-color: #fff;
  --theme-grey-color: #808080;
}
:focus {
  outline: 0 !important;
}
::selection {
  background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}
a {
  color: var(--theme-grey-color);
  text-decoration: none !important;
}
a:hover {
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 600;
  line-height: 1.4;
}
html {
  background: var(--theme-secondary-color);
}
html,
body {
  min-height: 100%;
  min-height: 100vh;
  position: relative;
}
body {
  font-family: "General Sans", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 1px;
  direction: ltr;
  background: var(--theme-secondary-color);
  color: var(--theme-light-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  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(3px);
  backdrop-filter: blur(3px);
  z-index: 100;
  cursor: pointer;
}
.body-overflow {
  overflow: hidden;
}
.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}
.btn,
label,
th,
.control-label {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
a > i:only-child,
button > i:only-child {
  line-height: inherit;
}
ol {
  list-style-type: decimal;
}
.row.v-gutters {
  margin-top: -12px;
  margin-bottom: -12px;
}
.row.v-gutters > div {
  padding: 12px;
}
.sm-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.sm-gutters > .col,
.sm-gutters > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.row.sm-gutters.v-gutters {
  margin-top: -5px;
  margin-bottom: -5px;
}
.row.sm-gutters.v-gutters > div {
  padding: 5px;
}
.lg-gutters {
  margin-left: -30px;
  margin-right: -30px;
}
.lg-gutters > .col,
.lg-gutters > [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}
.row.lg-gutters.v-gutters {
  margin-top: -30px;
  margin-bottom: -30px;
}
.row.lg-gutters.v-gutters > div {
  padding: 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-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.modal-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.page-navigation {
  margin: 50px 0 0;
  text-align: center;
  background: rgb(242, 242, 242);
  padding: 40px;
}
.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination > li {
  padding: 0 10px;
}
.pagination > li > a,
.pagination > li > .page-link.current {
  color: rgba(51, 51, 51, 0.5);
  line-height: 1;
  text-align: center;
  font-weight: 700;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.pagination > li > a.page-link:hover,
.pagination > li > .page-link.current {
  color: rgb(51, 51, 51);
}
/*Custom*/
.container-fluid {
  max-width: 100%;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
}
.section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-wrapper {
  padding: 60px 0;
}
.section-cover {
  position: relative;
}
.section-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
}
.section-divider {
  width: 100%;
}
.section-header + .section-body,
.section-body + .section-footer,
.section-header + .section-footer {
  margin-top: 60px;
}
.section-header {
  text-align: left;
}
.section-title {
  color: var(--theme-primary-color);
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
  margin: 0;
}
.section-subtitle {
  color: var(--theme-grey-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 0;
}
.section-btn {
  color: white;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-transform: lowercase;
}
.section-btn::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  background-size: cover;
  margin-left: 4px;
  content: "";
}
.section-btn:hover {
  color: var(--theme-grey-color);
}
.section-btn:hover::after {
  filter: brightness(0) invert(0) invert(54%) sepia(0%) saturate(1667%)
    hue-rotate(220deg) brightness(94%) contrast(91%);
}
#page-header {
  padding-top: 160px;
}
#page-title {
  color: var(--theme-primary-color);
  font-size: 40px;
  margin: 0;
}
#page-body {
  padding: 0 0 100px;
}
#page-cover + #page-body,
#page-header + #page-body {
  padding-top: 60px;
}
#header + #page-body {
  padding-top: 160px;
}
#page-footer {
  margin-top: auto;
}
#page-footer + #footer {
  margin-top: 0;
}
#page-title {
  margin: 0;
}
#page-cover {
  height: 100vh;
  border-bottom: 4px solid #fff;
  overflow: hidden;
}
#page-cover[data-color="purple"] {
  border-bottom-color: var(--theme-purple-color);
}
#page-cover[data-color="red"] {
  border-bottom-color: var(--theme-red-color);
}
#page-cover[data-color="green"] {
  border-bottom-color: var(--theme-green-color);
}
#page-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-filter {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-filter > li > a {
  color: #666666;
  font-size: 48px;
  font-weight: 500;
  text-transform: lowercase;
}
#page-filter > li.active > a {
  color: #fff;
}
.subsection {
  padding: 40px 0;
}
.subsection-header + .subsection-body,
.subsection-body + .subsection-footer,
.subsection-header + .subsection-footer {
  margin-top: 20px;
}
.subsection-header {
  text-align: center;
}
.subsection-title {
  color: #001d32;
  font-size: 24px;
  font-weight: 400;
  line-height: 72px;
  text-transform: capitalize;
}
.subsection-cover {
  position: relative;
}
.subsection-cover > img {
  width: 100%;
}
.tbutton {
  font-size: 28px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin: 0;
  background: none;
  border: none;
  padding: 10px 20px;
}
.tbutton::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  background-size: cover;
  margin-left: 4px;
  content: "";
}
.tbutton-primary-fill:hover::after,
.tbutton-secondary-fill:not(:hover)::after {
  filter: brightness(0) invert(0);
}
.tbutton-block {
  display: flex;
  width: 100%;
}
.tbutton-block + .tbutton-block {
  margin-top: 15px;
}
.tbutton-primary-fill {
  background: #000;
  color: #fff;
}
.tbutton-primary-fill:hover {
  background: #fff;
  color: #000;
}
.tbutton-secondary-fill {
  background: #fff;
  color: #000;
}
.tbutton-secondary-fill:hover {
  background: #000;
  color: #fff;
}
#header {
  padding: 60px 0 20px;
  height: 153px;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo {
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.logo > img {
  height: 40px;
}
#navigation {
  line-height: 1;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 160px 6.25vw 60px;
}
#navigation.active {
  opacity: 1;
  visibility: visible;
}
#navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#navigation > ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#navigation li > a {
  color: white;
  text-transform: lowercase;
}
#navigation li > a:hover,
#navigation li.current-menu-item > a {
  color: var(--theme-grey-color);
}
#navigation > ul > li > a {
  color: white;
  font-size: 100px;
  font-weight: 500;
}
#navigation > ul > li:nth-child(even) {
  margin-left: auto;
}
#navigation > ul li > ul {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
#navigation > ul li > ul > li:not(:last-child) {
  margin-right: 42px;
}
#navigation > ul li > ul > li > a {
  font-size: 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
#navigation > ul li > ul > li > a::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  background-size: cover;
  margin-left: 4px;
  content: "";
}
#navigation > ul li > ul > li > a:hover::after {
  filter: brightness(0) invert(0) invert(54%) sepia(0%) saturate(1667%)
    hue-rotate(220deg) brightness(94%) contrast(91%);
}
.user-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-toggle,
.nav-close {
  font-size: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle {
  width: 40px;
  height: 16px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.nav-close {
  width: 40px;
  height: 16px;
}
.nav-close::before,
.nav-close::after {
  width: 40px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  background: #fff;
  content: "";
}
.nav-close::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
.nav-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
body:not(.nav-opened) .nav-close {
  display: none;
}
body.nav-opened .nav-toggle {
  display: none;
}
.section-intro .section-wrapper {
  padding: 160px 0 110px;
}
.section-intro .section-body {
  color: var(--theme-primary-color);
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
}
.section-intro .section-nav {
  margin: 40px 0 0;
}
.section-intro .section-tab {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-intro .section-tab > li:not(:last-child) {
  margin-right: 40px;
}
.section-intro .section-tab > li > a {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.section-intro .section-tab > li > a:hover {
  color: #fff !important;
}
.slide-card-header {
  position: relative;
}
.slide-card-header::before {
  padding-top: 31.25%;
  display: block;
  content: "";
}
.slide-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.event-category-card {
  position: relative;
}
.event-category-card-title {
  color: var(--theme-secondary-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.event-category-card[data-color="purple"] .event-category-card-title {
  color: var(--theme-purple-color);
}
.event-category-card[data-color="red"] .event-category-card-title {
  color: var(--theme-red-color);
}
.event-category-card[data-color="green"] .event-category-card-title {
  color: var(--theme-green-color);
}
.event-category-card-body {
  color: #cccccc;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  margin: 16px 0 0;
}
.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.event-card-img {
  width: 100%;
  border-radius: 15px;
}
.event-card-body {
  margin: -30px 15px 0;
  padding: 15px 15px 0;
  background: #fff;
  position: relative;
  height: 100%;
  border-radius: 0 0 15px 15px;
}
.event-card-body:before {
  content: "";
  position: absolute;
  left: 50%;
  height: 6px;
  width: 100%;
  bottom: 100%;
  transform: translateX(-50%);
  background: radial-gradient(
      circle,
      transparent,
      transparent 50%,
      #fff 50%,
      #fff 100%
    ) -7px -8px/16px 16px repeat-x;
}
.event-card-action {
  color: var(--theme-secondary-color);
  margin: 15px -15px 0;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px dashed var(--theme-secondary-color);
  position: relative;
}
.event-card-action::before,
.event-card-action::after {
  width: 20px;
  height: 20px;
  background: var(--theme-secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 1;
  content: "";
}
.event-card-action::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.event-card-action::after {
  right: 0;
  transform: translate(50%, -50%);
}
.running > timer,
.running > div {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: lowercase;
}
.running > div {
  font-size: 12px;
}
.running > timer > span,
.running > div > span {
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
}
.running > timer > span + span::before {
  content: ":";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.event-card-badge {
  font-size: 12px;
  font-weight: 500;
  height: 26px;
  border-radius: 26px;
  background: var(--theme-secondary-color);
  color: var(--theme-primary-color);
  padding: 0 14px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.event-card-title {
  color: var(--theme-secondary-color);
  font-size: 28px;
  font-weight: 500;
  margin: 30px 0;
  text-align: center;
}
.event-card-footer {
  margin-top: auto;
  padding: 20px 0 0;
}
.event-card-price {
  color: var(--theme-secondary-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.event-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-card-date {
  color: var(--theme-dark-color);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.event-card-cat {
  color: var(--theme-dark-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.event-card[data-color="purple"] .event-card-cat,
.event-card[data-color="purple"] .event-card-date {
  color: var(--theme-purple-color);
}
.event-card[data-color="red"] .event-card-cat,
.event-card[data-color="red"] .event-card-date {
  color: var(--theme-red-color);
}
.event-card[data-color="yellow"] .event-card-cat,
.event-card[data-color="yellow"] .event-card-date {
  color: var(--theme-yellow-color);
}
.section-stat .section-title {
  font-size: 40px;
  font-weight: 500;
}
.section-stat .section-desc {
  margin: 24px 0 0;
}
.section-stat .section-nav {
  margin: 32px 0 0;
}
.stat-card-subtitle {
  color: var(--theme-grey-color);
  font-size: 64px;
  font-weight: 400;
}
.stat-card-title {
  color: var(--theme-light-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 12px 0 0;
}
.gallery-card {
  position: relative;
}
.gallery-card-img {
  width: 100%;
}
.gallery-card-body {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.gallery-card:hover .gallery-card-body {
  opacity: 1;
  visibility: visible;
}
.gallery-card-title {
  color: var(--theme-secondary-color);
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}
.instagram-card {
  position: relative;
}
.instagram-card-header {
  position: relative;
}
.instagram-card-header::after {
  background: url(../img/icon-instagram.svg) no-repeat center center;
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  content: "";
}
.instagram-card-img {
  width: 100%;
  border-radius: 5px;
}
.instagram-card-body {
  padding: 16px 0 0;
}
.instagram-card-account {
  color: var(--theme-secondary-color);
  font-size: 14px;
  font-weight: 500;
}
.instagram-card-desc {
  color: var(--theme-secondary-color);
  font-size: 16px;
  font-weight: 400;
  margin: 12px 0 0;
}
#footer {
  margin-top: auto;
}
.footer-top {
  padding-top: 160px;
}
.footer-logo > img {
  height: 40px;
}
.footer-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav > li > a {
  color: var(--theme-grey-color);
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
}
.footer-nav > li > a:hover {
  color: var(--theme-light-color);
}
.footer-bottom {
  border-top: 1px #b3b3b3 solid;
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 60px;
}
.copyright {
  color: var(--theme-grey-color);
  font-size: 16px;
  font-weight: 400;
}
.social-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-nav > li > a {
  color: var(--theme-grey-color);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.social-nav > li > a:hover {
  color: var(--theme-light-color);
}
.event-schedule::before {
  background: var(--theme-secondary-color);
  width: 8px;
  height: 32px;
  transform: skewX(-25deg);
  transform-origin: 0 100%;
  margin: 0 0 24px;
  display: inline-flex;
  content: "";
}
#page-body[data-color="purple"] .event-schedule::before {
  background: var(--theme-purple-color);
}
#page-body[data-color="red"] .event-schedule::before {
  background: var(--theme-red-color);
}
#page-body[data-color="green"] .event-schedule::before {
  background: var(--theme-green-color);
}
.event-schedule {
  margin: 0;
  padding: 0;
  list-style: none;
}
.event-schedule > li {
  margin-bottom: 24px;
}
.event-schedule > li > strong {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 500;
}
.event-schedule > li > div {
  color: #b3b3b3;
  font-size: 20px;
  font-weight: 400;
}
.event-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.event-info > li > strong,
.event-info > li > span {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 400;
}
.event-person {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.event-person > li:not(:last-child) {
  margin-bottom: 20px;
}
.event-person > li {
  display: flex;
  align-items: center;
}
.event-person-img {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.event-person-title {
  color: var(--theme-secondary-color);
  font-size: 20px;
  font-weight: 500;
  margin-left: 20px;
}
.event-header {
  border-bottom: 1px solid #4c4c4c;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.event-title {
  color: var(--theme-secondary-color);
  font-size: 60px;
  font-weight: 500;
  line-height: 64px;
}
.event-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-price {
  color: var(--theme-secondary-color);
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
.event-btn {
  color: white;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.event-btn::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  background-size: cover;
  margin-left: 4px;
  content: "";
}
#page-body[data-color="purple"] .event-btn {
  color: var(--theme-purple-color);
}
#page-body[data-color="red"] .event-btn {
  color: var(--theme-red-color);
}
#page-body[data-color="green"] .event-btn {
  color: var(--theme-green-color);
}
#page-body[data-color="purple"] .event-btn::after {
  filter: var(--theme-purple-filter);
}
#page-body[data-color="red"] .event-btn::after {
  filter: var(--theme-red-filter);
}
#page-body[data-color="green"] .event-btn::after {
  filter: var(--theme-green-filter);
}
.event-btn:hover {
  color: #fff !important;
}
.event-btn:hover::after {
  filter: brightness(0) invert(1) !important;
}
.event-body {
  margin: 60px 0 0;
}
.event-body-title {
  color: white;
  font-size: 24px;
  font-weight: 500;
}
.event-body-desc {
  color: #e6e6e6;
  font-size: 24px;
  font-weight: 300;
}
.contact-info {
  color: var(--theme-light-color);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info > li:not(:last-child) {
  margin-bottom: 16px;
}
.contact-title {
  color: var(--theme-primary-color);
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
  margin: 0;
}
.contact-subtitle {
  color: var(--theme-light-color);
  font-size: 20px;
  font-weight: 300;
  margin: 32px 0 0;
}
body.page-template-page-contact form label {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
}
body.page-template-page-contact form .form-group {
  margin-bottom: 36px;
}
body.page-template-page-contact form .form-control {
  color: var(--theme-light-color);
  font-size: 20px;
  font-weight: 400;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid var(--theme-grey-color);
  background: none;
}
body.page-template-page-contact form .tbutton {
  display: flex;
  margin-left: auto;
}
.contact-desc {
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 300;
  margin: 100px 0 0;
}
.section-about-intro .section-wrapper {
  padding-top: 160px;
}
.section-about-intro .section-body {
  color: white;
  font-size: 64px;
  font-weight: 500;
  line-height: 72px;
  text-align: center;
}
body.page-template-page-about .section-title {
  color: white;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
.section-about-history .section-body {
  color: #e6e6e6;
  font-size: 32px;
  font-weight: 400;
}
.section-about-history .section-footer {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 300;
}
.member-card + .member-card {
  margin-top: 40px;
}
.member-card {
  padding-bottom: 40px;
  border-bottom: 1px #b3b3b3 solid;
}
.member-card-header {
  position: relative;
}
.member-card-img {
  width: 100%;
  object-fit: cover;
  clip-path: polygon(6.46% 0%, 95.95% 20.48%, 100% 91.23%, 0% 100%);
}
.member-card-title {
  color: #e6e6e6;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
.member-card-subtitle {
  color: #b3b3b3;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 0;
}
.member-card-phone {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 0;
}
.member-card-email {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 500;
  margin: 12px 0 0;
}
.member-card-social {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.member-card-social > li:not(:last-child) {
  margin-right: 20px;
}
.member-card-social > li > a {
  color: #cccccc;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.member-card-social > li > a:hover {
  color: #fff;
}
.member-card-social > li > a::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg) no-repeat center center;
  filter: brightness(0) invert(0) invert(85%) sepia(0%) saturate(1%)
    hue-rotate(290deg) brightness(96%) contrast(95%);
  background-size: cover;
  margin-left: 4px;
  content: "";
}
.member-card-social > li > a:hover::after {
  filter: brightness(0) invert(1);
}
.section-about-history::before,
.section-about-service::before,
.section-about-member::before {
  max-width: 100%;
  margin: 0 6.25vw;
  border-bottom: 1px #b3b3b3 solid;
  display: block;
  content: "";
}
.masonry-grid::after {
  content: "";
  display: block;
  clear: both;
}
.masonry-grid-item {
  margin-bottom: 30px;
}
.image-gallery-card {
  position: relative;
}
.image-gallery-card-img {
  width: 100%;
}
/*Motions*/
#navigation {
  transform: translateY(-100%);
  transition: all 500ms ease-in-out 0ms;
}
#navigation > ul > li {
  transition: all 300ms ease-out 0ms;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
#navigation > ul > li.menu-item-has-children > ul > li {
  transition: all 300ms ease-out 0ms;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
}
.section-intro .section-tab > li,
.section-intro .section-desc > div {
  transition: all 400ms ease-out 0ms;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
}
.section-about-intro .section-desc > div {
  transition: all 300ms ease-out 0ms;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
#navigation.active,
#navigation.active > ul > li,
#navigation > ul > li.menu-item-has-children:hover > ul > li,
.section-intro.active .section-tab > li,
.section-intro.active .section-desc > div,
.section-about-intro.active .section-desc > div {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.appear-on-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: visibility 0s ease-in-out, opacity 300ms ease-in-out,
    transform 300ms ease-in-out;
}
.appear-on-scroll.come-in,
.appear-on-scroll.already-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-cover-img.appear-on-scroll {
  transition-duration: 400ms !important;
  transform: scale(1.09375) !important;
}
.page-cover-img.appear-on-scroll.come-in,
.page-cover-img.appear-on-scroll.already-visible {
  transform: scale(1) !important;
}
/*Plugins*/
@keyframes smartphoto {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes smartphoto-img-wrap {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes smartphoto-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smartphoto-loader {
  0% {
    opacity: 0.4;
    transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg);
  }
  100% {
    opacity: 0.4;
    transform: rotate(360deg);
  }
}
@keyframes smartphoto-appear {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes smartphoto-hide {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.smartphoto {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
  opacity: 1;
  font-family: sans-serif;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  transition: all 0.3s ease-out;
  animation-name: smartphoto;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
.smartphoto[aria-hidden="true"] {
  display: none;
}
.smartphoto-close {
  opacity: 0;
}
.smartphoto-count {
  display: inline-block;
  color: #fff;
  font-size: 16px;
}
.smartphoto-header {
  display: block;
  box-sizing: border-box;
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
}
.smartphoto-content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.smartphoto-dismiss {
  display: block;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiI+PHRpdGxlPmljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNTc2LjQyLDE0MDYuNzYsMjc4NCwxOTkuMTlhNTYuODYsNTYuODYsMCwwLDAsMC04MC4xOGwtNzguOTItNzguOTJhNTYuODYsNTYuODYsMCwwLDAtODAuMTgsMEwxNDE3LjMyLDEyNDcuNjYsMjA5Ljc1LDQwLjA5YTU2Ljg2LDU2Ljg2LDAsMCwwLTgwLjE4LDBMNTAuNjUsMTE5YTU2Ljg2LDU2Ljg2LDAsMCwwLDAsODAuMThMMTI1OC4yMywxNDA2Ljc2LDUwLjY1LDI2MTQuMzRhNTYuODYsNTYuODYsMCwwLDAsMCw4MC4xOGw3OC45Miw3OC45MmE1Ni44Niw1Ni44NiwwLDAsMCw4MC4xOCwwTDE0MTcuMzIsMTU2NS44NiwyNjI0LjksMjc3My40NGE1Ni44Niw1Ni44NiwwLDAsMCw4MC4xOCwwbDc4LjkyLTc4LjkyYTU2Ljg2LDU2Ljg2LDAsMCwwLDAtODAuMThaIi8+PC9zdmc+);
  text-shadow: 0 1px 0 #fff;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}
.smartphoto-body {
  position: relative;
  z-index: 102;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.smartphoto-inner {
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.smartphoto-img {
  display: none;
  max-width: none;
  width: auto;
  height: auto;
  cursor: zoom-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: transform 0.3s ease-out;
  -webkit-user-drag: none;
}
.smartphoto-img.active {
  display: block;
}
.smartphoto-img-onmove {
  cursor: grab;
  cursor: -webkit-grab;
  transition: none;
}
.smartphoto-img-elasticmove {
  transition: transform 0.3s ease-out;
}
.smartphoto-img-wrap {
  display: inline-block;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  animation-name: smartphoto-img-wrap;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
.smartphoto-img-left {
  transform: translateX(150%) !important;
}
.smartphoto-img-right {
  transform: translateX(-150%) !important;
}
.smartphoto-arrows {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1002;
  top: 50%;
  left: 0;
  opacity: 1;
  animation-name: smartphoto-appear;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
.smartphoto-arrows[aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}
.smartphoto-arrows li {
  display: block;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -20px;
  box-sizing: content-box;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-name: smartphoto-appear;
}
.smartphoto-arrows li:focus {
  outline: none;
}
.smartphoto-arrows [aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}
.smartphoto-arrows a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.smartphoto-arrow-right {
  right: 0;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.smartphoto-arrow-right a {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiAiPjx0aXRsZT5pY29uPC90aXRsZT48cGF0aCBkPSJNMTgzNy44OCwxNDE3LjMyLDY0My41OSwyMjNhNzIuMjEsNzIuMjEsMCwwLDEsMC0xMDEuODJMNzQzLjgyLDIxYTcyLjIxLDcyLjIxLDAsMCwxLDEwMS44MiwwTDIwOTAuODMsMTI2Ni4xOWwxMDAuMjMsMTAwLjIzYTcyLjIxLDcyLjIxLDAsMCwxLDAsMTAxLjgyTDg0NS42NCwyODEzLjY1YTcyLjIxLDcyLjIxLDAsMCwxLTEwMS44MiwwTDY0My41OSwyNzEzLjQyYTcyLjIxLDcyLjIxLDAsMCwxLDAtMTAxLjgyWiIvPjwvc3ZnPg==);
}
.smartphoto-arrow-left {
  left: 0;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.smartphoto-arrow-left a {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiI+PHRpdGxlPmljb248L3RpdGxlPjxwYXRoIGQ9Ik05OTYuNzcsMTQxNy4zMiwyMTkxLjA2LDIyM2E3Mi4yMSw3Mi4yMSwwLDAsMCwwLTEwMS44MkwyMDkwLjgzLDIxQTcyLjIxLDcyLjIxLDAsMCwwLDE5ODksMjFMNzQzLjgyLDEyNjYuMTksNjQzLjU5LDEzNjYuNDJhNzIuMjEsNzIuMjEsMCwwLDAsMCwxMDEuODJMMTk4OSwyODEzLjY1YTcyLjIxLDcyLjIxLDAsMCwwLDEwMS44MiwwbDEwMC4yMy0xMDAuMjNhNzIuMjEsNzIuMjEsMCwwLDAsMC0xMDEuODJaIi8+PC9zdmc+);
}
.smartPhotoArrowHideIcon {
  display: none;
}
.smartphoto-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  animation-name: smartphoto-appear;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
.smartphoto-nav[aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}
.smartphoto-nav ul {
  display: block;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.smartphoto-nav li {
  display: inline-block;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.smartphoto-nav a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
}
.smartphoto-nav a:focus {
  opacity: 0.8;
}
.smartphoto-nav a.current {
  opacity: 1;
}
.smartphoto-nav img {
  width: auto;
  height: 100%;
}
.smartphoto-list {
  list-style-type: none;
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.smartphoto-list li {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}
.smartphoto-list li:focus {
  outline: none;
}
.smartphoto-list-onmove {
  transition: all 0.3s ease-out;
}
.smartphoto-caption {
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 0 50px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 50px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.smartphoto-caption:focus {
  outline: none;
}
.smartphoto-loader-wrap {
  display: block;
  position: relative;
  z-index: 103;
  width: 0;
  height: 0;
  transform: translate(50vw, 50vh);
}
.smartphoto-loader {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -25px;
  margin-left: -25px;
  border: 8px solid #17cddd;
  border-right-color: transparent;
  border-radius: 50%;
  animation: smartphoto-loader 0.5s infinite linear;
}
.smartphoto-img-clone {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.smartphoto-sr-only {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}
/*CMS*/
.entry-content {
  font-size: 16px;
}
.entry-content h6 {
  font-size: 16px;
}
.entry-content h5 {
  font-size: 18px;
}
.entry-content h4 {
  font-size: 20px;
}
.entry-content h3 {
  font-size: 22px;
}
.entry-content h2 {
  font-size: 24px;
}
.entry-content h1 {
  font-size: 26px;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content iframe {
  border: none;
}
.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}
.entry-content video {
  width: 100%;
}
.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone,
img.alignnone {
  /* not sure about this one */
}
.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
/*Responsive*/

@media (max-width: 767.98px) {
  #footer {
    text-align: center;
  }
  .footer-nav {
    margin-top: 20px;
  }
  .footer-nav,
  .social-nav {
    flex-direction: column;
  }
  #page-filter {
    flex-direction: column;
  }
  .member-card-body {
    margin: 24px 0 0;
  }
  #navigation > ul > li:not(:last-child) {
    margin-bottom: 20px;
  }
  #navigation > ul > li > a {
    font-size: 60px;
  }
  #navigation > ul li > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #navigation > ul li > ul > li:not(:last-child) {
    margin-right: 42px;
  }
  #navigation > ul li > ul > li > a {
    font-size: 20px;
  }
  .section-intro .section-body {
    font-size: 34px;
    line-height: 34px;
  }
  .section-intro .section-tab > li > a {
    font-size: 26px;
  }
  .section-title {
    font-size: 34px;
    line-height: 34px;
  }
  .stat-card-subtitle {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  #navigation > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-event .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .section-gallery .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .section-instagram .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .footer-top,
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-nav > li:not(:last-child) {
    margin-right: 40px;
  }
  .social-nav > li:not(:last-child) {
    margin-right: 20px;
  }
  #page-filter > li:not(:last-child) {
    margin-right: 32px;
  }
  .member-card {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .member-card-header {
    margin-left: 30px;
    min-width: 20%;
    max-width: 20%;
  }
}
