* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Montserrat';
	src: url('font/Montserrat-Regular.ttf');
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: 'Montserrat';
	src: url('font/Montserrat-Medium.ttf');
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: 'Montserrat';
	src: url('font/Montserrat-SemiBold.ttf');
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: 'Montserrat';
	src: url('font/Montserrat-Bold.ttf');
	font-style: normal;
	font-weight: 700;
}

body {
	min-width: 320px;
	font-family: 'Montserrat';
	font-size: 16px;
	background: #00100e;
}

a {
	text-decoration: none;
}

.container {
	width: calc(100% - 20px);
	max-width: 1440px;
	margin: 0 auto;
}

header,
footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #031717;
}

header {
	position: sticky;
	top: 0;
	z-index: 999;
}

header .container,
footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 76px;
}

nav {
	display: flex;
	align-items: center;
}

.buttons a {
	padding: 12px 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 14px;
	box-sizing: border-box;
	margin-right: 10px;
	text-align: center;
}

a.button-alfa {
	background: #28c272;
	color: #333;
	border: 2px solid #28c272;
	background-image: linear-gradient(to right, #28c272, #94c83d);
}

a.button-beta {
	background: #94c83d;
	color: #333;
	border: 2px solid #28c272;
	background-image: linear-gradient(to left, #28c272, #94c83d);
}

.buttons a:hover {
	background: none;
	color: #fff;
}

.language-switcher {
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 40px;
	height: 40px;
	justify-content: center;
	border: 2px solid #555e62;
	border-radius: 5px;
}

.language-switcher:hover {
	border: 2px solid #28c272;
	background-image: linear-gradient(to right, #fff, #94c83d);
}

.banner-section {
	width: calc(100% - 20px);
	max-width: 1440px;
	margin: 0 auto;
	background-image: url(img/bg2.webp);
	min-height: 320px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 25px;
	margin-top: 25px;
}

.banner-s1 {
	background-image: url(img/girl1.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}

.banner-s2 {
	background-image: url(img/girl2.webp);
	background-size: contain;
	background-repeat: no-repeat;
}

.banner__wrap {
	width: 100%;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
}

.banner-title {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	font-size: 42px;
	color: #28c272;
}

.banner-subtitle span {
	color: #28c272;
	font-weight: bold;
}

.banner-title span {
	color: #fff;
}

.banner-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	min-width: 200px;
	margin-top: 15px;
	margin-bottom: 18px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 14px;
	box-sizing: border-box;
	background: #28c272;
	color: #fff;
	border: 2px solid #28c272;
	background-image: linear-gradient(to right, #28c272, #94c83d);
	font-size: 22px;
	text-transform: uppercase;
}

.banner-button:hover {
	background: none;
}

article h1 {
	color: #fff;
	margin-bottom: 20px;
	margin-top: 10px;
	font-size: 32px;
	
	
	text-align: center;
	
}

article h2 {
	color: #fff;
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 28px;
	background: #28c272;
	background-image: linear-gradient(to right, #28c272, #94c83d);
	padding: 15px 10px;
	border-radius: 5px;
	text-align: center;
	text-shadow: 2px 2px 2px #000000;
}

article h3 {
	color: #fff;
	margin-bottom: 20px;
}

article img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px auto;
}

article p {
	margin-bottom: 20px;
	color: #fff;

	line-height: 26px;
}

article ul,
article ol {
	margin-bottom: 20px;
	list-style-position: inside;
	color: #28c272;
	line-height: 26px;
}

blockquote {
	line-height: 26px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	font-size: 14px;
	border: 1px dotted rgba(255, 255, 255, 0.3);
	padding: 10px;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
}

blockquote:before {
	content: '';
	min-width: 60px;
	min-height: 60px;
	max-width: 61px;
	max-height: 61px;
	border-radius: 10em;
	background-image: url(author.jpg);
	background-size: cover;
	display: block;
	margin-right: 10px;
}

article figure {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

article figcaption {
	color: #aaa;
}

article table {
	border-collapse: collapse;
	width: 100%;
	color: #fff;
}

article table td {
	border: 1px solid #fff;
	padding: 15px 0;
	text-align: center;
}

footer p {
	font-size: 12px;
	padding-bottom: 12px;
	color: #28c272;
}

@media (max-width: 550px) {
	header .container,
	footer .container {
		flex-direction: column;
		height: auto;
		padding: 10px 0;
	}

	.logo {
		margin-bottom: 15px;
	}

	nav {
		width: 100%;
		justify-content: space-between;
	}

	.buttons {
		width: 100%;
		/*width: calc(100% - 54px);*/
		display: flex;
		justify-content: space-between;
	}

	.buttons a {
		padding: 0;
		margin: 0;
		width: calc(50% - 5px);
	}
}

.slot-section {padding:30px 0 0;}
.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #fff;
}
ul.slot-content {margin:0 -15px 0;list-style:none;}
ul.slot-content li {float:left;padding-left:15px;padding-right:15px;width:25%;}
ul.slot-content li article {margin:0 0 30px;background:rgba(0,0,0,0.9);position:relative;text-align:center;}
ul.slot-content li article .hiddenbox {position:absolute;left:0;top:35%;width:100%;display:none;}
ul.slot-content li article:hover .hiddenbox {display:block;}
ul.slot-content li article img {display:block;width:100%;height:auto;}
ul.slot-content li article:hover img {opacity:0.3;}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a.btn-default {
  color: #fff;
  background: #ff2400;
  padding: 10px 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

.slot-content a.btn-default {
  display: block;
  padding: 10px;
  max-width: 180px;
  font-size: 15px;
  margin: 10px auto;
}
@media (max-width:991px) {
ul.slot-content li {width:50%;}	
}
@media (max-width:460px) {
ul.slot-content li {width:100%;}	
}
