
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	html {
		font-size: 16px;
	}
	body {
		font-family: "Open Sans", sans-serif;
		background-color: #fff;
		background-image: url(/images/06_whitediamond.png);
		background-position: 50% 50%;
		background-attachment: fixed;
		background-size: auto;
		background-repeat: repeat;
	}
	a {
		color: inherit;
		text-decoration: none;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		padding: 1rem 0 2rem;
		text-align: center;
	}
	.container {
		max-width: 1200px;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto;
		padding: 0 40px;
	}

	.header {
		display: flex;
		flex-direction: column;
	}

	.header__logo {
		margin: 10px auto;
		max-width: 90%;
	}
	.header__img {
		width: 100%;
	}
	header div.line {
		display: flex;
		justify-content: center;
		padding: 1rem;
		background-color: rgb(204, 0, 0);
		color: #fff;
	}
	header div.line span {
		text-decoration: underline;
	}
	header section.menu {
		background-color: #003863;
	}
	header section.menu ul.menu {
		position: static;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0.5rem;
		list-style-type: none;
	}
	header section.menu ul.menu li {
		margin: 0.5rem;
		color: #fff;
	}
	header section.menu ul.menu li.url,
	header section.menu ul.menu li.sub-menu {
		padding: 0.5rem;
		border-radius: 7px;
		background-color: #666;
	}
	header section.menu ul.menu li.url::after {
		content: "";
		width: 0px;
		height: 1px;
		display: block;
		background: #fff;
		transition: 300ms;
	}
	header section.menu ul.menu li.url:hover::after {
		width: 100%;
	}
	header section.menu ul.menu li.sub-menu {
		position: relative;
	}
	header section.menu ul.menu li.sub-menu ul.sub-menu {
		display: none;
		position: absolute;
		flex-direction: column;
		align-items: baseline;
		left: 0;
		top: 100%;
		min-width: max-content;
		background-color: #003863;
		list-style-type: none;
		z-index: 2;
	}
	header section.menu ul.menu li.sub-menu ul.sub-menu li.url {
		margin: 0;
		max-width: 100%;
		background-color: #003863;
	}
	main {
		min-height: 70%;
		color: #333;
	}

	main section {
		margin: 2rem 0;
	}
	main section.address {
		display: flex;
		justify-content: center;
		margin: 1rem;
	}
	main section.address ul {
		margin: 1rem 0;
		text-align: center;
		list-style: none;
	}
	main section.address ul li strong a {
		color: #003863;
	}

	.slider__slide {
		height: 500px;
		width: 100%;
		display: block;
		background-color: rgb(58, 20, 20);
		position: relative;
	}
	.slider__img {
		width: 100%;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.slick-next {
		right: 0;
		z-index: 10;
	}
	.slick-prev {
		left: 0;
		z-index: 10;
	}

	section.subscribe {
		display: flex;
		flex-direction: column;
	}

	.subscribe__form {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		/*min-height: 3rem;*/
	}
	.subscribe__input {
		margin-right: 2rem;
		width: 250px;
		height: 40px;
		border-radius: 10px;
		border: 1px solid rgb(145, 144, 144);
		padding: 5px;
	}
	.subscribe__button {
		padding: 0 2rem;
		min-height: 2rem;
		font-size: 1rem;
		background: #003863;
		border-radius: 10px;
		border-width: 0;
		border-style: solid;
		color: #fff;
		font-family: museosans, Arial, Verdana, sans-serif;
		cursor: pointer;
	}

	.simple {
		background-color: #fff;
		width: 100%;
	}
	.simple__wrapper {
		margin-top: 20px;
		padding: 20px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.simple__image {
		max-width: 500px;
	}
	.simple__img {
		width: 100%;
	}

	.simple .simple__list {
		display: flex;
		list-style: none;
		width: 100%;
		justify-content: space-around;
		flex-wrap: wrap;
		margin: 2rem 0;
	}
	.simple .simple__item {
		max-width: 400px;
	}
	.simple a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.simple img {
		background: #003863;
	}

	.about__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.about__title {
		font-size: 34px;
		text-align: center;
		padding: 0;
		letter-spacing: 0.05em;
		margin-bottom: 20px;
	}
	.about__image {
		width: 500px;
	}
	.about__img {
		width: 100%;
	}
	.about__text {
		line-height: 1.5;
		margin-bottom: 10px;
	}
	.about__link {
		color: #369;
		font-style: italic;
		margin-bottom: 10px;
	}

	.mobile-app__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.mobile-app__image {
		width: 500px;
		margin-bottom: 20px;
	}
	.mobile-app__img {
		width: 100%;
	}
	.mobile-app__title {
		margin-bottom: 20px;
		font-weight: 400;
		font-size: 32px;
		color: #003863;
	}
	.mobile-app__list {
		display: flex;
		justify-content: space-between;
		list-style: none;
		width: 100%;
	}
	.mobile-app__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 30px;
		border-radius: 8px;
		border: 1px solid #003863;
	}
	.mobile-app__item + .mobile-app__item {
		margin-left: 20px;
	}
	.mobile-app__icon {
		background-color: #003863;
		border-radius: 50%;
	}
	.mobile-app__link {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
	}
	.mobile-app__text {
		text-align: center;
	}

	.footer {
		background-color: #003863;
	}
	.footer__wrapper {
		display: flex;
		flex-direction: row;
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 3rem 0;
		color: #f0f0f0;
		text-align: center;
		font-size: 0.9rem;
	}
	.footer__info {
		display: flex;
		flex-direction: column;
		justify-content: start;
	}
	.footer__menu-list {
		display: flex;
		list-style: none;
	}
	.footer__menu-item {
		margin: 0 5px;
	}
	.footer__info p {
		margin-bottom: 10px;
		text-align: start;
	}
	footer a:hover {
		color: #8b8b8b;
	}
	footer div.block {
		max-width: 20rem;
		margin: 1rem 0;
	}
	footer div.block img {
		padding-left: 3rem;
	}
	@media screen and (max-width: 767px) {
		.container {
			padding: 0 15px;
		}
		.slider__slide {
			height: 230px;
		}
		.subscribe__form {
			flex-direction: column;
			align-items: center;
		}
		.subscribe__input {
			margin-bottom: 10px;
		}
		.subscribe__input {
			margin-right: 0;
		}
		.simple__wrapper {
			padding: 20px 0;
		}
		.simple__image,
		.about__image,
		.mobile-app__image {
			width: 100%;
		}
		.simple__item {
			width: 50%;
		}
		.about__text {
			text-align: center;
		}
		.mobile-app__list {
			flex-wrap: wrap;
		}
		.mobile-app__item {
			width: calc(50% - 5px);
			margin-bottom: 10px;
		}
		.mobile-app__item:nth-child(even) {
			margin-left: 10px;
		}
		.mobile-app__item + .mobile-app__item {
			margin-left: 0;
		}
		.footer__wrapper {
			padding: 10px 0;
			flex-direction: column;
			align-items: center;
		}
		footer div.block img {
			padding-left: 0;
		}
	}
