/*Общие стили*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

html {
    background-color: #FFFFF0;
	
    scroll-behavior: smooth;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/

/*Заголовки, Тексты*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
p {
    font-family: 'Montserrat', sans-serif;
}

a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
}
/*----------------------------------------------------------------------------------------------------------------------------------*/

/*Шапка*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

.header::before {
    content: "";
    background-color: #A0522D	;
    box-shadow: 0px 2px 10px 1px rgba(4, 10, 27, 0.12);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.header_body {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.header_logo {
    z-index: 3;
    flex: 0 0 200px;
}

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

.header_burger {
    display: none;
	margin-right:24px;
}

.header_list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header_list li {
    list-style: none;
}

.header_link {
	color: #FFF;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	line-height: normal;
	font-size: 20px;
	font-weight: 600;
	border: 1px solid #FFF;
	border-radius: 12px;
	padding: 18px 77px;
}
/*----------------------------------------------------------------------------------------------------------------------------------*/

/*Контент*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
.main {
    margin-top: 150px;
    padding-bottom: 50px;
    height: 100%;
	padding:15px;
}

.block_1 {
    display: flex;
    gap: 60px;
}

.image_1 {
    display: flex;
    border: 3px solid rgba(160, 82, 45, 0.50);
    border-radius: 12px;
}

.image_1 img {
	width: 500px;
	height: 320px;
	border-radius: 10px;
}

.container_text_1 h1 {
    font-size: 32px;
    font-weight: 700;
}

.container_text_1 span {
    color: #A0522D	;
}

.container_text_1 p {
    margin-top: 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.container_button_1 {
    margin-top: 24px;
    display: flex;
    justify-content: end;
    gap: 8px;
}

.button_1 {
    color: #FFF;
    background-color: #A0522D	;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 12px;
}

.block_2 {
    display: flex;
}

.text_style_1 {
	position: relative;
	top: 60px;
	left: 75px;
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
}

.container_form {
	width:855px;
    background-color: #A0522D	;
    padding: 65px 80px 35px 80px;
    border-radius: 24px 0px 0px 24px;
}

.container_form p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    width: 465px;
}

.container_form span {
    font-weight: 700;
}

form {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.container_form input {
    box-sizing: border-box;
    color: #FFF;
    width: 465px;
    height: 60px;
    padding: 0 24px;
    background: none;
    outline: none;
    border-radius: 12px;
    border: 1px solid #FFF;
    font-size: 16px;
    font-weight: 400;
}

::placeholder {
    color: #FFF;
}

.container_form input:focus {
    border:  3px solid #FFF;
}

.button_2 {
    color: #A0522D	;
    background-color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    border: none;
    padding: 18px 70px;
    border-radius: 12px;
    width: 465px;
}

.container_tile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 465px;
    padding: 65px 80px;
	border-radius: 0px 24px 24px 0px;
    background: linear-gradient(0deg, rgba(160, 82, 45, 0.60) 0%, rgba(160, 82, 45, 0.60) 100%), url("image_3.jpg"), lightgray 50% / cover no-repeat;
}

.tile {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.tile p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}
/*----------------------------------------------------------------------------------------------------------------------------------*/

/*Подвал*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
.footer {
    background-color: #FFFFF0;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}

.footer p {
    color: rgba(0, 0, 0, 0.50);
    font-size: 16px;
    font-weight: 400;
	padding:0px 10px;
}

.footer a {
    color: rgba(0, 0, 0, 0.50);
    font-size: 16px;
    font-weight: 600;
}
/*----------------------------------------------------------------------------------------------------------------------------------*/

