* {
    -moz-box-sizing: border-box;
}
body {
    font-family: 'Rosario', sans-serif;
   /* background: #; */
    font-weight: 900;
    font-size: 15px;
    color: #;
}

.container h1, h2, h3, h4, span,  {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
}

.rw-sentence>.rw-words.rw-words-1>span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
}

[role="main"] {
    width: 960px;
  margin: 0 auto;
}
h1, h2 {
  font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
}
h1 {
  font-family: 'Roboto Condensed', sans-serif;
    font-size: 220%;
    text-align: center;
}
a {
    color: #fff;
}
h2 {
  font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
}
.ch-grid {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    width: 100%;
    li {
        width: 420px;
        height: 220px;
        display: inline-block;
        margin: 20px;
    }
}
.ch-grid:before, .ch-grid:after {
    content: '';
    display: table;
}
.ch-grid:before {
    clear: both;
}
.ch-img-1 {
    background: url() no-repeat;
}
.ch-img-2 {
    background: url() no-repeat;
}
.ch-img-3 {
    background: url() no-repeat;
}
.ch-item {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: default;
    box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
}
.ch-item:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    .ch-info {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        p {
            opacity: 1;
        }
    }
}
.ch-info {
    position: absolute;
    background: rgba(63, 147, 147, 0.8);
    width: inherit;
    height: inherit;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
    transform: scale(0);
    h3 {
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 22px;
        margin: 0 30px;
        padding: 45px 0 0 0;
        height: 140px;
        font-family: 'Open Sans', Arial, sans-serif;
        text-shadow: 0 0 1px white, 0 1px 2px #204c4c;
    }
    p {
        color: white;
        padding: 10px 5px;
        font-style: italic;
        margin: 0 30px;
        font-size: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        opacity: 0;
        -moz-transition: all 1s ease-in-out 0.4s;
        -o-transition: all 1s ease-in-out 0.4s;
        -webkit-transition: all 1s ease-in-out;
        -webkit-transition-delay: 0.4s;
        transition: all 1s ease-in-out 0.4s;
        a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-style: normal;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 9px;
            letter-spacing: 1px;
            padding-top: 4px;
            font-family: 'Open Sans', Arial, sans-serif;
        }
        a:hover {
            color: rgba(255, 242, 34, 0.8);
        }
    }
}

/* hero text effect */
@import url(https://fonts.googleapis.com/css?family=Imprima);

body{
	background: #;
}
.rw-wrapper{
	width: 100%;
	position: relative;
	margin: 0px auto 0 auto;
	font-family: 'Imprima', sans-serif;
	padding: 10px;
}
.rw-sentence{
	margin: 0;
	text-align: left;
	text-shadow: 2px 2px 2px rgba(33,33,33,0.8);
}
.rw-sentence span{
	color: #444;
	font-size: 150%;
	font-weight: normal;
}
.rw-words{
	display: inline;
	text-indent: 10px;
}
.rw-words-1 span{
	position: absolute;
	opacity: 0;
	overflow: hidden;
	color: #ffffff;
	-webkit-animation: rotateWord 18s linear infinite 0s;
	animation: rotateWord 18s linear infinite 0s;
}
.rw-words-1 span:nth-child(2) { 
    -webkit-animation-delay: 3s; 
	animation-delay: 3s; 
	color: #ffffff;
}
.rw-words-1 span:nth-child(3) { 
    -webkit-animation-delay: 6s; 
	animation-delay: 6s; 
	color: #ffffff;	
}
.rw-words-1 span:nth-child(4) { 
    -webkit-animation-delay: 9s; 
	animation-delay: 9s; 
	color: #ffffff;
}
.rw-words-1 span:nth-child(5) { 
    -webkit-animation-delay: 12s; 
	animation-delay: 12s; 
	color: #ffffff;
}
.rw-words-1 span:nth-child(6) { 
    -webkit-animation-delay: 15s; 
	animation-delay: 15s; 
	color: #ffffff;
}
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px);}
    17% { opacity: 1; -webkit-transform: translateY(0px); }
	20% { opacity: 0; -webkit-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    17% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
	20% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@media screen and (max-width: 768px){
	.rw-sentence { font-size: 18px; }
}
@media screen and (max-width: 320px){
	.rw-sentence { font-size: 9px; }
}

.rw-wrapper>h5 {
  margin: 0;
  padding:0;
  top:0;
  position: relative;
  line-height: 1em;
  
  
}

