/* ClearFix */

@font-face {
    font-family: 'achieveregular';
    src: url('achieve-webfont.woff2') format('woff2'),
         url('achieve-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.cf:before,
.cf:after {
  content: " ";
  display: table; 
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* Header Styles */

header {
	width: 100%;
	height: 150px;
	position: fixed;
	  top:0%;
	z-index: 2;
}

.brand { 
  width: 200px;
  height: 200px;
  position: absolute;
  margin: 0 auto;
  text-align: left;
}
.brand:before {
  
  background-size: 100% 100%;
  content: "";
	background-image: url('Logo1.png');
  line-height: 205px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width:250px;
  height: 50px;
  margin: 70px 40px auto;
  position: absolute;
  z-index: 99999 !important;
}

.logo{
  animation: 10s linear infinite;
  animation-name: rotate-0;
  animation-delay: 0s;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  
}


svg path{
  positon:absolute;
  fill:none;
  stroke-width:2;
  top: 40px;
  left: 40px;
  mix-blend-mode: multiply;
  transform-origin: 50% 50%;
  transform: rotate(0deg) ;
  animation: 4s linear infinite;
}

.logo svg path:nth-child(1) {
  opacity: 0.9;
  animation-name: rotate-1;
  animation-delay: .3s;
}
.logo svg path:nth-child(2) {
  opacity: 1;
  animation-name: rotate-2;
  animation-delay: .6s;
}
.logo svg path:nth-child(3) {
  opacity: .8;
  animation-name: rotate-3;
  animation-delay: .9s;
}


@keyframes scale-1 {
  0%{
    transform: scale(1);
  }50% {
    transform: scale(.9);
  }100% {
    transform: scale(1);
  } 
}

@keyframes rotate-0 {
  from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} 

@keyframes rotate-1 {
  from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-2 {
  from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes rotate-3 {
  from { transform: rotate(0deg); }
    to { transform: rotate(0deg); }
}

/* Transitions */

.wrap:before{
  content: '';
  display: inline-block;
  height: 100%;
  top:4%;
  margin-right: -0.25em;
  padding-left: 40px;
}
.wrap{
  position:relative;
  color:white;
  font-family:Arial;
  height:100%;
}
.center{
  display:inline-block;
  vertical-align:left;
}
.document-loader{
  display:inline-block;
  min-width:100px;
  min-height:101px;
  position:relative;
  padding:5px;
  border-radius:4px;
  background: #C0C0C0;
  animation:slideInOut 3s ease infinite;
}
.document-loader:before{
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom-left-radius: 2px;
  border-width: 5px;
  border-style: solid;
  border-color: #4c4c4c #4c4c4c rgba(255,255,255,.35) rgba(255,255,255,.35);
  border-bottom-left-radius: 4px;
  border-width: 16px;
}
.document-loader .heading{
  display:block;
  height:8px;
  background:#333;
  width:0px;
  margin-bottom:5px;
  margin-top:5px;
  animation: growHeading 3s linear infinite;
}
.document-loader .heading.short{
  animation: growHeadingShort 3s linear infinite;
}
.document-loader .heading:first-child{
  margin-top:0px;
}
.document-loader .line{
  display:block;
  margin:3px 0 3px 0;
  background:#eee;
  height:4px;
  width:0px;
  animation: growLine 3s linear infinite;
}
.document-loader .line.short{
  margin-bottom:6px;
  animation: growLineShort 3s linear infinite;
}

@keyframes slideInOut{
  0%{
    transform:translateX(-100%);
    opacity:0;
  }
  20%{
    transform:translateX(-5%);
    opacity:1;
  }
  80%{
    transform:translateX(5%);
    opacity:1;
  }
  100%{
    transform:translateX(100%);
    opacity: 0;
  }
}

@keyframes growHeading{
  0%{
    width:0px;
  }
  60%{
    width:0;
  }
  70%{
    width:85px;
  }
  100%{
    width:90px;
  }
}

@keyframes growHeadingShort{
  0%{
    width:0px;
  }
  30%{
    width:0;
  }
  40%{
    width:45px;
  }
  100%{
    width:65px;
  }
}

@keyframes growLine{
  0%{
    width:0px;
  }
  60%{
    width:0px;
  }
  80%{
    width:85px;
  }
  100%{
    width:100px;
  }
}

@keyframes growLineShort{
  0%{
    width:0;
  }
  50%{
    width:0;
  }
  60%{
    width:70px;
  }
  100%{
    width:75px;
  }
}

/* The basic stuff to make it work */
.contenedor {
  width: 100vw;
  height: 100vh;
  background: deeppink;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contenedor form {
  box-sizing: border-box;
  text-align: center;
  padding: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contenedor form input {
  height: 0px;
  margin: 12px 0;
  z-index: 1;
}
.contenedor form input:checked {
  outline: 0;
  border: 0;
}
.contenedor form input:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.81);
  border-radius: 11px;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.contenedor form input:checked:before {
  background-color: white;
}
.contenedor form input:after {
  content: "" attr(titulo) "";
  position: relative;
  left: 30px;
  opacity: 0;
  color: none;
  font-size: 9px;
  display: block;
  min-width: 80px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.contenedor form input:checked:after {
  opacity: 1;
  left: 20px;
}
.contenedor form input:hover:after:not(label) {
  opacity: 1;
}
.contenedor form input:nth-of-type(1):checked ~ .labels label {
  -webkit-transform: translateY(-0%);
          transform: translateY(-0%);
}
.contenedor form input:nth-of-type(2):checked ~ .labels label {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.contenedor form input:nth-of-type(3):checked ~ .labels label {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
.contenedor form input:nth-of-type(4):checked ~ .labels label {
  -webkit-transform: translateY(-300%);
          transform: translateY(-300%);
}
.contenedor form input:nth-of-type(5):checked ~ .labels label {
  -webkit-transform: translateY(-400%);
          transform: translateY(-400%);
}
.contenedor form input:nth-of-type(6):checked ~ .labels label {
  -webkit-transform: translateY(-500%);
          transform: translateY(-500%);
}
.contenedor form input:nth-of-type(7):checked ~ .labels label {
  -webkit-transform: translateY(-600%);
          transform: translateY(-600%);
}
.contenedor form .labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contenedor form .labels label {
  min-width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F6B9C4;
  z-index: 0;
  -webkit-transition: all 0.75s cubic-bezier(0.75, 0.25, 0, 1.05);
  transition: all 0.75s cubic-bezier(0.75, 0.25, 0, 1.05);
}
.contenedor form .labels label:nth-child(odd) {
  background-color: #F5004F;
  color: white !important;
}

/* Fancy style */
body {
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  font-weight: 100;
  color: white;
}

.content {
  width: 100%;
  box-sizing: border-box;
  padding: 0 110px;
}
.content .block {
  width: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 42px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content .block span, .content .block span i {
  margin: 0 12px;
}
.content .block span i {
  margin-bottom: 22px;
}
.content .block span i:before {
  font-size: 30px;
}

.Slide:nth-child(even) .content .block {
  color: #FFFFFF;
}

.icon {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#Slide5 .content .block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#Slide5 .content .block i {
  margin: 0 12px;
  vertical-align: middle;
}

strong {
  font-weight: 400;
}

h1 {
  z-index:5;
  position: relative;
  top: 65%;
}

p.h1 {
	position: relative;
    top: 63%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}

h2 {
  z-index:5;
  position: relative;
  top: 70%;
  font-size: 2em;
  margin.67em 0;
}

p.h2 {
	position: relative;
    top: 71%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}

h3 {
  z-index:5;
  position: relative;
  top: 65%;
  font-size: 2em;
  margin.67em 0;
}

p.h3 {
	position: relative;
    top: 71%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}


h4 {
  z-index:5;
  position: relative;
  top: 65%;
  font-size: 2em;
  margin.67em 0;
}

p.h4 {
	position: relative;
    top: 71%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}


h5 {
  z-index:10;
  position: absolute;
  top: 20%;
  font-size: 2em;
  margin.67em 0;
}

p.h5 {
	position: relative;
    top: 71%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}

h6 {
  z-index:10;
  position: absolute;
  top: 11%;
  font-size: 2em;
  margin.67em 0;
}

p.h6 {
	position: absolute;
    top: 16%;
	margin: 0;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
}


ol {
  text-align: left;
  list-style-type: decimal;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
a:hover {
  color: rebeccapurple;
}

.credit {
	position: absolute;
	bottom: 24px;
	right: 24px;
	margin: 0;
	z-index: 1;
	font-size: 0.9em;
}

.google-map {
     padding-bottom: 50%;
     position: relative;
}

.google-map iframe {
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     position: absolute;
}