/**
 * Mixins
 */
/**
 * Variables
 */
/**
 * Animations
 */
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 3000;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 3000;
  }
}
/**
 * Base
 */
*,
*:after,
*:before {
  box-sizing: border-box;
}

html { 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background: pink;
  
}

body {
  font-family: "Helvetica Neue","Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
   background: pink;
  background: radial-gradient(ellipse at center, #ffdae0 0%, pink 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/**
 * Gallery
 */
.gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 93%;
  
  opacity: 1;
  -webkit-transition: 1s opacity cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: 1s opacity cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: pink;
  background: radial-gradient(ellipse at center, #ffdae0 0%, pink 100%);
}
.gallery.fadeOut {
  opacity: 0;
}

.gallery__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/**
 * Poster
 */
.poster {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: inline-block;
  vertical-align: middle;
}
.poster:before, .poster:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 8px;
  width: 50%;
  top: 70%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.poster:after {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  right: 8px;
  left: auto;
}

.poster__content {
  position: relative;
  width: 500px;
  height: 700px;
  overflow: hidden;
  padding: 0 1em;
Background-image: url('digitalexhibition.jpg');
   background-size: cover;
background-color: pink;
  color: black;
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.2);
z-index: 2;
}

.poster__header {
  width: 75%;
  float: left;
  margin-top: 40%;
  overflow: hidden;
z-index: 1;
}

.poster__header-title {
  margin-bottom: .3em;
  font-size: 30px;
z-index: 1;
}

.poster__header-subtitle {
  width: 35%;
  float: left;
  font-size: 14px;
  line-height: 1;
z-index: 1;
}

.poster__header-meta {
  position: relative;
  top: 0.2em;
  width: 65%;
  float: right;
  font-size: 6px;
  line-height: 1.5;
  font-weight: bold;
}
.poster__header-meta li:last-child {
  margin-top: 4px;
}

.poster__body {
  position: relative;
  top: 8px;
  width: 25%;
  float: right;
  margin-top: 40%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.poster__body li:nth-child(3n) {
  margin-top: 4px;
}

.poster__footer {
  position: absolute;
  top: 45%;
  right: auto;
  bottom: auto;
  left: 73.5%;
  font-size: 3px;
}

.poster__rules {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.poster__rules div {
  position: absolute;
}

.smil .poster__rules div rect {
  stroke-dasharray: 1000;
  -webkit-animation: dash 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite alternate;
          animation: dash 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite alternate;
}

.r-1 {
  top: -50%;
  left: 27.5%;
  z-index: 2;
}

.r-2 {
  bottom: -22%;
  left: 27.5%;
  z-index: 2;
}

.r-3 {
  top: -22.5%;
  left: -32%;
  z-index: 2;
}

.r-4 {
  bottom: -46%;
  left: -32%;
  z-index: 3;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
	position: fixed;
	right: 0;
	bottom: 80px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
z-index: 998;

}

.social-panel-container.visible {
	transform: translateX(-10px);
z-index: 998;
}

.social-panel {	
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
	border: 5px solid #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Muli';
	position: relative;
	height:150px;	
	width: 400px;
	max-width: calc(100% - 10px);
z-index: 998;
}

.social-panel button.close-btn {
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
z-index: 998;
}

.social-panel button.close-btn:focus {
	outline: none;
z-index: 998;
}

.social-panel p {
	background-color: pink;
	border-radius: 0 0 10px 10px;
	color: pink;
	font-size: 20px;
	line-height: 20px;
	padding: 2px 17px 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 200px;
z-index: 998;
}

.social-panel p i {
	margin: 5px;
z-index: 998;
}

.social-panel p a {
	color: black;
  font-size: 30px;
	text-decoration: none;
z-index: 998;
}

.social-panel h4 {
	margin: 5px 0;
	color: black;	
	font-family: 'Muli';	
	font-size: 20px;	
	line-height: 20px;
	text-transform: uppercase;
z-index: 998;
}

.social-panel ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
z-index: 998;
}

.social-panel ul li {
	margin: 0;
z-index: 998;
}

.social-panel ul li a {
	border: 1px solid #fff;
	border-radius: 50%;
	color: white;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;
z-index: 998;

}

.social-panel ul li a:hover {
	border-color: white;
	box-shadow: 0 9px 12px -9px white;
z-index: 998;
}

.floating-btn {
	border-radius: 40px;
	background-color: pink;
	border: 1px solid black;
	box-shadow: 0 16px 22px -17px #03153B;
	color: black;
	cursor: pointer;
	font-size: 20px;
	line-height: 25px;
	padding: 5px 5px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.floating-btn:hover {
	background-color: black;
	color: white;
z-index: 998;
}

.floating-btn:focus {
	outline: none;
z-index: 998;
}

.floating-text {
	background-color: pink;
	border-radius: 10px 10px 0 0;
	color: black;
	font-family: 'Muli';
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #fff;
	text-decoration: none;
z-index: 998;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
z-index: 998;
	}
	
	.floating-btn {
		right: 10px;
z-index: 998;
	}
}