@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700&subset=latin,latin-ext);
/* ------ BODY */
* { padding: 0; margin: 0;}
body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  overflow-x: hidden;
}
main h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.7em;
  text-transform: uppercase;
  color: #fff;
  max-width: 1200px;
  background: #c92123;
  text-align: center;
  letter-spacing: 1px;
  margin: 0px auto 25px;
  padding: 0.6em 0em;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.kontakt {
  width: 100%;
  text-align: center;
  color: #fff;
  background: rgb(26,23,27);
}
.kontakt span {
  font-size: 1em;
  display: inline-block;
  color: #ff4e51;
  padding: 0px 8px 0px;
}
.kontakt p {
  font-size: 1em;
  display: inline-block;
}
.kontakt a {
  color: #fff;
  text-decoration: none;
}
.kontakt a:hover {
  text-decoration: underline;
  color: #CE0F0F;
  transition: .2s;
}
.wrap-menu {
  float: right;
  margin-right: 40px;
  margin-top: 24px;  
}
.head {
 padding: 1em 0em;
}
.logo-center {
 max-width: 320px;
 margin-left: 40px;
}
.wrap-menu-line {
 margin: 0 auto;
 padding-top: 0.3em;
 max-width: 1680px;
}
.menu-line {
    padding: 1em 0em; 
    border: 0; 
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    box-shadow: 0 10px 6px -6px #777;
    margin-bottom: 90px;
}
.menu-line-head {
    margin: 0 auto;
    max-width: 1680px;
    padding: 1.3em 0em 1em; 
    border: 0; 
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(215,215,215,0.75), rgba(0,0,0,0)); 
    box-shadow: 0 10px 6px -6px #777;
}
.wrap-slider {
 max-width: 900px;
 position: relative;
 margin: 0px auto;
 padding: 1.5em 0em;
 z-index: 900;
}
.bg-slide {
 background: url(img/bg-slide.jpg);
 background-size: cover;
 height: 450px; 
}
.bg-content {
  background-color: #ebebeb;
}
.content {
  max-width: 1200px;
  margin: 0px auto;
  padding: 70px 0px 70px;
  text-align: center;
}
.content h1 {
  font-size: 2.8em;
  text-align: center;
  font-weight: 300;
}
.content h2 {  
  font-size: 1.4em;
  text-align: center;
  font-weight: 700;
}
.content h3 {
 text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
  font-size: 2.6em;
  text-align: center;
  font-weight: 300;
  margin-bottom: 12px;
}
.content p {
  font-size: 1.1em;
  text-align: center;
  margin-top: 10px;
}
.content span {
  font-size: .7em;
  display: block;
  letter-spacing: 2px;
}
.content ul {
  list-style: square;
}
.content li {
  text-align: left;
}
.item-content {
 width: 210px;
 height: 210px;
 margin: 20px;
 padding-bottom: 30px;
 border-radius: 50%;
 display: inline-block;
}
.item-content img:hover {
  transition: .3s;
  opacity: 0.7;
}
.item-content:hover{
  transition: .2s;
  color: #99160E;
}
.carousel-logo {
  max-width: 900px;
  margin: 20px auto 0px;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
}
.carousel-logo img {
  padding: 0px 8px;
}
.rotate-arena {
  font-size: 1.5em;
}

