body {
	margin: 0;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	color: #6c7279;
	background-color: #EEEEEE;
	overflow: hidden;
	overscroll-behavior: none !important;
}

html, body {
	overflow-x: hidden !important;
	overflow-y: auto !important;
	scroll-behavior: smooth !important;
	overscroll-behavior: none !important;
}

::-webkit-scrollbar {
	width: 10px;
	background-color: #f9f9fd;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #aaaaaa;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	border-radius: 10px;
	background-color: #eeeeee;
}

*, *:before, *:after {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0 0 10px 0;
}

/* Container */
.container {
	width: 100%;
	max-width: 1470px;
	margin: 0 auto;
	padding: 0 15px;
}

.container--top {
	width: 100%;
	max-width: 1900px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Intro */
.intro {
	height: 100vh;
	position: relative;
}

.intro:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.483);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video__media {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}

.intro__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.intro__inner {
	text-align: center;
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
}

.intro__title {
	margin: 0 0 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 65px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.1;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.635);
}

.intro__subtitle {
	margin-bottom: 60px;
	font-size: 26px;
	color: #fff;
	line-height: 1.5;
	font-weight: 300;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.483);
}

/* Social Icons */
.social_logos {
	margin-right: 2vw;
	margin-top: 5vh;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 50px;
	height: 200px;
}

.svg__icon__facebook {
	max-width: 40px;
	max-height: 164px;
	width: 100px;
	margin: auto;
}

.svg__logo__facebook {
	max-width: 200px;
	max-height: 164px;
}

.svg__facebook__border__special {
	fill: white;
	opacity: 0.7;
}

.svg__facebook {
	fill: white;
	opacity: 0.5;
}

.svg__facebook__border {
	fill: white;
	opacity: 0.5;
}

.svg__icon__facebook:hover .svg__facebook {
	fill: white;
	opacity: 1;
}

.svg__icon__facebook:hover .svg__facebook__border {
	fill: #fee597;
}

.svg__icon__facebook:hover .svg__facebook__border__special {
	fill: #fee597;
	opacity: 1;
}

/* Buttons */
.btn {
	display: inline-block;
	vertical-align: top;
	padding: 24px 60px;
	border-radius: 1px;
	font-family: inherit;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	background: none;
	border: none;
	color: white;
}

.btn--red {
	background-color: #e84545dc !important;
	color: #fff !important;
	border: none !important;
	min-width: 240px;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	border-radius: 13px !important;
}

.btn--red:hover {
	background-color: #dd3434 !important;
}

.btn--red:last-child {
	margin-left: 20px;
}

.btn--long {
        min-width: 280px;
}
@media (max-width: 1280px) {
    .intro__title {
        font-size: 56px;
    }
    .intro__subtitle {
        font-size: 22px;
    }
    .btn {
        padding: 18px 45px;
    }
}
@media (max-width: 768px) {
    .intro__title {
        font-size: 36px;
    }
    .intro__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .social_logos {
        margin-right: 1rem;
        width: 40px;
        height: auto;
    }
    .btn {
        padding: 12px 30px;
    }
    .btn--red {
        min-width: auto;
    }
    .btn--red:last-child {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .intro__title {
        font-size: 28px;
    }
    .intro__subtitle {
        font-size: 16px;
    }
    .btn {
        padding: 10px 24px;
    }
}
