/*!
Theme Name: BNWPS
Author: Digital Octane
Author URI: http://digitaloctane.co/
Version: 1.0.0
Requires PHP: 5.6
Text Domain: bnwps

BNWPS is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@font-face {
    font-family: 'Asap';
    src: url('assets/fonts/Asap-Regular.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Asap';
    src: url('assets/fonts/Asap-SemiBold.ttf')  format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Asap';
    src: url('assets/fonts/Asap-Bold.ttf')  format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baskervville';
    src: url('assets/fonts/baskvl.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Baskervville';
    src: url('assets/fonts/BaskervilleItalicBT.ttf')  format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'ShipporiMincho';
    src: url('assets/fonts/ShipporiMincho-Regular.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMSans';
    src: url('assets/fonts/DMSans-Regular.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DMSans';
    src: url('assets/fonts/DMSans-Bold.ttf')  format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



html {
    margin: 0 !important;
}
#wpadminbar {
    transform: translateX(-99.9%);
    transition: 0.3s;
}
#wpadminbar:hover {
    transform: translateX(0);
}


/*** General ***/
:root {
    --fontSize: 18px;
    --lineHeight: 1.35;
	--textColor: #B18B6D;
    --fontFamily: 'Asap', sans-serif;
    --mainBgColor: #F9F5EC;
	--titlesFF: 'Baskervville', serif;
}

body {
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    line-height: var(--lineHeight);
    font-weight: 400;
    color: var(--textColor);
    background: var(--mainBgColor);
}
body.body_active_modal {
   height: 100vh;
   overflow-y: hidden;
   padding-right: 16px;
}

html {
    margin: 0 !important;
}

._container {
    max-width: 1476px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}


a {
    color: inherit;
}

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

iframe {
    max-width: 100%;
}

.section_title {
	font-size: 50px;
	line-height: 1;
	color: #3C352D;    
	font-style: italic;
    font-family: var(--titlesFF);
}

.btn, input[type="submit"] {
	font-size: 16px;
    padding: 22px 25px 19px;
    display: inline-block;
    text-align: center;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s ease-out;
    color: #FFFDFA;
	background: #B18B6D;
	min-width: 323px;
}

input:not([type="submit"]), textarea {
	padding: 10px;
    font-size: 16px;
    font-family: var(--fontFamily);
	width: 100%;
    max-width: 100%;
	background: #fff;
	color: #857058;
	transition: 0.3s;
}
input::placeholder {
	color: #857058;
    font-size: 16px;
    font-family: var(--fontFamily);
    font-weight: 400;
	opacity: 1;
}


._text_content a {
	text-decoration: underline;
}
._text_content i, ._text_content em {
    font-style: italic;
}
._text_content b, ._text_content strong {
    font-weight: bolder;
}
._text_content ul li {
    list-style: initial;
}
._text_content ol li {
    list-style: auto;
}
._text_content ul, ._text_content ol {
	    margin: 20px 0;
    margin-left: 20px;
}


@media (max-width: 900px) {
	body {
		--fontSize: 14px;
	}
	
	.btn, input[type="submit"] {
		font-size: 11px;
		padding: 16px 25px 15px;
		min-width: 208px;
	}
}

@media (max-width: 766px) {
	
	.section_title {
		font-size: 36px;
	}
}

@media (max-width: 650px) {
	._container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 600px) {
	
	.section_title {
		font-size: 30px;
	}
	
	.btn, input[type="submit"] {
        font-size: 10px;
        padding: 25px 25px 23px;
    }
	
	main#primary {
		padding-bottom: 0 !important;
	}
}


/*** Offcanvas ***/
.offcanvas_modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    transition: 0.2s;
}
.offcanvas_modal.active {
    display: block;
}
.offcanvas_modal ._close {
    flex-shrink: 0;
}
.offcanvas_modal .modal_block {
    height: 100%;
    margin-left: auto;
    transition: 0.5s;
    transform: translateX(-100%);
}
.offcanvas_modal.show .modal_block {
    transform: translateX(0%);
}
.offcanvas_modal ._inner {
    overflow-y: auto;
    position: relative;
    height: 100%;
    background-color: var(--mainBgColor);
    padding: 68px 100px 68px 74px;
}
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity .3s linear;
}