.holder {
  -webkit-animation: carousel 35s linear infinite;
  animation: carousel 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.holder:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes carousel {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes carousel {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.wrap-new {
  max-width: 300px;
  height: 360px;
	background: #F3F3F3;
	margin: 20px auto;
  padding: 1em;
  border-top: 12px solid #c0c0c0;
  border-bottom: 12px solid #c0c0c0;
  -webkit-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  border-radius: 8px;    
}
.wrap-new p {
  text-align: center;
  color: #2f2f2f;
  margin-top: 10px;    
}
.wrap-new h2 {
  color: #0f0f0f;
  font-weight: 400;    
}
.wrap-new a {
  color: #0f0f0f;    
}
.wrap-new img {
  padding-top: 10px;
}
.wrap-new a {
  text-decoration: none;
}
.wrap-nas {
  max-width: 300px;
  height: 330px;
  background: #f8f8f8;
  margin: 20px auto 20px;
  padding: 1em;
  border-top: 12px solid #99160E;
  border-bottom: 12px solid #99160E;
  -webkit-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  border-radius: 8px;  
}
.wrap-nas i {
  padding: .2em 0em;
  color: #99160E;
}
.wrap-nas p {
  text-align: left;
  padding: 0em .5em;  
}
.wrap-nas h2 {
  color: #0f0f0f;
  font-weight: 400;    
}
.wrap-reference {
  max-width: 1200px;
  margin: 40px auto;
}
.reference {
  max-width: 400px;
  margin: 20px auto 20px;
  padding: 1em;
  border: 1px solid #cfcfcf; 
}
.reference img {
  border-radius: 14px;
}
.reference a {
  margin-top: 5px;
  float:right;
}
.reference p {
  margin-top: 8px;
  text-align: left;
  font-weight: 100;
}
.ref-box {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  overflow: hidden;
}
.reference:hover {
  -webkit-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  transition: 0.2s ease;
}
.wrap-reference h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.7em;
  color: #fff;
  background-color: rgb(165,44,36);
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 25px;
  padding: .2em 0em;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.wrap-reference h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.6em;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #252525;
  text-align: left;
  border-bottom: 1px solid #252525;
}
.reference span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.3em;
  display: block;
  margin-bottom: 10px;
  color: #003333;
  text-align: left;
  border-bottom: 1px solid #000;
  margin-top: 10px;
}
.wrap-back {
 width: 100%;
 margin: 10px auto 20px;
 text-align: center;
 display: inline-block;
}
.btn-back {
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  display: inline-block;
  background: none;
  -webkit-border-radius: 26;
  -moz-border-radius: 26;
  border-radius: 26px;
  color: #252525;
  font-size: 1.1em;
  padding: 10px 30px;
  margin: 10px 20px;
  text-decoration: none;
  border: 1px solid #252525;
}
.btn-back span {
  display: inline;
}
.btn-back:hover {
  background: rgb(172,15,15);
  border: 1px solid rgb(172,15,15);
  text-decoration: none;
  color: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  transition: .4s;
}
.service {
  width: 100%;
  text-align: left;
  margin: 10px auto 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.service h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  color: #e01000;
  margin-top: 25px;
  padding-left: 0.8em;
  text-align: left; 
}
.service p {
  text-align: left; 
}
.service span {
  margin: 50px 0px 10px;
  border-bottom: 1px solid #000;
  display: block;
  font-size: 1.6em;
  text-align: left; 
}
.service ul {
  list-style-type: square;
  list-style-position: outside;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  padding: 0.2em 0.8em 0.8em;
  margin-left: 0.8em;
}
.service li {
  padding: 0.1em 0em; 
}
.service p {
 padding-left: 0.8em;
 margin: 0.2em 0em 0.8em;
}
strong {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 25px;
  padding-left: 0.8em;
  text-align: left; 
}
.btn-service {
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  display: inline-block;
  background: rgb(172,15,15);
  -webkit-border-radius: 26;
  -moz-border-radius: 26;
  border-radius: 26px;
  color: rgb(246,246,246);
  font-size: 1.1em;
  padding: 6px 30px;
  margin: 10px auto 20px;
  text-decoration: none;
  border: 4px solid rgb(172,15,15);
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.btn-service:hover {
  background: rgb(246,246,246);
  border: 4px solid rgb(172,15,15);
  text-decoration: none;
  color: rgb(172,15,15);
  transition: .4s;
}
.separator-60 {
  margin-bottom: 60px;
}
.separator-80 {
  margin-bottom: 80px;
}
.center {
 width: 100%;
 margin-top: 20px;
 text-align: center;
}
.center-btn {
 width: 80%;
 margin-top: 20px;
 text-align: center;
}
.head-pic img {
 display: block;
 margin: 0px auto;
}
.kontakt-line {
 padding: 1.2em 0.6em;
 margin: 0px auto;
}
.line-kontakt {
 max-width: 800px;
 margin: 0px auto;
 border-bottom: 1px solid #c3bbbb;
}
footer {
  width: 100%;
  margin: 0px auto;
  background: url(img/footer.png);
  background-size: cover;  
  padding-top: 20px;
  -webkit-box-shadow: 0px -1px 20px -5px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px -1px 20px -5px rgba(0,0,0,0.57);
  box-shadow: 0px -1px 20px -5px rgba(0,0,0,0.57);
}
.wrap-footer {
  max-width: 300px;
  margin: 0px auto;
}
footer ul {
  font-size: .9em;
  list-style: none;
  padding: 10px;
  margin: 0px;
}
footer li {
  color: #dfdfdf;
  letter-spacing: 1px;
  margin: 6px 0px;
}
footer img {
  padding: 0em .6em .5em;
}
footer img:hover {
  opacity: .7;
}
footer h3 {
 font-size: 1.4em;
 color: #bd4e47; 
 text-align: left;
 padding-left: 30px;
 font-weight: 100;
}
footer h4 {
 text-transform: uppercase;
 text-align: center;
 font-weight: 500;
 color: #7f7f7f;
 padding-top: 10px;
 padding-bottom: 15px;
 letter-spacing: 1px;
}
footer p { 
 font-size: .9em;
 font-weight: 100;
}
footer a {
 color: #efefef;
 text-decoration: none;
}
.copy a {
 text-transform: uppercase;
 text-align: center;
 font-weight: 500;
 color: #7f7f7f;
 padding-top: 8px;
 padding-bottom: 15px;
 letter-spacing: 1px;
}
footer a:hover {
  color: #99160E;
  transition:  .1s;
  text-decoration: none;
}
footer span {
  font-size: 1.3em;
  font-weight: 400; 
}
.hyper-red {
  color: #b54133; 
}
.hyper-red:hover {
  text-decoration: underline;
}
.red {
  letter-spacing: 2px;
  color: #b54133; 
}
img {
 max-width:100%;
 height:auto;
 width:auto;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}
.imgcenter {
 display: block;
 margin: 0px auto;
}
.fix {
 clear: both;
}
.center {
 text-align: center;
}
#googleMap {
  width: 100%;
  height: 460px;
  margin: 5px auto 0px;
}
.map {
 width: 100%;
 height: 460px;
 margin: 20px auto 0px;
}
.frame-map {
  width: 100%;
  height: 460px;
  border: none;
  -webkit-filter: grayscale(0.9);
  filter: grayscale(0.9);
}
.wrap-video {
  max-width: 560px;
  margin: 30px 15px 15px 15px;
}
.wrap-video iframe {
  border: none;
  width: 100%;
  height: 315px;
}
.grid {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0px;
}
.grid:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.grid .f-right{float: right!important;}
.grid .f-left{float: left!important;}

.grid .row{}
.grid .row:before,.row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.grid .row:after{clear: both; }
/* .zerogrid .row {zoom: 1;} */

.grid .wrap-col {margin:10px;}

.grid .col-1-2, .grid .col-1-3, .grid .col-2-3, .grid .col-1-4, .grid .col-2-4, .grid .col-3-4, .grid .col-1-5, .grid .col-2-5,
.grid .col-3-5, .grid .col-4-5, .grid .col-1-6, .grid .col-2-6, .grid .col-3-6, .grid .col-4-6, .grid .col-5-6 {
  float:left; display: inline-block;}

.grid .col-full{width:100%;}
.grid .col-1-2 {width:50%;}
.grid .col-1-3 {width:33.33%;}
.grid .col-1-4 {width:25%;}
.grid .col-1-5 {width:20%;}
.grid .col-1-6 {width:16.66%;}
.grid .col-2-3 {width:66.66%;}
.grid .col-2-4 {width:50%;}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
	.grid {width: 100%;}
.logo-center {
    margin-left: 0px;
  }
.menu-line-head {
 text-align: center;
}
.menu-line {
 text-align: center;
}  
.wrap-menu {
  float: none;
  margin-right: 0;
  display: inline-block;
}

}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.grid {width: 100%;}

