body{
  margin: 0;
  font-family: Open Sans;
}
#page{
	max-width: 1130px;
    margin: 0 auto;
}
header, footer {
  background-color: #21afc2;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
}
header {
  margin-bottom: 15px;
    height: 60px;
}
header .header-right {
    float: right;
    margin-right: 115px;
    margin-top: 20px;
}
header .header-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    float: right;
    margin: 0 10px;    
}
#content{
	background-image: url(img/content-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 50px 40px 25%;
    position: relative;
    margin-bottom: 15px;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
}
#content:before {
    position: absolute;
    background-image: url(img/bg-girl.png);
    content: "";
    width: 50%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
}
#content .title {
    background: -moz-linear-gradient(left, rgba(125,185,232,0) 0%, rgba(33,175,194,1) 70%, rgba(33,175,194,0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(125,185,232,0) 0%,rgba(33,175,194,1) 70%,rgba(33,175,194,0.4) 100%);
    background: linear-gradient(to right, rgba(125,185,232,0) 0%,rgba(33,175,194,1) 70%,rgba(33,175,194,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#6621afc2',GradientType=1 );
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
    font-family: Roboto;
    height: 80px;
    line-height: 80px;
    padding-left: 20%;
    margin-bottom: 20px;
}
#content .text {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    padding: 10px 30px 30px 20%;
    background-color: #fff;
    color: #000;
    font-size: 14px;
}
#content .text .header {
    text-transform: uppercase;
    font-weight: 700;
}
#content ul.dashed {
  list-style-type: none;
  padding: 0 5px;
}
#content ul.dashed > li {
  text-indent: -5px;
}
#content ul.dashed > li:before {
  content: "-";
  margin-right: 5px;
}

@media(max-width: 1100px) {

  #content {
    padding: 5%;
  }

  #content .title {
    padding-left: 0 !important;
    text-align: center;  
  }

  #content:before {
    display: none !important;
  }

  #content .text {
    clip-path: none;
    padding: 10px 20px;
  }

}
footer {
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
@media (min-width: 992px) {
    footer .col-md-6 {
        width: 50%;
    }
    footer .col-md-offset-3 {
        margin-left: 25%;
    }
}