* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 10px browser default */
}

body {
  color: #444444;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.625;
}

a {
  color: #0072B8;
  text-decoration: none;
}
a:hover, a:visited, a:focus {
  color: #072336;
}
/*
input {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 16px;
  padding: 1.6rem;
  color: #c0c0c0;
  width: 100%;
  clear: both;
  margin: 0 0 10px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input:focus, input:active {
  color: black;
  border: 2px solid #0072B8;
}

input[type="submit"] {
  background-color: #072336;
  border: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
input[type="submit"]:hover {
  background-color: black;
}*/

.subscribe {
  position: fixed;
  right: 0;
  top: 60px;
  padding: 0px 20px 20px 30px;
  color: white;
  text-transform: uppercase;
  width: 320px;
  text-align: center;
  -moz-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
  z-index: 4;
    background-color: #fff;
    border: 2px solid #ffffff;
    box-shadow: -3px 5px 20px -3px #8e8e8e;
    border-radius: 20px;
}
.subscribe h2 {
  font-size: 26px;
  font-weight: 500;
  padding: 20px 0 0;
  margin: 0;
  cursor: pointer;
  color: #333333;
}
.subscribe p {
  margin: 0 0 10px;
  padding: 0;
  color: #333333;
  text-transform: capitalize;
}
.subscribe span {
  position: absolute;
  display: block;
  cursor: pointer;
  background: #072336;
  top: -8px;
  left: -8px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  font-size: 14px;
  font-family: Verdana;
  line-height: 25px;
  z-index: 5;
  opacity: 1;
  -moz-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  transition: ease-in-out 1s;
}
.subscribe.closed {
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); /*123*/
  right: -245px !important;
}
.subscribe.closed span {
  opacity: 0;
}
@media (max-width: 600px) {
  .subscribe {
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    -moz-transition: bottom 1s ease-in-out;
    -o-transition: bottom 1s ease-in-out;
    -webkit-transition: bottom 1s ease-in-out;
    transition: bottom 1s ease-in-out;
  }
  .subscribe h2 {
    padding-top: 10px;
  }
  .subscribe span {
    left: 10px;
    top: 10px;
  }
  .subscribe.closed {
    bottom: -190px !important; /*123*/
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}