/*
* code: Nicole Grishechkina
* email: lambesis.work@gmail.com / NGrishechkina@mcfr.ru
* 03.2021
*/

body{
	font-family: 'Montserrat', sans-serif;
	min-width: 320px;
	width: 100%;
	height: 100vh;
}

img {
	display: block;
	max-width: 100%; 
}

.wrapper{
	background: #f4f4f4;
	width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6e6e6;
    padding: 0 15px;
}

.med a{
    display: block;
    width: 200px;
}
.med img{
    padding: 10px 0;
}

.callback_box{
    max-width: 1100px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-evenly;
}

.callback_about{
	width: 50%;
    margin-right: 30px;
}
.callback_box h1{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 30px;
}
.callback_about img{
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
}
.callback_about ul{
	padding: 0;
    line-height: 1.4;
    list-style: none;
}
.callback_about ul li{
    margin-bottom: 40px;
}
.callback_about li b{
	font-weight: 500;
	font-size: 18px;
}
.callback_about p{
    margin-top: 10px;
    margin-bottom: 30px;
}

.callback_about .li_icon{
	display: inline-block;
	width: 30px;
	margin: 0;
	vertical-align: bottom;
	margin-right: 10px;
}


.callback_form{
	width: 50%;
	background-color: #11a49b;
    padding: 20px 30px;
	color: #fff;
    height: 100%;
}

.hero_img{
    max-height: 300px;
    margin: 0 auto;
}
.preorder__form{
	display: block;
	width: 100%;
}

.form__label{
	display: block;
	width: 100%;
}
.form__input{
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    padding: 15px 15px;
    margin-bottom: 20px;
    font-size: 16px;
}
.button{
	display: inline-block;
	color: #fff;
	background-color: #d70a6a;
    padding: 15px 20px;
	text-align: center;
	text-decoration: none;
	border-radius: 3px;
	width: 100%;
	border: 0;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
}
.button:after {
	content: '»';
	position: absolute;
	opacity: 0;  
	top: 9px;
	right: -20px;
	transition: 0.3s;
}
.button:hover{
	padding-right: 28px;
	padding-left: 12px;
	background-color: #b70659;
}
.button:hover:after {
	opacity: 1;
	right: 10px;
}
.preorder__form-permission{
    text-align: center;
    color: #c7c7c7;
    font-size: 14px;
}
@media(max-width: 960px){
	body{
		background: #f5f5f5;
	}
	.callback_box{
		padding: 15px;
	}
	.wrapper{
	    display: block;
	    height: auto;
	    background: #f5f5f5;
	}
	.callback_about img{
		display: none;
	}
	.callback_box{
		display: block;
    	max-width: 500px;
	}
	.callback_about{
		width: 100%;
	}
	.callback_form{
		width: 100%;
    	margin-top: 50px;
	}
}