.mob_offcanvas ._head {
    margin-bottom: 42px;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
	display: flex;
}
.mob_menu_container {
	padding-left: 200px;
}
.mob_menu {
    position: relative;
    max-width: 350px;
}
.mob_menu > li > .li_inner {
	font-size: 34px;
    margin-bottom: 22px;
    line-height: 1.25;
    font-family: var(--titlesFF);
}
.mob_menu .sub-menu {
    position: absolute;
    top: 8px;
    left: calc(100% + 73px);
    width: 100%;
	    font-size: 24px;
	display: none;
}
.mob_menu .menu-item-has-children {
	cursor: pointer;
}
.mob_menu .menu-item-has-children.active .sub-menu {
	display: block;
}
.mob_menu .li_inner {
    gap: 5px;
    justify-content: space-between;
    align-items: center;
	display: flex;
}
.mob_menu .arrow_btn {
	padding: 0 20px;
	display: none;
}
.mob_menu .menu-item-has-children > .li_inner .arrow_btn {
	display: block;
}
.mob_menu .sub-menu li {
    margin-bottom: 30px;
}
.mob_menu .menu-item a {
    position: relative;
    display: block;
    overflow: hidden;
}
.mob_menu .menu-item > .li_inner > a:after {
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--textColor);
    left:  -100%;
    transition: 0.3s;
    content: '';
    position: absolute;
}
.mob_menu .menu-item.active > .li_inner > a:after, .mob_menu .menu-item:hover > .li_inner > a:after {
	 left: 0;
}

.search_block {
    width: 100%;
    max-width: 311px;
    overflow: hidden;
    position: relative;
}
.search_open {
    position: absolute;
    top: 5px;
    right: 5px;
	cursor: pointer;
}
.searchform button {
    line-height: 0;
}
.searchform * {
    background: #fff;
}
.searchform {
    display: flex;
    padding: 5px;
    border-radius: 40px;
    border: 1px solid #857058;
    overflow: hidden;
    background: #fff;
	width: 100%;
	    position: relative;
    transition: 0.3s;
}
.mob_offcanvas .searchform {
    transform: translateX(100%);
}
.mob_offcanvas .search_block.active .searchform {
	transform: translateX(0);
}

.mob_offcanvas ._decor {
	width: 672px;
	bottom: 0;
	right: 0;
	position: absolute;
	object-fit: contain;
	z-index: 1;
}


