@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

h1{
  text-align: center;
}

.Title{
  font-size: 35px;
  margin-top: -30px;
  position: static;
}

h2{
  text-align: center;
}

h3{
  text-align: center;
  text-decoration: none;
  color: black;
}

.button {
  display: block;
  border-radius: 4px;
  background-color: #9fd7d2;
  border: none;
  color: #262626;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  margin-left: auto;
  margin-right: auto;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.button:hover{
  transition: all .3s ease;
  box-shadow: 5px 5px 5px #000;
  transform: translateY(-5px);
  background:#3e968e;
  color:#fff;
}

.Back .fa{
  background: #9fd7d2;
  color: #262626;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align:center;
  line-height:80px;
  transition: all .3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.Back .fa:hover {
  transition: all .3s ease;
  box-shadow: 5px 5px 5px #000;
  transform: translateY(-5px);
}

.Back .fa.fa-arrow-left:hover{
  background:#3e968e;
  color:#fff;

}

p{
  text-align: center;
  margin-left: 200px;
  margin-right: 200px;
}

.arrow{
  text-align: center;
  font-size: 2rem;
}

iframe{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.video{
    overflow: hidden;
    position: relative;
    width:100%;
}

.video:after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a:link{
  text-decoration:none;
  color: black;
}

a:visited{
  color: black;
}

a:hover{
  color: gray;
  cursor: pointer;
}


body {
  color: #444;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*margin-top: -220px;*/
  margin-top: -220px;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  margin-top: 80px;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__image {
  font-size: 2.7rem;
      /*color: #2196F3;*/
      color: black;
}
.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.slider__txt {
  color: #999;
  margin-bottom: 3rem;
  max-width: 300px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@media only screen and (max-width:800px) {
  /* For tablets: */
  /*.main {
    width: 80%;
    padding: 0;
  }
  .right {
    width: 100%;
  }*/
  p{
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
  }

  h3{
    width:100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

.Title{
  font-size: 25px;
}

}

@media only screen and (max-width:500px) {
  /* For mobile phones: */
  /*.menu, .main, .right {
    width: 100%;
  }*/
  p{
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }


}
