/**
 * Colors
 * =========================================== */

:root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #e53935;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #e53935;
	--light: #f8f9fa;
	--dark: #343a40;
}

/**
 * Main Styles
 * =========================================== */
body {
	font-family: 'Roboto', sans-serif;
}

/**
 * Sections
 * =========================================== */
.section {
	padding-top: 70px;
	padding-bottom: 70px;
}
.section-heading {
	position: relative;
	z-index: 1;
}
@media (min-width: 768px) {
	.section {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

/**
 * Backgrounds
 * =========================================== */
.bg-center-cover {
	background-position: center;
	background-size: cover;
}
.bg-center-contain {
	background-position: center;
	background-size: contain;
}
.bg-top-center {
	background-position: top center;
}
[class*="bg-gradient-"],
[class*="bg-fill-"]{
	position: relative;
	z-index: 1;
}
[class*="bg-gradient-"]:before,
[class*="bg-fill-"]:before{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.bg-gradient-purple:before {
	background: linear-gradient( to right, rgba(0, 123, 255, 0.9), rgba(0, 246, 255, 0.9) );
}
.bg-gradient-red:before {
	background: linear-gradient( to right, rgba(255, 80, 80, 0.9), rgba(251, 130, 93, 0.9) );
	
}
.bg-fill-white:before {
	background: linear-gradient( to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9) );
}
.bg-fill-dark:before {
	background-color: rgba(21, 23, 26, 0.9);
}
.bg-light {
	background-color: #f2f2f2 !important;
}
.bg-pattern {
	background-image: url(../images/bg-pattern.png);
}

/**
 * Fonts
 * =========================================== */
.ff-montserrat {
	font-family: 'Montserrat', sans-serif;
}
.font-weight-extra-light {
	font-weight: 200;
}

/**
 * Colors
 * =========================================== */
.text-danger {
	color: var(--danger);
}
.link-red,
.link-red:hover {
	color: var(--red);
}

/**
 * Sizing
 * =========================================== */
.min-h-100 {
	min-height: 100%;
}
.mw-75 {
	max-width: 75%;
}

/**
 * Spacing
 * =========================================== */

@media (min-width: 768px) {
	.pt-md-150 {
		padding-top: 150px;
	}
	.pb-md-150 {
		padding-bottom: 150px;
	}
	.pb-md-250 {
		padding-bottom: 250px;
	}
}

/**
 * Buttons
 * =========================================== */
.btn {
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}
.btn-xl {
	font-size: 1.5rem;
	padding: .8rem 2rem;
}

/**
 * Delimiters
 * =========================================== */
.delimiter {
	position: absolute;
	width: 100%;
	overflow: hidden;
	z-index: 1;
	left: 0;
}
.delimiter-top {
	top: 0;
}
.delimiter-bottom {
	bottom: 0;
}
.delimiter-bottom > svg {
	position: relative;
	bottom: -1px;
}
.delimiter-half {
	height: 45%;
	overflow: visible;
}
.delimiter-half > svg {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}

/**
 * Dividers
 * =========================================== */
.divider {
	width: 35px;
	height: 2px;
	margin: 25px auto 32px;
	border: 0;
}

/**
 * Z-index
 * =========================================== */
.z-index-1 {
	z-index: 1;
}
.z-index-2 {
	z-index: 2;
}
.z-index-3 {
	z-index: 3;
}

/**
 * Typography
 * =========================================== */
blockquote {
	border-left: 0;
	padding: 0 20px;
	margin-bottom: 15px;
	font-style: italic;
	position: relative;
}
blockquote:before {
	content: '';
	display: block;
	left: 0;
	width: 2px;
	background-color: #e53935;
	top: 6px;
	bottom: 4px;
	position: absolute;
}
blockquote p:first-child:before {
	content: "\f10d";
	font-family: 'Font Awesome 5 Free';
	display: inline-block;
	font-size: 200%;
	line-height: 0.7;
	padding-right: 15px;
	color: #e53935;
	font-weight: 900;
}

/**
 * Lists
 * =========================================== */
.list-check,
.list-ordered {
	list-style: none;
	padding-left: 50px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.list-check > li + li,
.list-ordered > li + li {
	margin-top: 10px;
}
.list-check > li:before {
	content: "\f00c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}
.list-check > li:before,
.list-ordered > li:before {
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	margin-right: 8px;
	margin-left: -26px;
	font-size: 0.5em;
	text-align: center;
	position: relative;
}
.list-circle > li:before {
	color: #fff;
	background-color: #333;
	top: -2px;
	margin-right: 12px;
	margin-left: -30px;
	border-radius: 50%;
}
.list-danger > li:before {
	color: #e53935;
}
.list-circle.list-danger > li:before {
	background-color: #e53935;
	color: #fff;
}

/**
 * Swiper
 * =========================================== */
.swiper {
	position: relative;
}
.swiper-has-arrows {
	margin-left: 25px;
	margin-right: 25px;
}
.swiper-slide-prev,
.swiper-slide-next {
	opacity: .3;
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin-top: -25px;
	background: #fff;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .12);
	border-radius: 50%;
	text-align: center;
	color: var(--red);
	transition: all .3s;
}
.swiper-button-prev {
	left: -25px;
}
.swiper-button-next {
	right: -25px;
}
.swiper-button-prev:before,
.swiper-button-next:before{
	content: '';
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 600;
	vertical-align: 3px;
	font-size: 22px;
}
.swiper-button-prev:before {
	content: '\f104';
}
.swiper-button-next:before {
	content: '\f105';
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--red);
	color: #fff;
}
.swiper-button-next:focus,
.swiper-button-prev:focus {
	outline: none;
}
.swiper-footer {
	position: relative;
}
.swiper-pagination {
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	padding: 0 10px;
	width: auto;
	min-width: 180px;
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	background-color: #fff;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .12);
	display: inline-block;
	z-index: 9;
	margin-top: -25px;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin-left: 5px;
	margin-right: 5px;
}
.swiper-pagination-bullet-active {
	background: var(--red);
}

/**
 * Video
 * =========================================== */
.video-container {
	position: relative;
}
.video-container:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(21, 23, 26, 0.5);
	transition: all 0.3s;
}
.video-container:hover:before {
	background-color: rgba(21, 23, 26, 0);
}
.video-container .video-button {
	display: block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) scale(1);
	opacity: .8;
	background-color: var(--red);
	border-radius: 50%;
	color: #fff;
	padding-left: 3px;
	box-shadow: 0 0 0;
	transition: all .3s;
}
.video-container .video-button:before {
	content: '\f04b';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	
}
.video-container .video-button:hover {
	text-decoration: none;
	opacity: 1;
	box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.4);
}

