/*-----------------contacts-----------------*/
 .b-contacts {
    background-color: #1f8a70;
    bottom: 0;
    left: 0;
    border-width: 10px 10px 0px 0px;
}
.b-contacts .content {
    top: 40px;
    right: 40px;
}
.b-contacts h1 {
    top: 0px;
    right: 0px;
}
.b-contacts .menu {
    top: 0;
    left: 0;
}
form {
	float: left;
	vertical-align: top;
    margin-top: 10%;
    width: 50%;
}
input[type="text"] {
    width: 100%;
    color: #ffe11a;
    font-size: 1.2em;
    background-color: transparent;
    border: 1px solid #ffe11a;
    height: 3em;
    margin-bottom: 1em;
    padding-left: 1em;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
input[type="text"]:focus {
    box-shadow: none;
    border: 1px solid #ffe11a;
    background-color: #ffe11a;
    color: #1f8a70;
    outline: none;
}
input[type="text"]:focus::-webkit-input-placeholder {
    color: #1f8a70;
}
input[type="text"]:focus:-moz-placeholder {
    /* Firefox 18- */
    color: #1f8a70;
}
input[type="text"]:focus::-moz-placeholder {
    /* Firefox 19+ */
    color: #1f8a70;
}
input[type="text"]:focus:-ms-input-placeholder {
    color: #1f8a70;
}
input[type="text"]::-webkit-input-placeholder {
    color: #ffe11a;
}
input[type="text"]:-moz-placeholder {
    /* Firefox 18- */
    color: #ffe11a;
}
input[type="text"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffe11a;
}
input[type="text"]:-ms-input-placeholder {
    color: #ffe11a;
}
input[type="submit"]{
    margin-top: 1em;
	height: 3em;
	cursor: pointer;
    background-color: #ffe11a;
    color: #1f8a70;
    font-weight: 700;
    text-transform: uppercase;
   	font-size: 1.2em;
   	width: 55%;
    padding-left: 2em;
    background-image: url('../img/phone-big.png');
    background-repeat: no-repeat;
    background-position: 6% center;
   	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
    border: none;
}
input[type="submit"]:hover{
	background-color: #fff;
}
.contacts__list{
	float: right;
	width: 35%;    
	margin-top: 9%;
	vertical-align: top;
	font-weight:700;
}
.contacts__item{
	padding-left: 2.5em;
	display: block;
	font-size: 1.1em;
	line-height: 2.5em;
	background-repeat: no-repeat;
    background-position: 1% center;
}
.contacts__item_phone{
	background-image: url('../img/phone.png');
}
.contacts__item_mail{
	line-height: 2.7em;
	background-image: url('../img/mail.png');
	background-position: left center;
}
.contacts__item_vk{
	background-image: url('../img/vk.png');
}
.contacts__item_copy{
	text-align: right;
}