/* -------- MIXINS -------- */
/* ------------------------ */
.g-overlay {
z-index: 9999;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #06074e99;
opacity: 1;
transition: top 0s 0s, opacity 0.8s 0.1s;
}


.g-modal-wrapper {
	z-index: 10000;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	background-color: #000;
	font-family: "Europa", sans-serif;
	opacity: 1;
	text-align: center;
	border-radius: 25px;
}
.g-modal-wrapper.g-hide {
  left: -50%;
}

.g-headline {
  color: #fff;
  font: 600 43px/100% "Europa", sans-serif;
}

.g-close-button {
  position: absolute;
  float: right;
  right: 10px;
  top: -3px;
  color: #fee;
  font-size: 40px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.g-close-button:hover {
  color: #f00;
}

.g-text-wrapper {
  color: #d2703c;
  margin: 50px 60px;
}

.g-message {
  font: 400 18px/140% "Europa", sans-serif;
  margin: 25px 0;
  color: #fff;
}

input.subscribe {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  height: 40px;
  border: 1px solid #b3daef;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0 20px;
  font-size: 14px;
  margin-bottom: 25px;
  color: #cce6f4;
}
input.subscribe.triggered {
  color: #0083ca;
}
input.subscribe:focus {
  color: #0083ca;
  outline: 2px solid #0083ca;
}

.g-button {
  display: inline-block;
  padding: 5px 30px;
  border: 1px solid #0083ca;
  background-color: #fff;
  color: #0083ca;
  font: 15px/38px "Europa", sans-serif;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  outline: 0;
}
.g-button:hover, .g-button.triggered {
  background-color: #0083ca;
  color: #fff;
}
.g-button.triggered:hover {
  background-color: #0069a2;
}
.g-button.submitted {
  -webkit-transition: padding 0.25s ease, -webkit-transform 0.25s ease 0.25s;
  -moz-transition: padding 0.25s ease, -moz-transform 0.25s ease 0.25s;
  transition: padding 0.25s ease, transform 0.25s ease 0.25s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
.g-button.submitted i {
  color: #fff;
}

svg {
  position: absolute;
  width: 60px;
  height: 60px;
  -webkit-transform: translate(-56px, -5px);
  -moz-transform: translate(-56px, -5px);
  -ms-transform: translate(-56px, -5px);
  -o-transform: translate(-56px, -5px);
  transform: translate(-56px, -5px);
}

.st0 {
  opacity: 0;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 20, 62;
  stroke-dashoffset: -15;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.st0.animate {
  -webkit-animation: loop 1s ease infinite;
  -moz-animation: loop 1s ease infinite;
  animation: loop 1s ease infinite;
}

@-webkit-keyframes loop {
  0% {
    stroke-dashoffset: -1;
    stroke: white;
  }
  40% {
    stroke: rgba(255, 255, 255, 0.5);
  }
  80%, 100% {
    stroke: white;
    stroke-dashoffset: -62;
  }
}
@-moz-keyframes loop {
  0% {
    stroke-dashoffset: -1;
    stroke: white;
  }
  40% {
    stroke: rgba(255, 255, 255, 0.5);
  }
  80%, 100% {
    stroke: white;
    stroke-dashoffset: -62;
  }
}
@keyframes loop {
  0% {
    stroke-dashoffset: -1;
    stroke: white;
  }
  40% {
    stroke: rgba(255, 255, 255, 0.5);
  }
  80%, 100% {
    stroke: white;
    stroke-dashoffset: -62;
  }
}
.g-peek {
z-index: 10001;
position: fixed;
bottom: 50%;
left: 0;
color: #fff;
cursor: pointer;
-webkit-user-select: none;
-webkit-transition: left 1s, background-color 0.5s ease;
-moz-transition: left 1s, background-color 0.5s ease;
transition: left 1s, background-color 0.5s ease;
-webkit-transform: translateY(50%);
-moz-transform: translateY(50%);
-ms-transform: translateY(50%);
-o-transform: translateY(50%);
transform: translateY(50%);
}
.g-peek.g-hide {
  left: -110%;
}
.g-hide
{
	opacity: 0;
	z-index: -9;
}

.text, .text a, .icons a {
  color: #0083ca;
}

.text a:hover, .icons a:hover {
  color: #fff;
}

.g-text-wrapper p
{
	display: inline-block;
	padding: 10px 38px;
	background-color: #01abe9;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: 0.9em;
	line-height: 1.8em;
	border-radius: 0;
	transition: all 0.5s;
	opacity: 1;
	-webkit-transition: .5s all;
	-moz-transition: .5s all;
	-o-transition: .5s all;
	-ms-transition: .5s all;
	transition: .5s all;
	margin-top: 3em;
	border: 1px solid #fff;
}
.g-text-wrapper p:hover
{
	background: #000;
    border: 1px solid #01abe9;
}
.logo_sub
{
	
}
.logo_sub img
{
	margin-top: 2em;
}