/***************************************
****************reset*******************
***************************************/
@import url(ui.css);

*, *::before, *::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
ul, ol, li {
	list-style: none;
}
img {
	vertical-align: top;
}
html, body {
	height: 100%;
	line-height: 1;
	font-size: var(--base-fz);
	color: var(--ligth-gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
	background-color: var(--blue);
}
button {
	line-height: 1;
	font-size: var(--base-fz);
	color: var(--ligth-gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
	cursor: pointer;
	background-color: transparent;
}
textarea, input {
	line-height: 1;
	font-size: var(--base-fz);
	color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
._wrapper {
	min-height: 100%;
	overflow: hidden;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}
img {
	display: block;
}
._container {
	margin: 0 auto;
	max-width: 1560px;
	padding: 0 20px;
	box-sizing: content-box;
}
._pb_img, ._pb_img_contain {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
._pb_img_contain {
	object-fit: contain;
}
body._lock {
	overflow: hidden;
}
._blue-section {
  background-color: var(--blue);
  position: relative;
}
._white-section {
	background-color: var(--ligth-gray);
}
main > ._blue-section:not(:first-child, ._white-section + ._blue-section)::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url('../img/border.svg');
  background-size: cover;
  background-repeat: no-repeat;
}