/* -------- MIXINS -------- */
/* ------------------------ */
.g-overlay {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0e0a0a99;
  opacity: 1;
  -webkit-transition: top 0s 0s, opacity 0.5s 0.1s;
  -moz-transition: top 0s 0s, opacity 0.5s 0.1s;
  transition: top 0s 0s, opacity 0.5s 0.1s;
}
.g-overlay.g-hide {
  -webkit-transition: opacity 0.5s 0s, top 0s 0.5s;
  -moz-transition: opacity 0.5s 0s, top 0s 0.5s;
  transition: opacity 0.5s 0s, top 0s 0.5s;
  top: 100%;
  opacity: 0;
}

.g-modal-wrapper {
  z-index: 10000;
  position: fixed;
  left:18%;
  bottom:0%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width:40%;
  background-color: #0009;
  font-family: "Europa", sans-serif;
  opacity: 1;
  text-align: center;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 0px;
}
.g-modal-wrapper.g-hide {
  left: -50%;
}

.g-headline {
	color: #4c6ef5;
	font: 600 36px/100% 'Raleway', sans-serif;
	padding-top: 20px;
	letter-spacing: 3px;
}
.para_p
{
    color: #fff;
    font-size: 19px;
	margin-top: inherit;
	line-height: 25px;
	font-family:'Raleway', sans-serif;
	letter-spacing: 1px;
}

.g-close-button {
  position: absolute;
  float: right;
  right: 10px;
  top: -3px;
  color:  #ff4f81;
  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: #fff;
}

.g-text-wrapper {
  color: #d2703c;
  margin: 20px 60px 50px 60px;
}

.g-message {
  font: 400 18px/140% "Europa", sans-serif;
  margin: 20px 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: #000;
}
input.subscribe.triggered {
  color: #0083ca;
}
input.subscribe:focus {
  color: #FFF;
  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: #000;
}
.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;
  padding: 10px 12px 0px 12px;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  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%);
  border: 1px solid #fff;
}
.g-peek.g-hide {
  left: -110%;
}
.g-peek:hover {
  background-color: #fff;
  color: #fe8f01;
  border: 1px solid #e9a820;
}

.text, .text a, .icons a {
  color: #0083ca;
}

.text a:hover, .icons a:hover {
  color: #fff;
}

.g-text-wrapper a
{
	display: inline-block;
	padding: 8px 25px ;
	background-color:#ff4f81;
	color: #000000 ;
	text-transform: lowercase;
	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: 5px;
	font-size: 20px;
}
.g-text-wrapper a:hover
{
	color: #fff;
}
.logo_sub h1
{
margin-top: 2em;	
}
.logo_sub img
{
	margin-top: 2em;
}
