#nav
{
	width:100%;
	height:60px;
	background:#292929;
	position: relative;
}
#nav .menu
{
	display:none;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
    background: #292929;
    position: absolute;
    bottom: -116px;
    left: 0;
    z-index: 9;
    box-sizing: border-box;
}
#nav .phone-block
{
	display:flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
}
#nav .mail-block, #nav .logo
{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#nav .row, #nav .container-fluid
{
	height: 100%;
}
#nav .phone, #nav .email, #nav .logo
{	
    font-size: 23px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    position: relative;
}
#nav .logo
{
	text-transform:uppercase; 
	color:#FF7F50!important;
}
#nav .phone a, #nav .email a, #nav .logo
{
    color:#fff;
}
#nav .phone:before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 27px;
    height: 27px;
    background: url(../img/phone.png) no-repeat;
    background-size: cover;
}
#nav .email:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -40px;
    width: 27px;
    height: 27px;
    background: url(../img/mail.svg) no-repeat;
    background-size: cover;
}
#main
{
	width:100%;
	height: calc(100vh - 60px);
   	background:url(../img/2.jpg) no-repeat;
   	background-position:50% 45%;
   	background-size: cover;
}
#main .title-text, #main .bigger-text
{
	font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
	font-size:60px;
	color:#fff;
}
#main .bigger-text
{
	font-size:70px;
	color:#FF7F50;
}
#main .container-fluid
{
	height:100%;
}
#main .wrapper
{
	padding-top:5%;
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items:center;
}
#nav .menu-but
{
	display:none;
}
#nav .menu-but i {
    font-size: 30px;
    color: #fff;
}
#main form
{
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width:100%;
	margin:0 auto;
}
#main .form-block input
{
	width:250px;
	height:50px;
	padding-left:20px;
	border:1px solid #FF7F50;
	border-radius: 4.5px;
	margin-bottom:20px;
}
#main .form-block h2
{
	font-family: 'Ubuntu', sans-serif;
	color:#fff;
	font-size:35px;
	margin:20px 0 50px 0;
}
#main .form-block button
{
	width:120px;
	height:50px;
	border:none;
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	background:#FF7F50;
	color:#fff;
	font-size:20px;
	border-radius: 4.5px;
}
@media(max-width:1200px)
{
	#nav
	{
		height: 100px;
	}
	#nav .phone-block
	{
		flex-direction: column;
	}
	#main .bigger-text
	{
		font-size:3.2em;
	}
	#main .title-text
	{
		font-size:2.1em;
	}
	#main .form-block h2
	{
		font-size:1.8em;
	}
}
@media(max-width:850px)
{
	#nav {
	    height: 50px;
	}
	#nav .menu-but
	{
		display:block;
	    position: absolute;
	    top: 9px;
	    right: 20px;
	}
	#nav .container-fluid .col-md-6, #nav .container-fluid .col-md-4
	{
		display:none;
	}
	#nav .row
	{
		display: flex;
	    flex-direction: row;
	    justify-content: center;
	}
	#main 
	{
		height: calc(100vh - 50px);
	}	
	#main .form-block h2, #main .title-text {
	    text-align: center;
	}
}
@media(max-width:800px)
{
	#main .title-text {
	    font-size: 1.8em;
	}	
}
@media(max-width:600px)
{
	#main .title-text {
	    font-size: 1.6em;
	}	
}
@media(max-width:500px)
{
	#main .title-text {
	    font-size: 1.3em;
	}
	#main .bigger-text {
	    font-size: 2.6em;
	}
	#main .form-block h2 {
	    font-size: 1.4em;
	}
}
@media(max-width:375px)
{
	#main .bigger-text {
	    font-size: 2.1em;
	}
}
@media(max-height: 700px)
{
	#main 
	{
		min-height:450px;
		height: auto;
	}
	#main .container-fluid
	{
		padding-bottom:10%;
	}
}