body, html{
	padding: 0;
	margin: 0;
	font-family: 'Anton', sans-serif;
	color: black;
	font-size: 16px;
    width: 100%;
}

* {
	box-sizing: border-box;
}

button:focus {
	outline: none
}



.container{
    width: 1170px;
    margin: 0 auto;
}

.ul, li{
    padding: 0;
    margin: 0;
    display: block;
}

.header{
    background: url('../images/header-bg.jpg') no-repeat center top;
    background-size: cover;
	color: #fff;
	padding-bottom: 322px
}

header a{
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.313em;
    /* identical to box height */

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #FFFFFF;
}

.menu{
    display: flex;
    margin-left: 96px;
}

.menu li a{
    text-transform: uppercase;
    text-decoration: none;
}

.menu li{
    margin-right: 40px;

}

.tel{
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: auto;
}

.top_menu{
    display: flex;
    align-items: center;
    padding-top: 57px;
}

.top_text{
    margin-top: 355px;
}

.little_text{
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 2.813em;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #FFFFFF;
}

.big_text{
    margin-top: -20px;
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 100px;
    line-height: 1.25em;
    text-transform: uppercase;
    margin-bottom: 37px;
    color: #FFFFFF;
}

.btn{
    display: block;
    font-size: 17px;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 17px 47px;
    border: 1px solid #fff;
    width: 238px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.btn:hover{
    background: #fff;
    color: #000000;
}

.about_us{
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 4.688em;
    text-transform: uppercase;
    padding-bottom: 58px;
    color: #000000;
}

.section h2{
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.62em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 28px;
}

h3{
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.62em;
    text-transform: uppercase;
    color: #000000;
}

section{
    padding-top: 130px;
}


.description{
    display: flex;
    justify-content: space-between;
}

.description p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: justify;
    line-height: 1.62em;
}

.desc-left, .desc-right {
	width: 567px;
}

.gallery{
    margin-top: 67px;
    display: flex;
    justify-content: space-between;
}

.gallery img{
    transition: all 0.5s ease;
}

.gallery img:hover{
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.footer p{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.75em;
    margin-right: 57px;
    color: #000000;
}

.bottom{
    margin-top: 114px;
    margin-bottom: 80px;
    display: flex;
}

.menu-open{
    background: none;
    border: none;
    margin-left: 20px;
    display: none;
}

header .show-menu{
    background: rgba(0,0,0,0.3);
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    padding: 31px 0px 15px 42px;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 1140px;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        width: 960px;
    }

    .desc-left, .desc-right {
        width: 48%;
    }

    .gallery img:nth-child(1){
        width: 24%;
    }
    .gallery img:nth-child(2){
        width: 24%;
    }
    .gallery img:nth-child(3){
        width: 48%;
    }
}

@media screen and (max-width: 991px) {
    .container {
        width: 720px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 540px;
    }

    .gallery {
		flex-wrap: wrap;
	}

    .description{
        flex-wrap: wrap;
    }

    .desc-left, .desc-right {
		width: 100%;
	}

    .gallery img:nth-child(1),
	.gallery img:nth-child(2),
	.gallery img:nth-child(3) {
		width: 100%;
		margin-bottom: 20px;
	}

    .menu{
        display: none;
    }

    .menu-open{
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .container {
		width: 100%;
        padding: 0 15px;
	}
	.offer h1 {
		font-size: 80px;
	}
	
    .description{
        flex-wrap: wrap;
    }



    
}

