/* ---------------- Google fonts ------------------ */

/* Anton */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* League Spartan */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');





/* ---------------- Basic css ------------------ */

html {
	/* 1rem = 10px */
	font-size: 0.73vw;
}

:root {

	/* Fonts */
	--font-anton: "Anton", sans-serif;
	--font-league: "League Spartan", sans-serif;

	/* color */
	--green-color: #c1ff72;
	--white-color: #ffffff;
	--black-color: #000000;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
	color: inherit;
	display: inline-block;
}

li {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-family: var(--font-league);
	background: Linear-gradient(90deg, #000000, #737373);
}


/* Heading */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-anton);
}



/* ---------------- Hero Section ------------------ */

.hero_section {
	background-image: url('../img/hero-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	padding: 4rem 0 1.5rem;
}

.hero_wrapper .logo {
	max-width: 24rem;
	width: 100%;
}

.hero_wrapper .hero_title {
	font-size: 16rem;
	font-weight: 400;
	line-height: 1;
	color: var(--white-color);
	margin-top: 5rem;
	font-style: italic;
	text-shadow: rgba(0, 0, 0, 0.325) 0px 5.0728px 21.5594px;
}

.hero_wrapper span {
	color: transparent;
	-webkit-text-stroke: 0.6rem #c1ff72;
}

.list_group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 5rem;
}

.list_group li {
	color: var(--green-color);
	font-size: 3rem;
	line-height: 1.4;
	text-transform: uppercase;
	font-family: var(--font-anton);
	font-weight: 400;
	text-shadow: rgba(0, 0, 0, 0.325) 0px 5.0728px 21.5594px;
}

.social_links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding-top: 2rem;
}

.social_links a {
	display: block;
	width: 4rem;
}

.social_links a:hover {
	transform: scale(1.1);
}

.social_links a img {
	width: 100%;
}

.contact_list_group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 23rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 6rem;
}

.contact_list_group a {
	color: var(--white-color);
	font-size: 1.9rem;
	line-height: 1.4;
	font-weight: 400;
	font-family: var(--font-anton);
	position: relative;
}

.contact_list_group a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0.2rem;
	background: #fff;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.contact_list_group a:hover::before {
	width: 100%;
}


/*--------- navigation Section ----------- */

.navigation_section {
	padding: 9rem 0 1rem;
}

.nav_links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 8rem;
}

.nav_links a {
	font-size: 3rem;
	line-height: 1.4;
	font-family: var(--font-anton);
	font-weight: 400;
	color: var(--white-color);
	text-transform: uppercase;
	position: relative;
}

.nav_links a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0.2rem;
	background: #fff;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.nav_links a:hover::before {
	width: 100%;
}

.navigation_wrapper h2 {
	font-size: 7.5rem;
	line-height: 1.07;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--green-color);
	font-style: italic;
}

.navigation_wrapper .img1 {
	width: 100%;
}

.navigation_wrapper .img2 {
	width: 100%;
	margin-top: 11.6rem;
}

/* ---------welcome section---------- */

.welcome_section {
	padding: 10rem 0 7.5rem;
}

.welcome_content {
	padding-left: 4rem;
	padding-right: 7rem;
	position: relative;
}

.welcome_content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: calc(100% - 1.2rem);
	width: 0.3rem;
	background: #c1ff72;
}

