.aplication {
	padding-top: 50px;
	padding-bottom: 50px;
	background: url(../img/bg-application.png) no-repeat center top;
	background-size: cover;
}
.aplication .itemromb h1 {
	font-size: 24px;
	font-weight: bold;
	padding: 0 5%;
	text-align: center;
}

.aplication-content {
	margin-top: 50px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.aplication-content img {
	padding: 0 15px;

}

.application-bottom form {
	display: flex;
	justify-content: center;
}

.application-item__form input {
	position: relative;
	border: none;
	background: transparent;
	font-size: 24px;
	font-family: 'Exo 2', sans-serif;
}

.application-item__form {
	position: relative;
	width: 400px;
	height: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.application-item__form:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #fff;
	transform: skew(-28deg);
	z-index: 0;
	box-shadow: 6px 6px 1px #cccccc;
}

.application-button__form {
	position: relative;
	width: 250px;
	height: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}

.application-button__form input {
	position: relative;
	border: none;
	background: transparent;
	font-size: 24px;
	font-family: 'Exo 2', sans-serif;
	font-weight: bold;
	color:  #564405;
}

.application-button__form:before {
	cursor: pointer;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	/*background: -webkit-linear-gradient( 360deg, rgb(250,126,0) 0%, rgb(255,255,255) 30%, rgb(250,126,0) 80%);*/
    /*background: -ms-linear-gradient( 360deg, rgb(250,126,0) 0%, rgb(255,255,255) 30%, rgb(250,126,0) 80%);*/
	background: linear-gradient(91.22deg, #FFE7B8 0%, #FEF3DD 100%);
	box-shadow: 0px 0px 10px rgba(255, 196, 44, 0.25);
	transform: skew(-28deg);
	/*box-shadow: 6px 6px 1px #cccccc;*/
	z-index: 0;
}

/* CSS */
/*************************************
* Базовые стили lightbox. 
* по умолчанию 'opacity' в значении '0'.
*/
a img {
  border: none; /* убираем рамку */
}
.lightbox {
/** определяем базовый стиль lightbox */
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  width: 0;
  height: 0;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
}
.lightbox img {
/** базовый стиль изображений lightbox*/
  width: 360px;
  max-width: 800px;
  height: auto;
  margin: 5% auto;
/** полная прозрачность изначально */
  opacity: 0;
/* трансформация прозрачности при открытии  */
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;  
}
.lightbox:target {
/** активируем lightbox при нажатии */
  width: auto;
  height: auto;
  bottom: 0;
  right: 0;
/** удаляем контур по умолчанию */
  outline: none;
}
.lightbox:target img {
/** делаем элемент непрозрачным  */
opacity: 1;
}
/** стиль миниатюр для демо-страницы */
.thumb img{
  width: 100px;
  margin:2%;
}
.thumb a img {
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}
.thumb a img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}