:root {
  --main-bg-color: #B0CB04;
  --second-bg-color: #80433B;
}

@font-face {
    font-family: 'Helvetica_Neue_bold';
    src: url('../fonts/helvetica_neu_bold-webfont.woff2') format('woff2'),
        url('../fonts/helvetica_neu_bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ayar_kasone';
    src: url('../fonts/Ayar-Kasone.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body{
	padding-bottom: 80px;
	width: 375px;
	margin: 0 auto;
	line-height: 1.3;
	color: #000000;
	font-size: 16px;
    font-family: "Lato", sans-serif;
    -webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

*{
	padding: 0;
	margin: 0;
}

a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

a, p, textarea, input[type="text"], input[type="email"], input[type="submit"], input[type="password"]{
	-webkit-appearance: none;
}

img{
	vertical-align: bottom;
	border: none;
}

p{
	margin: 15px 0;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

ul li{
	list-style-type: disc;
	list-style-position: inside;
	margin: 5px 0;
}

nav ul li{
	list-style: none;
}

.align-center{
	text-align: center;
}
.align-right{
	text-align: right;
}
.align-bottom{
	margin-top: auto;
}

.bt-green{
	text-transform: uppercase;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 20px;
	display: inline-block;
	background-color: var(--main-bg-color);
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#top-header{
	background-color: var(--main-bg-color);
	height: 50px;
	position: sticky;
	top: 0;
	text-align: center;
	z-index: 1;
}
#top-header a{
	display: block;
	line-height: 50px;
	font-size: 2em;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
    font-family: 'Ayar_kasone', sans-serif;
	letter-spacing: -1px;
}
#header #logo{
	margin: 25px 0 25px 0;
	text-align: center;
}
#header #logo .slogan{
	font-size: 0.875em;
	color: var(--second-bg-color);
	display: block;
	margin: 5px 0;
	font-weight: 900;
}


#wrap{
	padding: 0 25px;
}

#wrap .size_18{
	font-size: 1.063em;
}

#wrap h1{
	color: var(--second-bg-color);
	font-size: 1.2em;
	font-weight: 900;
}
#wrap .main-title{
	margin: 0 0 30px 0;
}
#wrap .main-title h1, #wrap .main-title p{
	color: #000;
	font-size: 1.5em;
	text-align: center;
	font-style: italic;
}

#headband{
	height: 160px;
	margin: 0 -25px 20px -25px;
	position: relative;
}
#headband img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#headband h1{
	font-size: 2em;
    font-family: 'Ayar_kasone', sans-serif;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	right: 25px;
	bottom: -10px;
	text-align: right;
	line-height: 1.2;
}

#wrap .content{
	font-size: 0.875em;
	margin: 0 15px;
}
#wrap ul{
	padding: 0;
	margin: 0;
}
#wrap ul li{
	list-style: none;
	padding-left: 30px;
	margin: 0 0 10px 0;
	position: relative;
}
#wrap ul li:before{
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 15px;
	background-color: var(--main-bg-color);
	position: absolute;
	left: 0;
	top: 3px;
}

#wrap ul li a{
	color: #000;
}
#wrap ul li a:hover{
	color: var(--second-bg-color);
}

.block-images{
	gap: 5px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	   -moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		 -o-flex-wrap: wrap;
			flex-wrap: wrap;
}

.block-images .image{
	flex: 1 calc(50% - 5px);
	position: relative;
}

.block-images .image img{
	max-width: 100%;
	height: auto;
}

.block-images .image .title{
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	left: 0;
	bottom: 10px;
	width: 100%;
	/* font-size: 0.9em; */
    font-family: 'Ayar_kasone', sans-serif;
}

#footer{
	position: fixed;
	z-index: 1;
	bottom: 0;
	width: 300px;
	left: 50%;
	transform: translateX(-50%);
	height: 50px;
	background-color: var(--main-bg-color);
	text-align: center;
	line-height: 50px;
}

#footer a{
	font-size: 0.7em;
	color: #fff;
}