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

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

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

.wrapper{
	background-color: #09a39a;
	width: 100%;    
	height: calc(100% - 46px);
    display: flex;
    flex-direction: column;
}

.grey{
	background-color: #f8f8f8;
	
}

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

.med{
    max-width:375px;
}

.callback_box{
	background: #f5f5f5;
    max-width: 900px;
    display: flex;
    align-items: center;
    margin: auto;
    padding: 30px;
    justify-content: space-evenly;
}

.callback_about{
	width: 50%;
}
.callback_about h1{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}
.callback_about img{
    width: 100%;
    max-width: 375px;
    margin: 30px auto;
}

.callback_list{
	padding-left: 20px;
	padding-right: 10px;
}
.callback_link{
	margin-bottom: 20px;
}
.callback_link a{
	color: #09a39a;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid;
    line-height: 28px;
    font-weight: 500;
}
.callback_link a:hover{
	border-bottom: 0;
}

.callback_form{
	width: 40%;
}
.preorder__form{
	display: block;
	width: 100%;
}
.form_logo{
    margin-bottom: 30px;
}
.form__label{
	display: block;
	width: 100%;
}
.form__input{
    display: block;
    width: 100%;   
    background: #fff;
    padding: 15px 15px;
    margin-bottom: 20px;
    font-size: 16px;
	border: 3px solid #09a39a;
    border-radius: 13px;
}
.button{
	display: inline-block;
	color: #fff;
	background-color: #b70659;
    padding: 15px 20px;
	text-align: center;
	text-decoration: none;
	border-radius: 13px;
	width: 100%;
	border: 0;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
	font-size: 24px;
}
.button:after {
	content: '»';
	position: absolute;
	opacity: 0;  
	top: 9px;
	right: -20px;
	transition: 0.3s;
}
.button:hover{
	padding-right: 28px;
	padding-left: 12px;
	background-color: #09a39a;
}
.button:hover:after {
	opacity: 1;
	right: 10px;
}
.preorder__form-permission{
    text-align: center;
    color: #7b7b7b;
}

@media(max-width: 920px){
	body{
		background: #f5f5f5;
	}
	.wrapper{
	    display: block;
	    height: calc(100% - 46px);
	    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;
	}
}