.logo-center {
    margin-left: 0px;
  }
.menu-line-head {
 text-align: center;
}
.menu-line {
 text-align: center;
}  
.wrap-menu {
  float: none;
  margin-right: 0;
  display: inline-block;
}
.kontakt p {
  display: block;
}
.kontakt span {
  display: block;
}
.kontakt {
  display: block;
}
.wrap-menu {
  float: none;
  margin-right: 0;  
}
}

@media only screen and (max-width: 767px) {
 .grid, .grid .col-1-2, .grid .col-1-3, .grid .col-2-3, .grid .col-1-4, .grid .col-2-4, .grid .col-3-4,.grid .col-1-5, .grid .col-2-5,
 .grid .col-3-5, .grid .col-4-5, .grid .col-1-6, .grid .col-2-6, .grid .col-3-6, .grid .col-4-6, .grid .col-5-6 
 {width:100%;}
.wrap-menu {
  float: none;
  margin-right: 0px;
  margin-top: 5px;
  }
.menu-line {
  text-align: center; 
  margin-bottom: 30px;
}
.logo-center {
    margin-left: 0px;
  }
.menu-line-head {
 text-align: center;
}
.kontakt {
  display: none;
}
.kontakt-line {
  border-right: none;
}
.content span {
  font-size: .6em;
}
.content h1 {
  font-size: 1.8em;
}
.content {
  padding: 30px 0px;
}
main h1 {
  border-radius: 12px;
  padding: .6em 0em;
}
	
 .grid .offset-1-2, .grid .offset-1-3, .grid .offset-2-3, .grid .offset-1-4, .grid .offset-2-4, .grid .offset-3-4, .grid .offset-1-5,.grid .offset-2-5,
 .grid .offset-3-5, .grid .offset-4-5, .grid .offset-1-6, .grid .offset-2-6, .grid .offset-3-6, .grid .offset-4-6, .grid .offset-5-6
 {margin-left: 0;}

}

