* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Regular.ttf');
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Bold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Black.ttf');
	font-weight: 900;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-BoldItalic.ttf');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-LightItalic.ttf');
	font-weight: 300;
	font-style: italic;
}

body {
	min-width: 320px;
	background: #00100e;
	color: #fff;
	font-family: 'Roboto';
}

header {
	background: #00100e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 999;
}

header .container {
	margin: 0 auto;
	padding: 15px 0;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav {
	display: flex;
}

nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-left: 40px;
	padding-right: 40px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid #ff2400;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

nav a:nth-child(1) {
	background: #ff2400;
	margin-right: 10px;
}

nav a:hover {
	background: #ff2400;
}

.banner {
	width: 100%;
	background-image: url(img/bg.png);
	background-size: cover;
	margin: 0;
}

.banner-bg {
	background-image: radial-gradient(
		105.93% 112.43% at 114.58% 68.81%,
		#00ffb2,
		#00ffd100
	);
}

.banner-bg-1 {
	background-image: url(img/girl1.webp);
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 1280px;
	margin: 0 auto;
	background-position: right center;
}

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

.banner-content {
	min-height: 320px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-title {
	font-size: 62px;
	font-weight: 900;
}

.banner-title span {
	font-weight: 300;
	color: #ff2400;
}

.banner-button {
	background: #ff2400;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	height: 50px;
	width: 250px;
	border-radius: 5px;
	margin-top: 10px;
}

.banner-button:hover {
	background: #ac1700;
}

.about {display:block;width:100%;}

.about article p {
	margin-bottom: 20px;
}

.about article table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 20px;
}

.about article td {
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 15px 0;
}

.about article h1,
.about article h2,
.about article h3 {
	margin-bottom: 20px;
}

.about article h1 {
	font-size: 2em;
}

.about article p {
	line-height: 30px;
	margin-bottom: 20px;
}

.about article ul,
.about article ol {
	list-style-position: inside;
	margin-bottom: 20px;
	line-height: 40px;
}

.about article blockquote {
	font-style: italic;
	margin-bottom: 20px;
	border: 1px dashed rgba(255, 255, 255, 0.5);
	padding: 20px;
	text-align: center;
}

.about article a {
	color: #ff2400;
	text-decoration: none;
}

.about article a:hover {
	text-decoration: underline;
}

.about article figure {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-style: italic;
	color: #ff2400;
	font-size: 14px;
	margin-bottom: 20px;
}

.about  article img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

.advantages {
	margin: 30px auto;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
}

.advantage {
	width: calc(33% - 20px);
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: space-between;
	background: #031717;
	border-radius: 20px;
	padding: 10px;
}

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

.advantage-title {
	font-size: 20px;
	font-weight: 600;
	color: #d2eeed;
	margin-bottom: 10px;
}

.advantage-cnt {
	font-size: 14px;
	color: #3b6f6d;
}

.advantage-button {
	background: #ff2400;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	height: 50px;
	width: 100%;
	border-radius: 5px;
	margin-top: 10px;
}

.advantage-button:hover {
	background: #ac1700;
}

footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
}

footer .container {
	margin: 0 auto;
	padding: 15px 0;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer p {
	text-align: center;
	max-width: 1000px;
	margin: 10px auto;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.33);
}

@media (max-width: 940px) {
	.banner-content {
		background: rgba(0, 0, 0, 0.75);
	}
}

@media (max-width: 600px) {
	.banner-bg-1 {
		background: none;
	}
	.banner-title {
		font-size: 42px;
	}
	.about article table {
		font-size: 14px;
	}
	.about article {
		padding: 0;
		border-radius: 0;
		background: none;
	}
	.advantages {
		flex-direction: column;
	}
	.advantage {
		width: calc(100% - 20px);
		margin-bottom: 10px;
	}
	header .container,
	footer .container {
		flex-direction: column;
	}
	header .container img,
	footer .container img {
		margin-top: 15px;
	}
}
.slotcontent {padding:30px 0 0;display:block;width:100%;clear:both;}
.slotcontent article {border-radius:4px;overflow:hidden;text-align:center;background: rgba(255,255,255,0.07);margin-bottom:30px;padding-bottom:10px;}
a.secondary-button {
  text-align: center;
  font-weight: 700;
  background: #ff2400;
  color: #fff;text-decoration:none;
  padding: 10px 30px;
  border-radius: 30px;
}
.slotcontent article a.secondary-button {display:block;margin:10px auto;max-width:170px;padding:6px;}

.slotcontent article span {font-size:14px;}
.slotcontent article img {margin-bottom:15px;display:block;width:100%;height:auto;}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
*, :before, :after {

  box-sizing: border-box;
}
.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after {
  content: "";
  display: table;
}
.col-md-3 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .col-md-3 {
    width: 25%;float:left;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}