/**
 * Price Table
 * =========================================== */
.price-list-item + .price-list-item {
	margin-top: 70px;
}
.price-list-table {
	list-style: none;
	padding-left: 0;
}
.price-list-table .price {
	font-weight: 200;
	font-size: 2.25rem;
}
.price-list-table .price-secondary {
	font-weight: 300;
}
.price-list-table > li {
	padding: 10px 30px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.price-list-table > li + li {
	margin-top: 15px;
}
.price-list-heading {
	position: relative;
	margin-bottom: 20px;
}
.price-list-heading .badge {
	position: absolute;
	font-size: 2rem;
	left: -65px;
	top: -10px;
	font-weight: 200;
	height: 50px;
	min-width: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0 5px;
}

/**
 * Prizes
 * =========================================== */
.prize-item {
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	height: 400px;
}
.prize-image {
	position: absolute;
	top: 80px;
	left: 15px;
	bottom: 40px;
	right: 15px;
	opacity: 1;
	transition: all 0.3s;
}
.prize-item:hover .prize-image {
	opacity: .1;
	margin-top: -30px;
}
.prize-image > img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
}
.prize-place {
	position: absolute;
	z-index: 9;
	min-width: 200px;
	top: -25px;
	height: 50px;
	line-height: 50px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 25px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .3);
	text-transform: uppercase;
	font-weight: 900;
	font-family: Montserrat;
	font-size: 22px;
}
.prize-name {
	position: absolute;
	top: 30px;
	width: 100%;
	text-align: center;
	z-index: 2;
	font-size: 36px;
	font-family: Montserrat;
	transition: all .3s;
}
.prize-item:hover .prize-name {
	opacity: 0;
}
.prize-hover {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 5px;
	opacity: 0;
	transition: all .3s;
	overflow: hidden;
}
.prize-item:hover .prize-hover {
	opacity: 1;
}
.prize-second-name {
	width: 100%;
	font-size: 36px;
	text-align: center;
	font-family: Montserrat;
	padding-left: 15px;
	padding-right: 15px;
}
.prize-hover-label {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 10px;
	font-size: 12px;
	color: #d0cece;
}
.prize-money {
	display: block;
	font-family: Montserrat;
	font-weight: 200;
	font-size: 3.5rem;
}

/**
 * Social Menu
 * =========================================== */
.social-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 20px;
}
.social-menu:before,
.social-menu:after {
	content: '';
	display: table;
	clear: both;
}
.social-menu > li:first-child {
	margin-left: 0;
}
.social-menu > li {
	float: left;
	margin: 5px;
}
.social-menu > li > a {
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
}
.social-menu-lg {
	font-size: 30px;
}

.social-menu.social-menu-light > li > a:hover .fa, .social-menu.social-menu-light > li > a:hover .fab {
	background-color: #e53935;
	color: #fff;
}
.social-menu.social-menu-light > li > a .fa, .social-menu.social-menu-light > li > a .fab {
	background-color: #fff;
	color: #212121;
}
.social-menu-circle > li > a > .fa, .social-menu-circle > li > a > .fab {
	border-radius: 50%;
}
.social-menu .fa-vk {
	background-color: #45668e;
}
.social-menu .fa,
.social-menu .fab {
	display: block;
	background-color: #333;
	height: 32px;
	width: 32px;
	line-height: 32px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.social-menu-lg .fa, .social-menu-lg .fab {
	height: 50px;
	width: 50px;
	line-height: 50px;
}
@mediafdfdfsdf