
.flexslider {
  position: relative;
 
}
.flexslider ul,
.flexslider ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flexslider ul li,
.flexslider ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flexslider .slides > li {
  position: relative;
  display: none;
  -webkit-backface-visibility: hidden;
  text-align: center;
}
.flexslider .slides img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  width: auto;
}
.flexslider .descr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
 /* background: rgba(100, 100, 100, 0.5);*/
  color: #fff;
  text-align: left;
}
.flexslider .descr h3 {
  text-align: left;
}
.flexslider .descr .text p:last-child {
  margin-bottom: 0;
}
.flex-container {
  position: relative;
}
/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
.nobreak {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  -o-column-break-inside: avoid;
  -ms-column-break-inside: avoid;
  display: table;
}

.flexslider {
  width: 100%;
  height: 520px;
  position: relative;
 	
}
.flexslider .slides li {
  display: none;
  height: 520px;
  width: 100%;

}
.flexslider .flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -35px;
}
.flexslider .flex-direction-nav .flex-prev {
  left: 20px;
  position: absolute;
 background:url(../images/icon/slider_prev.png) no-repeat;
  width: 70px;
  height: 70px;
}
.flexslider .flex-direction-nav .flex-prev:hover {
  background: url(../images/icon/slider_prev_hover.png) no-repeat;
}
.flexslider .flex-direction-nav .flex-next {
  right: 20px;
  position: absolute;
  background: url(../images/icon/slider_next.png) no-repeat;
  width: 70px;
  height: 70px;
}
.flexslider .flex-direction-nav .flex-next:hover {
  background: url(../images/icon/slider_next_hover.png) no-repeat;
}
.flexslider .descr {
  visibility: hidden;
  width: 1000px;
  height: auto;
  /*bottom: 164px;
  background:#f4f6f8;
		left: 178px;*/
 line-height:35px;
  bottom: 23%;
  left:10%;
  padding: 0;
  
}
.flexslider .descr h1 {
  color: #FFFFFF;
  font-weight: bold;
  margin: 0;
  text-transform: none;
  padding-left:23px;
  line-height:50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size:34px;
  font-style:italic;
  font-family: 'robotolight';
}
.flexslider .descr p {
  color: #FFFFFF;
  padding: 0px 10px 0 23px;
  margin-top:15px;
  line-height: 24px;
  font-weight:lighter;
  max-height: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size:21px;
    font-style:italic;
}
.flexslider .descr .descr_link {
  margin: 25px 0 20px 0;
}
.flexslider .descr .descr_link a {
  color: #FFFFFF;
  margin-left:23px;
  border-radius:6px;
  border:rgba(255,255,255,1) 1px solid;
  font-size:13px;
  padding:5px 15px ;
  
  transition:All .6s ease-in-out;
    -webkit-transition:All .6s ease-in-out;
    -moz-transition:All .6s ease-in-out;
    -o-transition:All .6s ease-in-out;
}
.flexslider .descr .descr_link a:hover {
	color: #FFFFFF;
	 font-style:italic;
 
  background:#58895a;
}
/* FlexSlider for internal pages
*******************************/
.flexslider_page {
  width: 100%;
  height: 286px;
  position: relative;
}
.flexslider_page .slides li {
  display: none;
  height: 286px;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.flexslider_page .flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -35px;
}
.flexslider_page .flex-direction-nav .flex-prev {
  left: 20px;
  position: absolute;
  background: url('../images/slider_prev.png') no-repeat;
  width: 70px;
  height: 70px;
}
.flexslider_page .flex-direction-nav .flex-prev:hover {
  background: url('../images/slider_prev_hover.png') no-repeat;
}
.flexslider_page .flex-direction-nav .flex-next {
  right: 20px;
  position: absolute;
  background: url('../images/slider_next.png') no-repeat;
  width: 70px;
  height: 70px;
}
.flexslider_page .flex-direction-nav .flex-next:hover {
  background: url('../images/slider_next_hover.png') no-repeat;
}

/* Effects */
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/* Large Desktop
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (max-width: 1200px) {
 .flexslider .descr {
  visibility: hidden;
  width: 700px;
  height: auto;
  /*bottom: 164px;
  background:#f4f6f8;
		left: 178px;*/
 line-height:35px;
  bottom: 29%;
  left:10%;
  padding: 0;
  
}
.flexslider .descr h1 {
  color: #FFFFFF;
  font-weight: bold;
  margin: 0;
  text-transform: none;
  padding-left:23px;
  line-height:50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size:29px;
  font-style:italic;
  font-family: 'robotolight';
}

 
}
/* Defaul Desktop
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (min-width: 980px) {
  
}
/* Laptop
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (max-width: 1020px) {
 
}
/* Tablets
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (max-width: 980px) {
 
}
@media only screen and (min-width: 961px) and (max-width:1200px) {
  
  .flexslider {
  width: 100%;
  height: 480px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 480px;
  width: 100%;
}
  
}
@media (max-width: 960px) {
   .flexslider {
  width: 100%;
  height: 420px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 420px;
  width: 100%;
}
}
/* Landskape Phone to Small Desktop & Portrait Tablet
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media only screen and (min-width: 741px) and (max-width:850px) {
  
  .flexslider {
  width: 100%;
  height: 350px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 350px;
  width: 100%;
}
  
}

@media only screen and (min-width: 640px) and (max-width:740px) {
  
  .flexslider {
  width: 100%;
  height: 300px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 300px;
  width: 100%;
}
  .header_center img
  {
	padding-left:30%;
  }
}
@media (max-width: 639px) {
  
  
    .flexslider {
  width: 100%;
  height: 230px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 230px;
  width: 100%;
}
  .flexslider .descr {
    bottom: 50px;
	display:none;
  }



}
/* Up to Landskape Phone
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (max-width: 480px) {
	  .flexslider {
  width: 100%;
  height: 230px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 230px;
  width: 100%;
}
  .flexslider .descr {
    bottom: 50px;
	display:none;
  }

 
}
/* Up to Portrait Phone
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
@media (max-width: 420px) {
  .flexslider {
  width: 100%;
  height: 140px;
  position: relative;
  margin-top:0px;
}
.flexslider .slides li {
  display: none;
  height: 160px;
  width: 100%;
}
  .flexslider .descr {
    bottom: 50px;
	display:none;
  }
}
@media (max-width: 380px) {
 
}
