@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: #333;
}


header {
  background: #111;
}


.headline {
  position: relative;
  height: 400px;
  
  color: white;
  text-align: center;
  background: url("../images/ban4.jpg") no-repeat center center;
  background-size: cover;
}
.headline:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
}

.inner {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 10;
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation: fade-in 0.75s 0.25s ease-in forwards;
          animation: fade-in 0.75s 0.25s ease-in forwards;
}
.inner h1 {
  margin: 0;
  font-size: 2.2em;
  line-height: 1.2em;
}
.inner h2 {
  margin: 0;
  font-size: 4em;
  line-height: 1.2em;
}

.inner p {
  margin: 0;
  font-size: 1.4em;
  font-style: italic;
  font-family: serif;
}


nav {
	 background-color: #000000;
background-image: linear-gradient(147deg, #000000 0%, #04619f 74%);
  position: fixed;
  width: 100%;
  z-index: 100;
}
nav.scrolled {
  background: rgba(17, 17, 17, 0.9);
}
nav ul {
  float: right;
  list-style: none;
  padding: 25px;
  margin: 0;
}
nav li {
  float: left;
}
nav a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  margin: 5px 0 0 20px;
  display: block;
   font-weight:bold;
}
nav a:hover {
  color: gold;
}



@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** testiomnial section **/

.testimonial-section{
  position: relative;
  background: url(../images/testi.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 78px;
}
.testimonial-section:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}
.testimonial-section .item{
  color: black;
}

/*
@media (min-width:480px) and (max-width:599px)  {  smartphones, Android phones, landscape iPhone 


 nav ul {
  float: right;
  list-style: none;
  padding: 15px;
  margin: 0;
}
nav li {
  float: left;
}
nav a {
  font-size: 0.6em;
  color: #fff;
  text-decoration: none;
  margin: 5px 0 0 10px;
  display: block;
  font-weight:bold;
}
 nav a:hover {
  color: gold;
}
 
}
  */