.site_header {
	padding: 50px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.site_header ._container {
    max-width: 1476px;
    padding-left: 40px;
    padding-right: 40px;
}
.site_logo {
	max-width: 234px;
}
.site_header .btn {
	max-width: 323px;
}
.site_header ._row {
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	display: flex;
}
.init_mob_offcanvas {
	margin-right: 24px;
	cursor: pointer;
}

@media (max-width: 1300px) {
	.mob_offcanvas ._decor {
		width: 50vw;
	}
}

@media (max-width: 1200px) {
	.offcanvas_modal ._inner {
		padding: 68px 74px;
	}
	.mob_menu_container {
		padding-left: 12vw;
	}
}

@media (max-width: 900px) {
	
	.mob_menu_container {
		padding-left: 0;
	}
	.mob_offcanvas ._decor {
		display: none;
	}
	.mob_menu .sub-menu {
		margin-bottom: 40px;
    	position: static;
	}
	.mob_menu .menu-item-has-children.active .arrow_btn svg {
		transform: rotate(90deg);
	}

	.site_header ._container {
    	padding: 0 20px;
	}
	.site_logo {
		max-width: 152px;
	}
	.site_header .btn {
    	display: none;
	}
}

@media (max-width: 600px) {
	.offcanvas_modal ._inner {
		padding: 20px;
	}
	.mob_menu > li > .li_inner {
    	font-size: 26px;
	}
	.mob_menu .sub-menu li {
		margin-bottom: 18px;
    	font-size: 20px;
	}
	.mob_menu .sub-menu {
    	margin-bottom: 34px;
	}
	
	.site_header {
   		padding: 36px 0;
	}
}



.site_footer {
	padding: 76px 0 100px;
	background: #3C352D;
	color: #fff;
}
.site_footer h2 {
	font-size: 30px;
	line-height: 1.4;
	letter-spacing: 0.02rem;
    font-family: var(--titlesFF);
	
}
.site_footer ._grid {
	gap: 114px;
	grid-template-columns: 1fr 1.143fr;
	display: grid;
}
.f_logo {
	margin-bottom: 30px;
	max-width: 311px;
}
.flags_block {
	margin: 63px 0 34px;
}
.flags_block img {
	height: 40px;
    margin-right: 8px;
	object-fit: contain;
	width: auto;
}
._copyright {
	margin-top: 70px;
}
.footer_contact p + p {
    margin-top: 20px;
}
.footer_contact strong {
	color: #B18B6D;
}

@media (max-width: 1200px) {
	
	.site_footer h2 {
    	font-size: 26px;
	}
	.site_footer ._grid {
		gap: 9vw;
	}
}

@media (max-width: 900px) {

	.site_footer {
    	padding: 76px 0;
	}
	.site_footer h2 {
		font-size: 16px;
		line-height: 140%;
		letter-spacing: 0;
	}
	.f_logo {
		margin-bottom: 50px;
		max-width: 152px;
	}
	.site_footer ._grid {
		gap: 33px;
    	grid-template-columns: 1fr 1fr;
	}
	.footer_contact p + p {
		margin-top: 12px;
	}
	.flags_block {
		margin: 55px 0 15px;
	}
	._copyright {
		margin-top: 12px;
	}
}

@media (max-width: 650px) {

	.site_footer ._col + ._col {
		margin-top: 40px;
	}
    .site_footer ._grid {
        display: block;
    }
}


.section_404 {
	padding: 100px 0;
	height: 100vh;
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.section_404 ._container {
	max-width: 900px;
}
.section_404 .section_title {
	max-width: 600px;
	margin: 0 auto;
}
.section_404 ._subtitle {
	font-size: 16px;
	    margin: 24px 0 50px;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
}
.section_404 img {
    max-width: 350px;
    margin-bottom: 30px;
}



.hero_section {
	padding-top: 132px;
}
.hero_section .bg_block {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero_section ._text {
	padding: 263px 20px;
	font-size: 50px;
	line-height: 0.9;
	text-align: center;
    font-family: 'ShipporiMincho';
	color: #3C352D;
}
.hero_section ._text em {
	font-style: italic;
    font-family: var(--titlesFF);
}

@media (max-width: 766px) {
	.hero_section {
		overflow: hidden;
	}
	.hero_section ._container {
		max-width: 402px;
		padding: 0;
	}
	.hero_section .bg_block {
		margin: 0 -20px;
	}
	.hero_section ._text {
		padding: 142px 20px;
		font-size: 30px;
	}
}

.features_section {
	padding: 192px 0 142px;
}
.features_section ._container {
	max-width: 1150px;
}
.features_section ._grid {
	gap: 45px;
	grid-template-columns: repeat(3, 1fr);
	display: grid;
}
.features_section .section_title {
	margin-bottom: 68px;
	text-align: center;
}
.features_section ._item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.features_section img {
	margin-bottom: 48px;
}
.features_section ._title {
	font-weight: 700;
}
.features_section ._subtitle {
	margin-bottom: 24px;
}
.features_section .btn_block {
	margin-top: 42px;
	text-align: center;
}

.features_section.columns_3 ._container {
	max-width: 962px;
}

.features_section.columns_4 .section_title {
	margin-bottom: 50px;
}
.features_section.columns_4 ._grid {
	grid-template-columns: repeat(4, 1fr);
}
.features_section.columns_4 img {
	margin-bottom: 22px;
}

@media (max-width: 766px) {

	.features_section {
		padding: 62px 0 100px;
	}
	.features_section ._container {
		max-width: 645px !important;
	}
	.features_section ._grid {
    	gap: 32px;
	}
	.features_section ._item {
    	max-width: 243px;
	}
	.features_section img {
		margin-bottom: 24px;
	}
	.features_section .btn_block {
		margin-top: 35px;
	}
	
	.features_section.columns_4 ._grid {
    	gap: 42px;
		row-gap: 60px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 550px) {
	.features_section .section_title {
    	margin-bottom: 30px;
	}
	.features_section ._subtitle {
		margin-bottom: 30px;
	}
	.features_section ._grid {
    	display: block !important;
	}
	.features_section ._item + ._item {
		margin-top: 34px;
	}
	.features_section ._item {
		max-width: none;
	}
	.features_section .btn_block {
        margin-top: 40px;
    }
	
	.features_section.columns_4 ._item + ._item {
		margin-top: 50px;
	}
	.features_section.columns_4 .section_title {
		max-width: 290px;
		margin: 0 auto 50px;
	}
}


.text_image {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.text_image ._container {
	max-width: 1172px;
}
.text_image .top_image_block {
	margin-bottom: 50px;
}
.text_image .top_image_block.align_Center {
	text-align: center;
}
.text_image .top_image_block.align_Right {
	text-align: right;
}
.text_image .content_block {
	max-width: 654px;
}
.text_image h2 {
	font-size: 30px;
	line-height: 1.25;
    font-family: var(--titlesFF);
}
.text_image .btn_block {
	margin-top: 50px;
}

.text_image.content_Right ._container {
	max-width: 1192px;
}
.text_image.content_Right .content_block {
	margin-left: auto;
}

.text_image ._decor {
	bottom: 0;
	position: absolute;
	object-fit: contain;
}
.text_image.content_Left ._decor {
	width: 705px;
	right: 0;
}
.text_image.content_Right ._decor {
	width: 478px;
	left: 0;
}
.text_image.content_Right .content_block_wrap {
	position: relative;
}

@media (max-width: 1200px) {
	.text_image.content_Right ._decor {
    	width: 40vw;
	}
	.text_image.content_Left ._decor {
   	 width: 60vw;
	}
}
@media (max-width: 1050px) {
	.text_image.content_Right ._decor {
		width: 33vw;
	}
}
@media (max-width: 950px) {
	.text_image.content_Right ._decor {
		display: none;
	}
}

@media (max-width: 766px) {
	.text_image ._decor {
		display: none;
	}
	.text_image ._container {
		max-width: 530px !important;
	}
	.text_image .content_block {
		max-width: 451px;
	}
	.text_image.content_Left .content_block {
		max-width: 324px;
	}
	.text_image h2 {
    	font-size: 16px;
	}
	.text_image .top_image_block {
		margin-bottom: 34px;
	}
	.text_image .top_image_block img {
		max-width: 320px !important;
	}
	.text_image .btn_block {
		margin-top: 34px;
	}
}

@media (max-width: 400px) {
	
	.text_image h2 {
        font-size: 15px;
    }
    .text_image .content_block {
        padding-right: 3px;
		margin-left: 0 !important;
    }
}


.intro_banner {
	padding-top: 188px;
}
.intro_banner ._container {
    max-width: 1476px;
    padding: 0 40px;
}
.intro_banner ._row {
	display: flex;
}
.intro_banner ._left {
	order: 2;
	width: 55%;
	line-height: 0;
	max-height: 441px;
}
.intro_banner ._right {
	width: 45%;
	padding-top: 112px;
}
.intro_banner ._left img {
    height: 100%;
    object-fit: cover;
}
.intro_banner .content_block {
	padding: 115px 40px;
	margin-right: -136px;
    z-index: 1;
    position: relative;
	background: #FFFDFA;
	text-align: center;
}
.intro_banner ._subtitle {
	margin-bottom: 25px;
	color: #3C352D;
}
.intro_banner ._title {
	font-size: 50px;
    line-height: 1;
    font-family: var(--titlesFF);
}
	
@media (max-width: 900px) {
	
	.intro_banner {
		padding-top: 132px;
	}
	.intro_banner ._container {
		padding: 0 20px;
	}
	.intro_banner ._row {
		display: block;
	}
	.intro_banner ._left {
		width: 100%;
	}
	.intro_banner ._right {
    	margin-top: -80px;
		padding: 0 20px;
		width: 100%;
	}
	.intro_banner .content_block {
		padding: 46px 18px;
		margin-right: 0;
		background: #fffdfa;
	}
	.intro_banner ._subtitle {
    	font-size: 20px;
	}
	.intro_banner ._title {
    	font-size: 45px;
	}
}
	
@media (max-width: 600px) {
	.intro_banner {
		position: relative;
	}
	.intro_banner:before {
		height: 45%;
		bottom: 0;
		right: 0;
		left: 0;
		content: '';
		position: absolute;
		background: #fff;
	}
	.intro_banner ._container {
        position: relative;
	}
	.intro_banner .content_block {
		padding: 26px 18px;
	}
	.intro_banner ._subtitle {
    	font-size: 14px;
	}
	.intro_banner ._title {
    	font-size: 30px;
	}
	.intro_banner ._right {
    	margin-top: -43px;
	}
}


.text_content h1, .text_content h2, .text_content h3, .text_content h4, .text_content h5, .text_content h6 {
    margin: 50px 0;
    line-height: 1.25;
    font-family: var(--titlesFF);
}
.text_content h1:first-of-type, .text_content h2:first-of-type, .text_content h3:first-of-type, .text_content h4:first-of-type, .text_content h5:first-of-type, .text_content h6:first-of-type {
	margin-top: 0;
}
.text_content h1 {
    font-size: 42px;
}
.text_content h2 {
    font-size: 36px;
}
.text_content h3 {
    font-size: 30px;
}
.text_content h4 {
    font-size: 24px;
}
.text_content h5 {
    font-size: 21px;
}
.text_content h6 {
    font-size: 18px;
}
.text_content p, .text_content ol, .text_content ul {
    margin: 24px 0;
}
.text_content p:first-of-type {
	margin-top: 0;
}
.text_content p:last-of-type {
	margin-bottom: 0;
}
.text_content ol {
    list-style: auto;
    padding-left: 20px;
}
.text_content ul {
    padding-left: 20px;
}
.text_content ul li {
    list-style: disc;
}
.text_content strong {
    font-weight: bold;
}
.text_content em {
    font-style: italic;
}
.text_content a {
    text-decoration: underline;
}

@media (max-width: 600px) {
	
	.text_content h1, .text_content h2, .text_content h3, .text_content h4, .text_content h5, .text_content h6 {
		font-size: 21px;
    	margin: 35px 0;
	}
	.text_content p, .text_content ol, .text_content ul {
		margin: 20px 0;
	}
}


.container_style_2 ._container {
	max-width: 1476px;
    padding: 0 40px;
}
.container_style_2 .inner_block {
    padding: 50px 0;
	background: #FFFDFA;
}
.container_style_2 .content_block {
	max-width: 958px;
    padding: 0 40px;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.container_style_2 ._container {
		padding: 0;
	}
	.container_style_2 .content_block {
		padding: 0 20px;
	}
	.container_style_2 .inner_block {
		padding: 30px 0;
		background: #fff;
	}
}


.table_section ._table {
	border: 1px solid #B9B9B9;
	border-radius: 4px;
	overflow: hidden;
}
.table_section ._row:not(.header_row) {
	border-top: 1px solid #B9B9B9;
}
.table_section ._col:not(:first-of-type) {
	border-left: 1px solid #B9B9B9;
}
.table_section ._row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
	background: #fff;
}
.table_section ._col {
	padding: 10px 12px;
}
.table_section .header_row {
	font-weight: 700;
	background: #F9F5EC;
}

/* Accordion */
.accordion_block {
	border-bottom: 1px solid var(--textColor);
    cursor: pointer;
}
.accordion_block:first-of-type {
    border-top: 1px solid var(--textColor);
}
.accordion_block__header {
    padding: 20px 50px 20px 0;
	position: relative;
}
.accordion_block__header svg {
    position: absolute;
    top: 29px;
    right: 0;
    width: 10px;
	height: 7px;
    transition: 0.3s;
}
.accordion_block__main {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 500ms;
}
.accordion_block ._inner {
    overflow: hidden;
}
.accordion_block.active .accordion_block__header svg {
    transform: rotate(180deg);
}
.accordion_block.active .accordion_block__main {
    grid-template-rows: 1fr;
}

@media (max-width: 600px) {
	.accordion_block__header svg {
    	right: 13px;
	}
}
/* Accordion */


.faq_section ._row {
    grid-template-columns: 1.07fr 1fr;
	gap: 34px;
    display: grid;
}
.faq_section .accordion_block ._text {
    padding: 8px 0 24px;
}
	
@media (max-width: 800px) {
	
	.faq_section ._row {
		display: block;
	}
	.faq_section ._left {
 	   margin-bottom: 60px;
	}
}

@media (max-width: 600px) {
    .faq_section ._left {
        margin-bottom: 35px;
    }
}


.image_text img {
	margin-bottom: 50px;
	max-height: 468px;
	object-fit: cover;
}
.image_text .inner_content_block {
	max-width: 654px;
	margin-left: auto;
}
.image_text .btn_block {
	margin-top: 50px;
}

@media (max-width: 600px) {
	.image_text img {
		margin-bottom: 30px;
		max-height: 270px;
	}
	.image_text .btn_block {
		margin-top: 22px;
	}
}


.image_section {
	padding: 130px 0 100px;
}
.image_section ._container {
    max-width: 1172px;
}
.image_section img {
	max-width: 650px;
	display: block;
}
.image_section.align_Center img {
	margin: 0 auto;
}
.image_section.align_Right img {
	margin-left: auto;
}

@media (max-width: 766px) {
    .image_section ._container {
        max-width: 530px;
    }
}


.cta_section {
	padding: 100px 0;
	text-align: center;
}
.cta_section ._container {
    max-width: 1172px;
}
.cta_section img {
    margin-bottom: 10px;
	max-width: 643px;
}
.cta_section .btn {
    margin-top: 14px;
}

@media (max-width: 766px) {
    .cta_section ._container {
        max-width: 530px;
    }
	 .cta_section .section_title {
        font-size: 30px;
    }
	.cta_section img {
		max-width: 340px;
	}
}


.video_section .inner_block {
    padding: 20px;
}


.search_resuls_section {
	padding-top: 184px;
	color: #857058;
}
.search_resuls_section.container_style_2 .inner_block {
	padding: 82px 0 132px;
}
.search_resuls_section ._header {
	margin-bottom: 60px;
}
.search_resuls_section ._item {
	padding: 45px 0 35px;
	border-bottom: 1px solid #857058;
	display: block;
}
.search_resuls_section h1 {
	font-size: 36px;
	    line-height: 1.25;
    font-family: var(--titlesFF);
}
.search_resuls_section .searchform {
	max-width: 538px;
}

.navigation.pagination {
    margin-top: 84px;
	font-size: 16px;
    text-align: center;
	font-family: 'DMSans';
}
.page-numbers {
    padding: 0 6px;
}
.page-numbers.current {
	text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 900px) {
    .search_resuls_section {
        padding-top: 132px;
    }
	.search_resuls_section.container_style_2 .inner_block {
		padding: 40px 0 60px;
	}
	.search_resuls_section ._header {
		margin-bottom: 30px;
	}
	.search_resuls_section h1 {
    	font-size: 34px;
	}
	.navigation.pagination {
    	margin-top: 54px;
	}
}