@media only screen and (max-width: 480px) {
 .grid, .grid .col-1-2, .grid .col-1-3, .grid .col-2-3, .grid .col-1-4, .grid .col-2-4, .grid .col-3-4,.grid .col-1-5, .grid .col-2-5,
 .grid .col-3-5, .grid .col-4-5, .grid .col-1-6, .grid .col-2-6, .grid .col-3-6, .grid .col-4-6, .grid .col-5-6 
 {width:100%;}
 .kontakt-line {
  border-right: none;
}
	
 .grid .offset-1-2, .grid .offset-1-3, .grid .offset-2-3, .grid .offset-1-4, .grid .offset-2-4, .grid .offset-3-4, .grid .offset-1-5,.grid .offset-2-5,
 .grid .offset-3-5, .grid .offset-4-5, .grid .offset-1-6, .grid .offset-2-6, .grid .offset-3-6, .grid .offset-4-6, .grid .offset-5-6
 {margin-left: 0;}

}

@media only screen and (max-width: 320px) {
 .grid, .grid .col-1-2, .grid .col-1-3, .grid .col-2-3, .grid .col-1-4, .grid .col-2-4, .grid .col-3-4,.grid .col-1-5, .grid .col-2-5,
 .grid .col-3-5, .grid .col-4-5, .grid .col-1-6, .grid .col-2-6, .grid .col-3-6, .grid .col-4-6, .grid .col-5-6 
 {width:100%;}
 .wrap-menu {
  float: none;
  margin-right: 0px;
  margin-top: 5px;
  }
	
 .grid .offset-1-2, .grid .offset-1-3, .grid .offset-2-3, .grid .offset-1-4, .grid .offset-2-4, .grid .offset-3-4, .grid .offset-1-5,.grid .offset-2-5,
 .grid .offset-3-5, .grid .offset-4-5, .grid .offset-1-6, .grid .offset-2-6, .grid .offset-3-6, .grid .offset-4-6, .grid .offset-5-6
 {margin-left: 0;} 

}