/*Адаптация под устройства*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 500px) {

.image_1 img {
	width: auto;
	height: auto;
	border-radius: 10px;
}

.header_link {
	color: #FFF;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	line-height: normal;
	font-size: 20px;
	font-weight: 600;
	border: 1px solid #FFF;
	border-radius: 12px;
	padding: 18px 77px;
}

.text_style_1 {
	position: relative;
	top: 60px;
	left: 55px;
	color: #FFF;
	font-size: 22px;
	font-weight: 700;
	width: 92%;
}

.container_form {
	width:auto;
	background-color: #A0522D	;
	padding: 65px 30px 35px 30px;
	border-radius: 24px 24px 24px 24px;
}

.container_form input {
    width: auto;
}

.tile {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

}


@media (max-width: 768px) {
    .container {
        max-width: auto;
    }

    .header_link {
	padding: 8px 55px;
	float: right;
    }

    .block_1 {
        flex-direction: column;
        gap: 20px;
    }


    .container_image_1 {
        display: flex;
        justify-content: center;
    }

    .image_1 {
        width: auto;
    }

    .image_1 img {
        width: 100%;
		height: auto;
    }

    .block_2 {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .container_tile {
		border-radius: 24px 24px 24px 24px;
        position: relative;
        padding: 100px 0px 40px 0px;
        width: auto;
    }

    .text_style_1 {
        top: 80px;
        z-index: 2;
		font-size:22px;
    }

    form {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container_form input {
    width: 100%;
    }

    .container_form p {
        width: 100%;
    }
	
	.container_form {
	width:auto;
	background-color: #A0522D	;
	padding: 65px 30px 35px 30px;
	border-radius: 24px 24px 24px 24px;
}

.tile {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
	
}

@media (max-width: 480px) {
    .main {
        margin-top: 70px;
    }

    .container {
        max-width: 97%px;
    }

    .header_body {
        height: 64px;
    }

    .header_logo {
        flex: 0 0 150px;
    }

    .header_menu {
        display: none;
    }

    .header_burger {
        display: block;
        width: 24px;
        height: 24px;
        z-index: 3;
		margin-right:8px;
    }

    .block_1 {
        gap: 20px;
    }

    .container_image_1 {
        width: 100%;
    }
    
    .image_1 img {
        width: 100%;
	    height: auto;
    }

    .container_text_1 h1 {
        position: relative;
        background-color: #FFF;
        font-size: 15px;
		text-align:center;
    }

    .container_text_1 p {
        font-size: 14px;
        margin-top: 15px;
    }

    .container_text_1-1 {
        display: flex;
        flex-direction: column-reverse;
    }

    .container_button_1 {
        flex-direction: column-reverse;
        text-align: center;
    }

    .button_1 {
        font-size: 16px;
    }

    .text_style_1 {
        position: relative;
        top: 80px;
        width: 80%;
        font-size: 16px;
    }

    .block_2 {
        width: auto;
    }

.tile {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

    .tile p {
        font-size: 14px;
		width: 55%;
    }

    .container_tile {
        width: 100%;
        padding: 100px 0px 40px 0px;
		border-radius: 24px 24px 24px 24px;
    }
	
	.container_form {
	width:auto;
	background-color: #A0522D	;
	padding: 65px 30px 35px 30px;
	border-radius: 24px 24px 24px 24px;
}
    
    .container_form p {
        font-size: 14px;
    }

    .container_form input {
        width: 100%;
        font-size: 14px;
    }

    .button_2 {
        font-size: 16px;
        padding: 18px 10px;
    }

    .footer {
        width: 100%;
    }

    .footer p {
        color: rgba(0, 0, 0, 0.50);
        font-size: 12px;
		padding:0px 10px;
    }
    
    .footer a {
        color: rgba(0, 0, 0, 0.50);
        font-size: 12px;
    }
}

@media (max-width: 201px) {
	 .main {
        margin-top: 70px;
    }

    .container {
        max-width: 195px;
    }

    .header_body {
        height: auto;
    }

    .header_logo {
        flex: 0 0 150px;
    }

    .header_menu {
        display: none;
    }

    .header_burger {
        display: block;
        width: 24px;
        height: 24px;
        z-index: 3;
		margin-right:8px;
    }

    .block_1 {
        gap: 20px;
    }

    .container_image_1 {
        width: 98%;
    }
    
    .image_1 img {
        width: 98%;
        height: auto;
    }

    .container_text_1 h1 {
        position: relative;
        background-color: #FFF;
        font-size: 20px;
        padding: 10px 0;
    }

    .container_text_1 p {
        font-size: 14px;
        margin-top: 15px;
    }

    .container_text_1-1 {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .container_button_1 {
        flex-direction: column-reverse;
        text-align: center;
    }

    .button_1 {
        font-size: 16px;
    }

    .text_style_1 {
        position: relative;
        top: 80px;
        left: 15px;
        width: 98%;
        font-size: 16px;
    }

    .block_2 {
        width: 98%;
    }

.tile {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

    .tile p {
        font-size: 14px;
    }

    .container_tile {
        width: 100%;
        padding: 100px 0px 40px 0px;
		border-radius: 24px 24px 24px 24px;
    }

    .container_form {
	width: auto;
	background-color: #A0522D	;
	padding: 65px 30px 35px 30px;
	border-radius: 24px 24px 24px 24px;
    }
    
    .container_form p {
        font-size: 14px;
    }

    .container_form input {
        width: 100%;
        font-size: 14px;
    }

    .button_2 {
        font-size: 16px;
        padding: 18px 10px;
    }

    .footer {
        width: 100%;
    }

    .footer p {
        color: rgba(0, 0, 0, 0.50);
        font-size: 12px;
		padding:0px 10px;
    }
    
    .footer a {
        color: rgba(0, 0, 0, 0.50);
        font-size: 12px;
    }
	
	
}	

/*----------------------------------------------------------------------------------------------------------------------------------*/