.welcome_content .title_sm {
	font-size: 5.6rem;
	line-height: 1;
	font-weight: 400;
	color: var(--white-color);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.welcome_content .title_sm span {
	color: transparent;
    -webkit-text-stroke: 0.15rem #c1ff72;
}

.welcome_content .subtitle {
	font-size: 2.7rem;
	line-height: 1.1;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 11.5rem;
	text-transform: capitalize;
	font-family: var(--font-league);
}

.welcome_content .title_xl {
	font-size: 12.5rem;
	line-height: 1.07;
	font-weight: 400;
	color: var(--white-color);
	text-transform: uppercase;
}
.welcome_content .title_xl .stroke {
	display: inline-block;
	color: transparent;
    -webkit-text-stroke: 0.6rem #fff;
	position: relative;
	z-index: 1;
}

.welcome_content .title_xl .green_color {
	color: var(--green-color);
	display: inline-block;
	margin-left: 5rem;
	font-size: 16rem;
	-webkit-transform: translateY(-4.8rem);
	    -ms-transform: translateY(-4.8rem);
	        transform: translateY(-4.8rem);
}

.welcome_content .texts p {
	color: #fff;
	font-size: 1.9rem;
	line-height: 1.07;
	font-weight: 800;
	text-transform: uppercase;
	max-width: 53rem;
	margin-bottom: 2.4rem;
	text-align: justify;
}

.welcome_img .img1 {
	width: 100%;
	width: 38rem;
	display: block;
	margin-left: auto;
	margin-bottom: 1.3rem;
}

.welcome_img .img2 {
	width: 100%;
	width: 38rem;
	display: block;
	margin-left: auto;
}

/*------------ friendly section ------------*/

.friendly_section {
	padding: 8rem 0;
	background-image: url('../img/friendly-section-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.friendly_section .inner_section {
	padding: 0 4rem;
}

.content_box p {
	font-size: 1.9rem;
	line-height: 1.07;
	font-weight: 700;
	color: var(--white-color);
	text-transform: uppercase;
	text-align: justify;
}

.content_box p:not(:last-child) {
	margin-bottom: 3rem;
}

.content_box p .text_green {
	color: var(--green-color);
}

.text_box {
	margin-top: 6.5rem;
	margin-bottom: 5.5rem;
	background-color: var(--white-color);
	padding: 2.8rem 1.5rem;
	text-align: center;
}

.text_box p {
	font-size: 2.2rem;
	line-height: 1.07;
	font-weight: 700;
	color: var(--black-color);
	text-transform: uppercase;
}

.text_box p:not(:last-child) {
	margin-bottom: 1.5rem;
}

.Yackos_box p {
	font-size: 1.8rem;
	line-height: 1.07;
	font-weight: 700;
	color: var(--white-color);
	text-transform: uppercase;
}

.Yackos_box h4 {
	font-size: 3.6rem;
	line-height: 1.07;
	font-weight: 400;
	color: var(--green-color);
	text-transform: uppercase;
	margin-bottom: 5rem;
}

.Yackos_box .text_sm {
	font-size: 1.3rem;
}


/* -------- houserules section ---------- */

.houserules_section {
	padding-top: 6.3rem;
}

.houserules_section .inner_section{
	padding-left: 4rem;
}

.houserules_wrapper h3 {
	font-size:6rem;
	line-height: 1.07;
	font-weight: 400;
	font-family: var(--font-anton);
	color: var(--white-color);
	text-transform: uppercase;
}

.houserules_wrapper .top_title {
	margin-bottom: 9.6rem;
	color: transparent;
	-webkit-text-stroke: 0.2rem var(--green-color);
}

.texts_box {
	margin-bottom: 11.6rem;
}

.houserules_wrapper li {
	font-size: 1.9rem;
	line-height: 1.07;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 2rem;
}



/* ------------opening section------------- */

.contact_section .title{
	margin-bottom: 3.7rem;
	font-size: 6rem;
    line-height: 1.07;
    font-weight: 400;
    font-family: var(--font-anton);
    color: var(--white-color);
    text-transform: uppercase;
	padding-left: 4rem;
}

.contact_section .inner_section {
	padding-left: 4rem;
}

.contact_box {
	background: var(--green-color);
	padding: 2.2rem 0 1.3rem;
}

.contact_box .contact a,
.contact_box .contact p {
	font-size: 2.4rem;
	line-height: 1;
	font-weight: 400;
	font-family: var(--font-anton);
	color: var(--black-color);
	text-transform: uppercase;
}

.contact_box .contact a:hover {
	text-decoration: underline;
}

.contact_box .number{
	margin-bottom: 1rem;
}

.contact_box .info {
	margin-bottom: 3.1rem;
}


/* ------------opening section------------- */

.opening_section {
	background-image: url(../img/opening-section-bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 15rem 0 100rem;
}

.opening_section .inner_section{
	padding-left: 4rem;
}

.opening_wrapper h3 {
	font-size: 6rem;
	line-height: 1.4;
	font-weight: 400;
	font-family: var(--font-anton);
	text-transform: uppercase;
	-webkit-text-stroke: 0.2rem var(--green-color);
	margin-bottom: 0.9rem;

}

.clock_box {
	background: var(--white-color);
	padding: 1rem 1.5rem;
	margin-bottom: 0.4rem;
}

.clock_icon img {
	width: 100%;
	margin-right: 1rem;
}

.clock_box p,
.clock_box li {
	font-size: 1.9rem;
	line-height: 1.4;
	font-weight: 400;
	font-family: var(--font-anton);
	color: black;
	text-transform: uppercase;
}

.col2 {
	margin-right: 2rem;
}