.wrap-formular {
  max-width: 960px;
  padding: 2em 0em;
  margin: 0.4em auto 0em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bg-form {
  background-color: #F4F6F8;
}
.content-kontakt {
  max-width: 1000px;
  margin: 0px auto;
  text-align: center;
}
.content-kontakt h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.7em;
  color: #fff;
  max-width: 1200px;
  background: #c92123;
  text-align: center;
  letter-spacing: 1px;
  margin: 0px auto 25px;
  padding: 0.6em 0em;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.wrap-content h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  font-size: 1.8em;
  color: #003333;
  text-align: center;
}
/* TABLE */
table {
 width: 280px;
 border-collapse: collapse;
 border-top: 1px solid #ddd;
 border-left: 1px solid #ddd;
 border-right: 1px solid #ddd;
 margin: 10px 25px;
}
td {
 padding: 0.2em .8em;
 border-bottom: 1px solid #ddd;
}
td:first-child { background-color: #f2f2f2; }
.font-table{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: rgb(47,47,47);
  text-align: left;
  letter-spacing: 1px; 
}
.field {
  margin: 1em .5em;  
}
.flag h2 {
 text-align: center;
 margin-bottom: 15px;
 font-size: 1.2em;
 color: #2f2f2f; 
}

label {
  font-family: 'Roboto Condensed', sans-serif;
  display: block;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #606060;
  text-align: left;
  letter-spacing: 1px;
}
input {
  width: 100%;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 3px;
  border: 1px solid #5f5f5f;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
textarea {
  width: 100%;
  height: 200px;
  font-family: 'Roboto Condensed', sans-serif;
  resize: none;
  padding: 0.5em 0.5em;
  font-size: 1.2em;
  border-radius: 4px;
  border: 1px solid #5f5f5f;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tlac {
  font-family: 'Roboto Condensed', sans-serif;
  display: inline-block;
  border-radius: 4px;
  border: none;
  font-size: 1.1em;
  padding: 0.8em 0.4em;
  background-color: rgb(172,15,15);
  color: white;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 5px auto;
  width: 100%;
  text-align: center;
}
.tlac:hover, .tlac:focus {
 transition: 0.2s ease;
 -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.7);
 -moz-box-shadow:    0px 3px 8px rgba(0, 0, 0, 0.7);
 box-shadow:         0px 3px 8px rgba(0, 0, 0, 0.7);
 cursor: pointer;
 letter-spacing: 3px;
}
textarea:hover {
  transition: 0.2s ease;
 -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.7);
 -moz-box-shadow:    0px 3px 8px rgba(0, 0, 0, 0.7);
 box-shadow:         0px 3px 8px rgba(0, 0, 0, 0.7);
 opacity: 0.9; 
}
 input:hover {
  transition: 0.2s ease;
 -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.7);
 -moz-box-shadow:    0px 3px 8px rgba(0, 0, 0, 0.7);
 box-shadow:         0px 3px 8px rgba(0, 0, 0, 0.7);
 opacity: 0.9; 
}
.success {
  font-family: 'Roboto Condensed', sans-serif;
  padding: .5em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}
.error {
  font-family: 'Roboto Condensed', sans-serif;
  padding: .5em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
}
.bg-social {
  background-color: #F4F6F8;
}
.socialicons {
  width: 100%;
  margin: 0em auto;
  padding: 2em 0em; 
}
.socialicons h2 {
 text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
  font-size: 2.4em;
  text-align: center;
  font-weight: 300;
  margin-bottom: 8px;
}
.socialicons span {
  font-size: 1.6em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
}
.socialicons p {
 font-size: 1.2em; 
 line-height: 1.6;
}  
.socialicons img { 
 margin: 10px 10px 3px;
-moz-transition: all 0.7s ease-in-out;
-webkit-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.socialicons img:hover{
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.socialicons a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #CE0F0F;
}
.socialicons a:hover {
  text-decoration: underline;
  transition: .2s;
}
.scrollup {
 width: 50px;
 height: 50px;			
 text-indent:-9999px;
 opacity: 0.8;
 position: fixed;
 bottom: 30px;
 right: .7em;
 display: none;			
 background: url('scroll/icontop.png') no-repeat;
 cursor: pointer;
}