body.page-loaded .page-preloader-cover {
  transition: 0.8s cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
  opacity: 0;
  pointer-events: none;
}

.dance-page .page-preloader-cover {
  background-color: #100a19;
}

.page-preloader-cover {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.01);
}

.cssload-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  -webkit-perspective: 780px;
  perspective: 780px;
}

.cssload-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%;
}
.cssload-inner.cssload-one {
  left: 0%;
  top: 0%;
  animation: cssload-rotate-one 1.15s linear infinite;
  border-bottom: 6px solid #009342;
}
.cssload-inner.cssload-two {
  right: 0%;
  top: 0%;
  animation: cssload-rotate-two 1.15s linear infinite;
  border-right: 6px solid #00A0E4;
}
.cssload-inner.cssload-three {
  right: 0%;
  bottom: 0%;
  animation: cssload-rotate-three 1.15s linear infinite;
  border-top: 6px solid #95268F;
}

@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-one {
  0% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-one {
  0% {
    -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-one {
  0% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-two {
  0% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-two {
  0% {
    -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-two {
  0% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-three {
  0% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-three {
  0% {
    -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-three {
  0% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
/*------------------------ MENU ------------------------*/
header {
  background: #fff;
  min-height: 50px;
  position: relative;
  width: 100%;
  z-index: 10;
  transition: 0.35s ease;
}

.top-panel {
  transition: 0.35s ease;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  padding: 24px 0px 31px 0px;
}
.top-panel .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-panel .container .social-list li {
  font-size: 17px;
  margin-right: 36px;
}
.top-panel .container .social-list li:last-child {
  margin-right: 0;
}
.top-panel .container .social-list i {
  color: #b0b0b0;
  transition: 0.35s ease;
}
.top-panel .container .social-list a:hover i {
  color: #00A0E4;
}

.header-nav .header-nav-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.35s ease;
  padding: 20px 0 17px;
}

.nav-menu {
  width: 100%;
  padding: 90px 0 30px;
  height: 100vh;
  left: -100%;
  opacity: 0;
  top: 0;
  z-index: 3;
  background-color: #fff;
  position: fixed;
  transition: 0.3s ease-in-out;
}
.nav-menu.active {
  left: 0;
  opacity: 1;
}

.nav-list > li > a {
  font-size: 14px;
  line-height: 30px;
  padding: 0 15px;
}

.nav-list {
  overflow: hidden;
  overflow-y: auto;
  max-height: 100%;
}
.nav-list li {
  display: block;
  position: relative;
}
.nav-list li a {
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #989898;
  font-weight: 500;
}
.nav-list li a:hover {
  color: #00A0E4;
}
.nav-list li a:hover i {
  color: #00A0E4;
}
.nav-list li a i {
  margin-left: 5px;
  color: #989898;
}
.nav-list li.dropdown ul {
  min-width: 100%;
  background: #333;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.nav-list li.dropdown ul li {
  text-align: left;
}
.nav-list li.dropdown ul li a {
  font-size: 12px;
  padding: 10px 15px 10px 25px;
}
.nav-list li.dropdown ul li a:hover {
  color: #95268F;
}
.nav-list li.dropdown ul li.active-page a {
  color: #95268F;
}

@media (min-width: 768px) {
  .nav-menu {
    margin-top: 0;
    display: block !important;
    width: auto !important;
    position: relative;
    left: auto;
    top: auto;
    background-color: transparent;
    z-index: 0;
    height: auto;
    opacity: 1;
    padding: 0;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    max-height: none;
  }
  .nav-list > li {
    margin-right: 20px;
  }
  .nav-list > li:last-child {
    margin-right: 0;
  }
  .nav-list > li > a {
    padding: 0 2px;
  }
  .nav-list > li > a:after {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00A0E4;
    transition: width 0.35s ease;
  }
  .nav-list > li.active-page > a:after, .nav-list > li:hover > a:after {
    width: 100%;
  }
  .nav-list > li.dropdown ul {
    display: block !important;
    left: 0;
    position: absolute;
    top: 100%;
    margin-top: 25px;
    min-width: 200px;
    transition: all 0.3s ease-in;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
  }
  .nav-list > li.dropdown ul li a {
    padding: 4px 15px;
    display: inline-block;
  }
  .nav-list > li.dropdown.active ul {
    pointer-events: auto;
    transition-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}
.nav-btn {
  display: block;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 60px;
  padding: 10px 15px;
  display: block;
  z-index: 4;
  overflow: hidden;
  transform: translateY(-50%);
}
.nav-btn span {
  background-color: #fff;
  height: 2px;
  width: 100%;
  display: block;
  margin: 6px 0;
  position: relative;
  transition: all 0.4s ease, visibility 0.1s ease;
}

@media (min-width: 768px) {
  .nav-btn {
    display: none;
  }
}
.nav-btn:hover span:nth-child(2) {
  margin-left: -8px;
}

.nav-btn.active span {
  height: 2px;
  transform-origin: 0;
}

.nav-btn.active span:first-child {
  transform: translateX(8px) rotate(45deg);
}

.nav-btn.active span:last-child {
  margin-top: 11px;
  transform: translateX(8px) rotate(-45deg);
}

.nav-btn.active span:nth-child(2) {
  visibility: hidden;
}

/*--------------- MARATHON HEADER FIXED ---------------*/
.marathon-header-fixed {
  background-color: transparent;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.marathon-header-fixed .top-panel {
  padding-top: 55px;
}
.marathon-header-fixed .top-panel .container .social-list li {
  margin-right: 38px;
}
.marathon-header-fixed .top-panel .container .social-list li:last-child {
  margin-right: 0;
}
.marathon-header-fixed .top-panel .container .social-list a:hover i {
  color: #95268F;
}
.marathon-header-fixed .top-panel .container .social-list i {
  color: #fff;
}
.marathon-header-fixed .nav-list > li {
  margin-right: 40px;
}
.marathon-header-fixed .nav-list > li:last-child {
  margin-right: 0;
}
.marathon-header-fixed .nav-list > li > a {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.marathon-header-fixed .nav-list > li > a:after {
  background-color: #95268F;
}
.marathon-header-fixed .nav-list > li > a i {
  color: #fff;
}
.marathon-header-fixed .nav-list > li > a:hover {
  color: #95268F;
}
.marathon-header-fixed .nav-list > li > a:hover i {
  color: #95268F;
}
.marathon-header-fixed .header-nav .header-nav-cover {
  border-top-color: rgba(255, 255, 255, 0.3);
}

/*-------------- CONFERENCE-HEADER-FIXED --------------*/
.conference-header-fixed {
  padding: 20px 0;
  background-color: transparent;
}
.conference-header-fixed.header-top {
  padding: 10px 0;
}
.conference-header-fixed .conference-header-row {
  align-items: center;
}
.conference-header-fixed .conference-header-btn {
  display: flex;
  justify-content: flex-end;
}
.conference-header-fixed .nav-list > li > a {
  color: #fff;
}
.conference-header-fixed .nav-list > li > a:after {
  top: auto;
  bottom: 0;
}
.conference-header-fixed .nav-list > li > a i {
  color: #fff;
}
.conference-header-fixed .btn:hover {
  color: #fff;
}

.header-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-fixed.header-top {
  top: -100px;
  position: fixed;
  background-color: rgba(51, 51, 51, 0.9);
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.1);
}
.header-fixed.header-top.header-scroll {
  top: 0;
}

.marathon-header-fixed.header-top {
  top: -115px;
  background-color: #00A0E4;
}
@media (max-width: 1366px) {
  .marathon-header-fixed.header-top {
    top: -75px;
  }
}
@media (max-width: 767px) {
  .marathon-header-fixed.header-top {
    top: 0;
  }
}
.marathon-header-fixed.header-top.header-scroll {
  top: -115px;
}
@media (max-width: 1366px) {
  .marathon-header-fixed.header-top.header-scroll {
    top: -75px;
  }
}
@media (max-width: 767px) {
  .marathon-header-fixed.header-top.header-scroll {
    top: 0;
  }
}

/*----------------- DANCE-HEADER-FIXED -----------------*/
.dance-header-fixed {
  background-color: transparent;
  padding: 28px 0;
}
.dance-header-fixed .nav-btn span {
  background-color: #fff;
}
.dance-header-fixed.header-fixed.header-top {
  padding: 18px 0;
  background-color: rgba(22, 14, 34, 0.95);
  box-shadow: 0 0 0px 1px rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .dance-header-fixed .nav-list {
    justify-content: flex-end;
  }
}
.dance-header-fixed .nav-list > li > a {
  color: #fff;
}
.dance-header-fixed .nav-list > li > a:after {
  top: auto;
  bottom: 0;
  background-color: #009342;
}
.dance-header-fixed .nav-list > li > a i {
  color: #fff;
}
.dance-header-fixed .nav-list > li > a:hover {
  color: #009342;
}
.dance-header-fixed .nav-list > li > a:hover i {
  color: #009342;
}
.dance-header-fixed .nav-list > li.dropdown ul {
  background-color: #100a19;
}

/*--------------------- PAGE-TITLE ---------------------*/
.page-title {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title.page-title-conference:before {
  background: rgba(0, 0, 0, 0.7);
}
.page-title.page-title-dance:before {
  background: rgba(12, 3, 42, 0.8);
}
.page-title.page-title-dance:after {
  background-color: #100a19;
}
.page-title.page-title-dance .breadcrumbs li a:hover {
  color: #009342;
}
.page-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(168deg, rgba(3, 63, 64, 0.6) 18.94%, rgba(15, 51, 178, 0.6) 82.05%);
}
.page-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0 0, 50% 100%);
  z-index: 4;
}

.page-title .container {
  padding: 40px 0;
  min-height: 214px;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-title .container .title {
  color: #fff;
  margin-bottom: 0;
  line-height: 1em;
}

.breadcrumbs {
  margin-bottom: 6px;
}
.breadcrumbs ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Istok Web", sans-serif;
}

.breadcrumbs li a,
.breadcrumbs li {
  position: relative;
  letter-spacing: 0.01em;
  color: #fff;
}

.breadcrumbs li:not(:last-child):after {
  content: "/";
  display: inline-block;
  padding: 0 4px;
}

.breadcrumbs li a:hover {
  color: #00A0E4;
}

/*-------------------- HEADER-DANCE --------------------*/
.header-dance {
  background-color: #100a19;
}
.header-dance .nav-list > li.dropdown ul {
  background-color: #100a19;
}
.header-dance .nav-list > li > a {
  color: #fff;
}
.header-dance .nav-list > li > a:after {
  background-color: #009342;
}
.header-dance .nav-list > li > a i {
  color: #fff;
}
.header-dance .nav-list > li > a:hover {
  color: #009342;
}
.header-dance .nav-list > li > a:hover i {
  color: #009342;
}
.header-dance .header-nav .header-nav-cover {
  border-color: rgba(255, 255, 255, 0.2);
}
.header-dance .nav-btn span {
  background-color: #fff;
}
@media (max-width: 767px) {
  .header-dance .nav-menu {
    background-color: #100a19;
  }
}

/*----------------------- MEDIA -----------------------*/
@media (max-width: 1366px) {
  .marathon-header-fixed .nav-list > li {
    margin-right: 30px;
  }
  .marathon-header-fixed .top-panel {
    padding-top: 24px;
    padding-bottom: 22px;
  }
  .marathon-header-fixed .top-panel .container .social-list li {
    margin-right: 25px;
  }

  .page-title .container {
    min-height: 200px;
  }

  .conference-header-fixed .nav-list > li {
    margin-right: 16px;
  }
  .conference-header-fixed .nav-list > li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .marathon-header-fixed .nav-list > li {
    margin-right: 18px;
  }

  .nav-list > li > a {
    font-size: 14px;
  }

  .nav-list > li.dropdown ul {
    min-width: 160px;
  }
  .nav-list > li.dropdown ul li a {
    padding: 2px 15px;
    font-size: 12px;
  }

  .marathon-header-fixed .top-panel .container .social-list li {
    margin-right: 20px;
    font-size: 15px;
  }

  .top-panel {
    padding: 20px 0px;
  }
  .top-panel .container .social-list li {
    font-size: 15px;
  }

  .title-conference {
    padding: 8px 0;
  }
  .title-conference:before {
    height: 62px;
  }

  .conference-header-fixed .nav-list > li > a {
    font-size: 12px;
  }
  .conference-header-fixed .conference-header-btn {
    padding-left: 0;
  }
  .conference-header-fixed .conference-header-btn .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .marathon-header-fixed .top-panel .container .social-list li {
    margin-right: 16px;
  }

  .marathon-header-fixed .nav-list > li {
    margin-right: 8px;
  }

  .nav-list > li > a {
    font-size: 12px;
  }

  .page-title .container {
    min-height: 160px;
  }

  .conference-header-fixed .nav-list {
    justify-content: flex-end;
  }
  .conference-header-fixed .conference-header-btn {
    display: none;
  }
  .conference-header-fixed .nav-list > li.dropdown ul {
    left: auto;
    right: 0;
  }

  .dance-header-fixed .nav-list > li.dropdown ul {
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .top-panel {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .top-panel .social-list {
    display: none;
  }

  .nav-btn span {
    background-color: #333;
  }

  .nav-list > li {
    margin-right: 0;
    margin-bottom: 3px;
  }
  .nav-list > li:last-child {
    margin-bottom: 0;
  }

  .marathon-header-fixed .top-panel {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .marathon-header-fixed .nav-list > li {
    margin-right: 0;
  }
  .marathon-header-fixed .nav-btn span {
    background-color: #fff;
  }
  .marathon-header-fixed .nav-menu {
    background-color: #00A0E4;
  }

  .header-nav .container {
    position: static;
  }
  .header-nav .header-nav-cover {
    border: none;
    padding: 0;
  }
  .header-nav .header-nav-cover .btn {
    display: none;
  }

  .nav-list > li > a {
    font-size: 18px;
    line-height: 34px;
  }

  .nav-list > li.dropdown ul {
    min-width: auto;
    width: 100% !important;
  }
  .nav-list > li.dropdown ul li a {
    padding: 4px 15px 4px 25px;
    font-size: 14px;
  }

  .s-choose-us {
    clip-path: polygon(100% 0%, 100% 98%, 50% 100%, 0 98%, 0 0, 50% 2%);
  }

  .page-title .container {
    padding: 25px 0;
    min-height: 140px;
  }

  .conference-header-fixed {
    padding: 10px 0;
  }
  .conference-header-fixed .container {
    position: static;
  }
  .conference-header-fixed .nav-btn {
    top: 0;
  }
  .conference-header-fixed .nav-btn span {
    background-color: #fff;
  }
  .conference-header-fixed .nav-menu {
    background-color: #A4927E;
  }
  .conference-header-fixed .nav-list > li {
    margin-right: 0;
  }
  .conference-header-fixed .nav-list > li > a {
    font-size: 16px;
  }

  .dance-header-fixed .nav-menu {
    background-color: #100a19;
  }

  .dance-header-fixed.header-fixed.header-top {
    padding: 15px 0;
  }

  .logo {
    position: relative;
    z-index: 4;
  }

  .dance-header-fixed {
    padding: 14px 0;
  }

  .nav-menu .nav-list {
    transform: translateX(-40px);
    opacity: 0;
  }
  .nav-menu.active .nav-list {
    transition: 0.25s ease-out 0.4s;
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .page-title:after {
    height: 16px;
  }
}
body {
  background: #f0f0f0;
  background: -moz-linear-gradient(top, #f0f0f0 0%, #f0f0f0 85%, #3d3737 85%, #3d3737 100%);
  background: -webkit-linear-gradient(top, #f0f0f0 0%, #f0f0f0 85%, #3d3737 85%, #3d3737 100%);
  background: -o-linear-gradient(top, #f0f0f0 0%, #f0f0f0 85%, #3d3737 85%, #3d3737 100%);
  background: -ms-linear-gradient(top, #f0f0f0 0%, #f0f0f0 85%, #3d3737 85%, #3d3737 100%);
  background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 85%, #3d3737 85%, #3d3737 100%);
}

.no-js body {
  overflow: auto;
  background: #f0f0f0;
}

.js .gr-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(100% - 100px);
  overflow: hidden;
}

.gr-room {
  position: absolute;
  top: 0;
  width: 100%;
  height: 85%;
  text-align: center;
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  perspective: 1200px;
}

.gr-wall-main, .gr-wall-other {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background: #f0f0f0 url(../images/wall.jpg) repeat 0px 0px;
  background-size: contain;
}
@media screen and (min-height: 1250px) {
  .gr-wall-main:before, .gr-wall-main:after, .gr-wall-other:before, .gr-wall-other:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    top: 50px;
    height: 300px;
    background: url(../images/lamp.png) no-repeat;
    background-size: contain;
  }
  .gr-wall-main:before, .gr-wall-other:before {
    left: 20%;
    right: auto;
  }
  .gr-wall-main:after, .gr-wall-other:after {
    left: auto;
    right: 20%;
  }
}

.gr-wall-main {
  left: 0;
}

.gr-floor {
  position: absolute;
  top: 100%;
  left: 0;
  height: 30%;
  width: 100%;
  background: url(../images/floor.jpg) repeat 0px 0px;
}

.gr-gallery figure {
  position: absolute;
  -webkit-transform-style: preserve-3d;
}

.no-js .gr-gallery figure {
  display: inline-block;
  position: relative;
  margin: 20px;
}

.gr-gallery figure div, .gr-gallery figure img {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.gr-gallery .footer {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .gr-gallery .footer {
    bottom: 3px;
  }
}
.gr-gallery .footer a {
  color: #fff;
}
.gr-gallery figcaption {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.gr-gallery figure {
  bottom: 0 !important;
}
.gr-gallery figure div {
  position: relative;
  cursor: pointer;
}
.gr-gallery figure div .door-sign {
  position: absolute;
  left: -150px;
  width: 135px;
  height: 90px;
  top: 200px;
  background: rgba(145, 223, 246, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='65' viewBox='0 0 110 65'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='Artboard-5' fill='%23000000' fill-opacity='0.1' fill-rule='nonzero'%3E%3Cpath d='M6 18h12V6H6v12zM4 4h16v16H4V4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .door-sign {
    width: 100px;
    height: 67px;
  }
}
.gr-gallery figure div .door-sign .sign-logo {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  background: transparent url(../../assets/images/favicon.png) repeat 0px 0px;
  background-size: contain;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .door-sign .sign-logo {
    width: 20px;
    height: 20px;
  }
}
.gr-gallery figure div .door-sign .sign-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
}
.gr-gallery figure div .backDoor {
  background-color: #333;
  position: relative;
  width: 324px;
  height: 620px;
  background: transparent url(../images/door-frame.png) repeat 0px 0px;
  background-size: contain;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .backDoor {
    width: 240px;
    height: 459px;
  }
}
.gr-gallery figure div .room {
  background: #95268F;
  background-size: contain;
  position: absolute;
  bottom: 9px;
  left: 24px;
  width: 274px;
  height: 600px;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .room {
    width: 196px;
    height: 429px;
  }
}
.gr-gallery figure div .room .room-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 274px;
  height: 600px;
  z-index: 6;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .room .room-bg {
    width: 196px;
    height: 429px;
  }
}
.gr-gallery figure div .room .video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .room .video-play-button {
    width: 25px;
    height: 34px;
  }
}
.gr-gallery figure div .room .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00A0E4;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .room .video-play-button:before {
    width: 60px;
    height: 60px;
  }
}
.gr-gallery figure div .room .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00A0E4;
  border-radius: 50%;
  transition: all 200ms;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .room .video-play-button:after {
    width: 60px;
    height: 60px;
  }
}
.gr-gallery figure div .room .video-play-button:hover:after {
  background-color: #007cb1;
}
.gr-gallery figure div .room .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.gr-gallery figure div .room .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 28px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.gr-gallery figure div .room.doorOpen {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.gr-gallery figure div .door {
  background: transparent url(../images/door.jpg) no-repeat 0px 0px;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  left: 25px;
  width: 274px;
  height: 600px;
  z-index: 10;
  transform-origin: left;
  /*Speed of the Door animation*/
  transition: all 0.5s ease-in-out;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .door {
    width: 196px;
    height: 429px;
  }
}
.gr-gallery figure div .door figcaption {
  width: 250px;
  display: block;
  font-size: 12px;
  background: #fff;
  color: #444;
  padding: 5px;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition-delay: 0.25s;
  opacity: 1;
}
@media screen and (max-height: 920px) {
  .gr-gallery figure div .door figcaption {
    margin-top: 50px;
    width: 186px;
    font-size: 10px;
  }
}
.gr-gallery figure div .door figcaption h2 {
  text-align: center;
}
.gr-gallery figure div .door figcaption h2 span {
  display: inline-block;
  margin: 0 2px;
}
.gr-gallery figure div .door figcaption div {
  display: none;
}
.gr-gallery figure div .door.doorOpen {
  /*prespectiv creates the door open effect*/
  transform: perspective(2000px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-105deg);
}
.gr-gallery figure div .door.doorOpen figcaption {
  opacity: 0;
}
.gr-gallery figure img {
  display: block;
  margin: 0 auto;
  border: 20px solid #fff;
}
.gr-gallery nav {
  position: absolute;
  width: 300px;
  height: 38px;
  bottom: 6%;
  left: 50%;
  margin-left: -150px;
  z-index: 0;
  cursor: pointer;
}
.gr-gallery nav span {
  width: 90px;
  height: 100%;
  background: url(../images/steps.png);
  float: left;
  text-indent: -100%;
  overflow: hidden;
  opacity: 0.6;
}
.gr-gallery nav span:hover {
  opacity: 1;
}
.gr-gallery nav span.gr-next {
  background-position: top right;
  float: right;
}

.gr-caption {
  position: absolute;
  width: 400px;
  height: 280px;
  padding: 40px;
  left: 50%;
  margin-left: -200px;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(310px);
  -webkit-transition: -webkit-transform 0.5s ease;
  -moz-transform: translateY(310px);
  -moz-transition: -moz-transform 0.5s ease;
  -o-transform: translateY(310px);
  -o-transition: -o-transform 0.5s ease;
  -ms-transform: translateY(310px);
  -ms-transition: -ms-transform 0.5s ease;
  transform: translateY(310px);
  transition: transform 0.5s ease;
}

.gr-caption-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #999;
  width: 20px;
  height: 20px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  line-height: 16px;
  font-size: 14px;
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.gr-caption-close:hover {
  color: #555;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.6);
}

.gr-caption h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  font-family: "Cutive Mono", cursive;
}
.gr-caption > div {
  overflow: hidden;
  overflow-y: auto;
  max-height: 160px;
}
.gr-caption > div a {
  font-weight: 700;
}
.gr-caption > div a:hover {
  color: #d80066;
}

.featherlight-content .featherlight-close {
  background-color: green;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
}

/*# sourceMappingURL=component.css.map */
