<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main */

html,body {height:100%;}
* {
	margin:0;
	border:0;
	padding:0;
}
body {
	background: #1f1f1f;
	color: #fff;
    font-family: 'Montserrat', sans-serif;
	font-size:16px;
	line-height: normal;
	-webkit-font-smoothing: antialiased;
}
img,div {display:block;}

/* Appearance Defaults */

.cover {
	background-size: cover;
	background-position: center center;
}
.img_cover {
	align-content: stretch;
	align-items: stretch;
	position: relative;
}
.img_cover img {
	position: absolute;
	-o-object-fit: fill;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* Structure */

.heading,.heading_bottom {
	height: calc(100vh - 86px);
	position: relative;
    background-position: bottom;
    width: 100%;
}
.heading .vertical_center {
    width: 100%;
}
.heading:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);       
}
.heading:after {
    content: " ";
    width: 100%;
    height: 20%;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0) 100%);       
}
.heading_bottom:after {
    content: " ";
    width: 100%;
    height: 40%;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);       
}

.heading_white_grad:after {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);      
    height: 60%;
}
.heading_black_grad:after {
    background: rgb(5,3,1);
    background: linear-gradient(0deg, rgba(5,3,1,1) 0%, rgba(5,3,1,0.45) 50%, rgba(5,3,1,0) 100%);      
}
.heading_black_grad_rev:after {
    background: rgb(5,3,1);
    background: linear-gradient(180deg, rgba(5,3,1,1) 0%, rgba(5,3,1,0.45) 50%, rgba(5,3,1,0) 100%);      
}
.black_grad_top {
    background: rgb(5,3,1);
    width: 100%;
    background: linear-gradient(180deg, rgba(5,3,1,1) 0%, rgba(5,3,1,0.45) 70%, rgba(5,3,1,0) 100%);      
}

.sponsorship_heading {
    height: 75vh;
}
.no_grad_heading:before {
    background: none; 
}
.sponsorship_heading:after {
    height: 100%;
}

.about_heading {
    height: 95vh;
    background-size: 900px;
    background-position: center center;
    background-repeat: no-repeat;
    background-position-y: calc(100% - -100px);
    background-position-x: calc(100% - 200px);
}

.sponsorship_large_area {
    height: 120vh;
}
.sponsorship_large_area::before {
    background: none; 
}
.sponsorship_large_area:after {
    height: 100%;
}

.header_space {
    height: 0;
    padding-top: 200px;
}

.newsroom_heading {
    padding-top: 90px;
    padding-bottom: 80px;
}
.newsroom_title_content a {
    position: relative;
    z-index: 100;
    color: #fff;
}
.newsroom_title_content h1 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
}
.newsroom_title_content a:hover {
    color: #1d6523;
}

.fullwidth_heading {
    padding-bottom: 5%;
}
.fullwidth_heading p {
    margin-top: 2%;
}

.content_100 {
    background: #fff;
    color: #1f1f1f;
	width: 100%;
}
.content_in {
	width: calc(100% - 15%);
	height: auto;
	margin: 0 auto;
	position: relative;
}
.content_in_5 {
	width: calc(100% - 10%);
	height: auto;
	margin: 0 auto;
	position: relative;
}

.header_content {
    width: calc(100% - 7.5%);
    height: auto;
	margin: 0 auto;
	position: relative;
    justify-content: space-between
}

.full_content {
    height: calc(100vh - 40px);
	position: relative;
}
.full_content .content_in {
    margin-top: 80px;
}

.full_width_img img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    object-position: 50% 50%;
    aspect-ratio: 2 / 1;
}

.image_block_image {
    position: relative;
}
.image_block_image img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    object-position: 50% 50%;
    aspect-ratio: 1;
}

.overflow {
	overflow: hidden;
	position: relative;
}

.flex_grid {
	display: -ms-grid;
	display: grid;
}

.flex_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.vert_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flex_center {
    justify-content: center;
}

.vertical_center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.space_between_col {
    align-content: space-between; 
    flex-direction: column;
}

.space_between_cen {
    justify-content: space-between;
    align-items: center;
}

.space_between {
    justify-content: space-between;
}

/* Header */

header {
    padding-top: 40px;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.logo {
    width: 95px;
}

.header_invert .logo_color {
    filter: invert(100%);
}
.header_menu_black .fas {
  background: #e2e2e2;
}

.header_green .header_right button {
    background-color: #1f1f1f;
}
.header_green .header_right button:hover {
    background-color: #050301;
}



.header_right button {
    height: 44px;
    border-radius: 22px;
    padding: 0 30px;
    z-index: 400;
    position: relative;
    margin-right: 20px;
}


.overlay_top {
    width: 100%;
    position: absolute;
    top: 40px;
}

.overlay_top_content {
    position: absolute;
    right: 0;
    top: 36px;
}

.pagination {
    height: 60px;
    width: 100%;
    padding-top: 10px;
    display: flex;
    justify-content: center;
}
.pagination-prev, .pagination-next {
    padding-top: 15px;
    height: 35px;
    width: 49%;
    display: block;
    background-color: #1f1f1f;
    text-align: center;
    color: #848484;
}
.pagination-prev {
    margin-right: 1px;
}
.pagination a {
    background-color: #1d6523;
    color: #fff;
}

/* Footer */

.footer_main {
    display: inline-flex;
    padding: 80px 0;
}

.footer_lower {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    gap: 20px;
}

.footer_team h4 {
    font-size: 18px;
    line-height: 21px;
}

.footer_menu ul {
    column-count: 2;
    list-style-type: none;
}
.footer_menu li {
    line-height: 30px;
}
.footer_menu li:first-of-type {
    display: none;
}
.footer_contact ul {
    column-count: 1;
    list-style-type: none;
    font-size: 13px;
}
.footer_contact li {
    line-height: 30px;
}

.footer_link a {
    text-decoration: none;
    font-weight: inherit;
    color: inherit;
}

footer a {
    opacity: 1;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
footer a:hover {
    opacity: 0.5;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

.foot_l {
    width: 40%;
}
.tag a {
    text-decoration: none;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
}

footer .logo {
    width: 30px;
}


/* Style */

h1,h2,h3,h4,h5, h6 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

h1 {
 font-size: 60px;
 line-height: 55px;
}
h2 {
 font-size: 45px;
 line-height: 40px;
}
h3 {
    font-size: 36px;
    line-height: 36px;
}
h4 {
    font-size: 24px;
    line-height: 30px;
}
h5 {
    font-size: 24px;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    font-weight: 400;
}
h6 {
    font-size: 20px;
    line-height: 24px;
}

.about_heading .vertical_center {
    width: 100%;
}
.about_heading h1 {
    font-size: 50px;
    line-height: 50px;
}

.big_title h1 {
    font-size: 80px;
    line-height: 70px;
}
.big_title h5 {
    margin-top: 10px;
}

.news_article h2 {
    font-size: 40px;
    line-height: 40px;
}

.content_page {
    padding: 60px 0;
}
.content_page h1 {
    font-size: 50px;
    line-height: 45px;
    margin-bottom: 10px;
}
.content_page h3 {
    font-size: 21px;
    line-height: 21px;
    margin-top: 20px;
}
.content_page p {
    font-size: 12px;
    line-height: 18px;
}

p{font-family: 'Montserrat', sans-serif;font-size: 15px;line-height: 21px; text-transform: none;}
a {text-decoration: none;color: #1d6523; font-weight: inherit;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.a_underline {text-decoration: underline;color: #1d6523; font-weight: 700; text-transform: uppercase;}

a:hover {
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

.f_12 {
    font-size: 12px;
    line-height: 18px;
}
.f_14 {
    font-size: 14px;
    line-height: 18px;
}
.f_15 {
    font-size: 15px;
    line-height: 20px;
}
.f_16 {
    font-size: 16px;
    line-height: 24px;
}
.f_18 {
    font-size: 18px;
    line-height: 18px;
}
.f_30 {
    font-size: 30px;
    line-height: 30px;
}

.uppercase {
    text-transform: uppercase;
}
.uppercase_100,.uppercase_100 a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.bold, .bold a {
    font-weight: 700;
}

.synco {
    font-family: 'Syncopate', sans-serif;
}
.mont {
    font-family: 'Montserrat', sans-serif; 
}

.f_light_grey {
    color: #848484;
}
.f_green {
    color: #1d6523;
}
.f_white {
    color: #fff;
}
.f_black {
    color: #050301 !important;
}

.text_center {
    text-align: center;
}
.center {
	margin: 0 auto;
}

.text h3 {
    margin-bottom: 10px;
}

.f_green a:hover {
    color: #1f1f1f;
}

.dark_grey {
    background-color: #1f1f1f; 
    color: #fff;
}
.white {
    background-color: #fff;
}
.black {
    background-color: #050301;
    color: #fff;
}
.light_grey {
    background-color: #f3f3f3;
}
.green {
    background-color: #1d6523;
}

.low_news_content a:hover {
    opacity: 0.5;
}

.partnership_tag {
    position: absolute;
    width: auto;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    bottom: 20px;
    left: 20px;
    text-transform: uppercase;
}

.tagbox_content {
    padding: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
    font-size: 14px;
    line-height: 18px;
}
.tagbox_content button {
    margin-top: 10px;
}

.upper_tag, .upper_tag a {
    font-size: 16px;
    text-transform: uppercase;
    color: #1d6523;
    letter-spacing: 1px;
}
.upper_tag a:hover {
    color: #050301;
}
.black .upper_tag a:hover,.dark_grey .upper_tag a:hover, .green a:hover {
    color: #fff;
}

/* Buttons */

.buttons {
    margin-top: 20px;
}
.big_content .buttons {
    margin-top: 30px;
}
.buttons button:first-of-type {
    margin-right: 10px;
}
button {
    text-transform: uppercase;
    background: #1d6523;
    color: #fff;
    height: 34px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 17px;
    padding: 0 25px;
    cursor: pointer;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
button:hover {
    background-color: #1f1f1f;
    color: #fff;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

.dark_grey button:hover {
    background-color: #050301;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.black button:hover {
    background-color: #1f1f1f;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

.button_grey {
    background: #ededed;
    color: #1f1f1f;
}

.wide_button {
    padding: 0 50px;
}

.button_small {
    font-size: 12px;
    padding: 0 15px;
    height: 26px;
}

/* Widths */

.width_100 {
	width: 100%;
}
.width_90 {
	width: 90%;
}
.width_80 {
	width: 80%;
}
.width_75 {
	width: 75%;
}
.width_70 {
	width: 70%;
}
.width_65 {
	width: 65%;
}
.width_60 {
	width: 60%;
}
.width_50 {
	width: 50%;
}
.width_50 img {
    width: 100%;
    display: block;
}
.width_48 {
	width: 48%;
}
.width_45 {
	width: 45%;
}
.width_40 {
	width: 40%;
}
.width_35 {
	width: 35%;
}
.width_33 {
	width: 33.333333%;
}
.width_30 {
	width: 33.333333%;
}
.width_25 {
	width: 25%;
}

.width_content {
    width: 90%;
    margin-left: 10%;
}
.mirror_content .width_content {
    width: 90%;
    margin: 0 10% 0 0;
}

.big_content .width_content {
    width: 80%;
    margin: 0 10%;
    padding: 5% 0;
    box-sizing: border-box;
    position: relative;
}

.big_testimonial_content {
    width: 80%;
    height: 100%;
    margin: 0 10%;
    padding: 10% 0;
    box-sizing: border-box;
    position: relative;
}

.big_content .sponsor_square, .big_testimonial_content .sponsor_squares  {
    height: 100px;
}
.big_testimonial_content .sponsor_squares  {
    left: 0;
    right: auto;
}

.padding_120 {
    padding: 120px 0;
}
.padding_80 {
    padding: 80px 0;
}
.padding_60 {
    padding: 60px 0;
}
.padding_40 {
    padding: 40px 0;
}

/* Layout */

.full_width_content ul {
    column-count: 3;
    list-style-type: none;
    margin-top: 30px;
}

.width_content ul {
  list-style-type: none;
  margin-top: 20px;
}

.width_content li, .green li {
    text-transform: uppercase;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
    list-style: none;
}

.full_width_content li {
    font-size: 16px;
    line-height: 34px;
}

.green li a {
    color: #1f1f1f;
    line-height: 35px;
}
.about_heading ul {
    margin-top: 20px;
}

.width_content li:before, .about_heading li:before {
    content: '';
    display: inline-block;
    height: 3px;
    width: 26px;
    margin-right: 16px;
    margin-bottom: 4px;
    background-image: url(/images/bullet.svg);
}

.green li:before {
    background-image: url(/images/bullet-dark.svg);
}


.margin_bottom_10 {
    margin-bottom: 10px;
}
.margin_bottom_20 {
    margin-bottom: 20px;
}

.quote_block {
    padding: 6% 0;
    position: relative;
}
.quote_block_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.2;
    background-position: center bottom;
    background-size: cover;
}
.quote_block .content_in {
    z-index: 100;
}

.quote_block h3 {
    margin-bottom: 20px;
}

.sidetitle_content h3 {
    font-size: 30px;
    line-height: 30px;
}
.sidetitle_content .flex_box {
    justify-content: space-between;
}

.wide_content .flex_box {
    justify-content: space-between;
}

.wide_content .grid {
    grid-template-columns: repeat(2, 1fr);
    gap:1px;
    font-size: 12px;
    line-height: 14px;
}
.wide_content .grid div {
    background-color: #f3f3f3;
    padding: 20px 20px;
    display: flex;
    align-items: center;
}

.title_content p {
    margin-top: 10px;
}

/* Images */

.two_one_image {
	width: 100%;
	padding-bottom: 50%;
	height: 0;
    position: relative;
}
.four_three_image {
	width: 100%;
	padding-bottom: 75%;
	height: 0;
    position: relative;
}
.newsroom_image {
    width: 100%;
	padding-bottom: 62%;
	height: 0;
    position: relative;
}
.four_one_image {
	width: 100%;
	padding-bottom: 25%;
	height: 0;
    background-position: center;
    position: relative;
}
.three_two_image {
	width: 100%;
	padding-bottom: 66.666666%;
	height: 0;
    position: relative;
}
.three_one_image {
	width: 100%;
	padding-bottom: 33.333333%;
	height: 0;
    position: relative;
}
.two_one_image img, .four_three_image img, .three_one_image img,, .three_two_image img {
	width: 100%;
	height: 100%;
}

.greyscale {
	filter: grayscale(50%);
}

/* Lower Blocks */

.lower_block {
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    height: 300px;
    width: 50%;
    color: #fff;
    background-position: top;
    position: relative;
    background-color: #1f1f1f;
}
.lower_block h4 {
    font-size: 36px;
    line-height: 40px;
}
.lower_block_text .uppercase_100 {
    font-size: 14px;
}
.lower_block_text {
    z-index: 1;
    padding-left: 10%;
    width: 70%;
}
.background_image {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1;
    background-position: center;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

.lower_block .background_image:hover {
    opacity: 0.8;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}


/* Social Icons */

.social_icons {
    margin-top: 10px;
}
.social_icon {
    width: 60px;
    height: 40px;
    border-right: #ededed 1px solid;
    border-top: #ededed 1px solid;
    border-bottom: #ededed 1px solid;
    position: relative;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.social_icon a {
    width: 100%;
    height: 100%;
    display: flex;
}
.social_icon a img {
    margin: auto;
    display: block;
    width: 35%;
}
.social_icon:first-of-type {
    border-left: #ededed 1px solid;
}

footer .social_icon {
    background-color: #fff;
    border-right: #1f1f1f 1px solid;
    border-top: #1f1f1f 1px solid;
    border-bottom: #1f1f1f 1px solid;
    width: 50px;
}
footer .social_icon:first-of-type {
    border-left: #1f1f1f 1px solid;
}

.black .social_icon:hover {
    background-color: #1f1f1f;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.social_icon:hover {
    background-color: #ededed;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

footer .social_icon a {
    opacity: 1;
}
footer .social_icon:hover {
    background-color: #1d6523;
}

/* Sponsor Elements */

.sponsor_squares {
    position: absolute;
    height: 200px;
}
.sponsor_square {
    height: 100px;
    padding: 4%;
    width: 180px;
    position: relative;
    box-sizing: border-box;
}

.sponsor_square img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or object-fit: contain; */
}

.sponsor_blocks_content .flex_grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5%;
}
.sponsor_blocks_content .sponsor_block {
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    position: relative;
    background-position: top center !important;
}
.sponsor_blocks_content .sponsor_squares {
    width: 70%;
    left: 50%;
    height: 16%;
    transform: translateX(-50%);
}
.sponsor_blocks_content .sponsor_square {
    height: 100%;
    padding: 8% 5%;
}

.home_slider .sponsor_squares {
    right: 0;
    top: 50%;
    height: auto;
    transform: translateY(-45%);
}
.home_slider .sponsor_square {
    padding: 12%;
}

.big_testimonial .sponsor_squares {
    right: 0;
    bottom: 0;
}
.big_testimonial {
    position: relative;
}

.sponsor_blocks_content {
    padding: 0 10px 10px;
    box-sizing: border-box;
}

/* Home */

.home_heading .vertical_center {
    z-index: 1000;
}

.viewall a:hover {
    color: #1f1f1f;
}

.cat_line {
    width: 50px;
    height: 3px;
    background: #1d6523;
    float: left;
    margin-top: 7px;
    margin-right: 20px;
}

.heading_content {
    margin-top: 40px;
    z-index: 100;
}
.heading_content h5 {
    font-size: 16px;
    line-height: 21px;
    margin-top: 20px;
}
.home_heading h1 {
    font-size: 80px;
    line-height: 70px;
}
.home_heading h5 {
    margin-bottom: 15px;
    margin-top: 0;
}


#accordion h4 {
    font-size: 30px;
    line-height: 30px;
    color: #1f1f1f;
    margin-top: 4%;
    cursor: pointer;
}
#accordion h4:first-of-type {
    margin-top: 0;
}
#accordion li {
    font-size: 13px;
    line-height: 16px;
    margin-top: 10px;
}
#accordion ul {
    column-count: 1;
}
.ui-accordion-header-active {
    color: #1d6523 !important;
}

.image_credit {
    position: absolute;
    bottom: 5px;
    right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px; line-height: 11px;
    opacity: 0.5;
    z-index: 2000;
    color: white;
}
.top_credit {
    bottom: initial;
    right: initial;
    top: 5px;
    left: 10px;
}
.image_credit_inline {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px; line-height: 11px;
    opacity: 0.75;
    margin-top: 5px;
}

.clients {
    grid-template-columns: repeat(7, 1fr);
    padding: 0 5%;
}
.leagues {
    grid-template-columns: repeat(8, 1fr);
}

.clients div {
    margin: 0 auto;
}
.clients a {
    margin: 0 auto;
}

.clients div img {
    max-height: 120px;
    transition: 0.3s;
    width: 60%;
    margin: 0 auto;
}

.leagues div img {
    width: 60%;
}


.fact_block {
    width: fit-content;
    margin-top: 5%;
    padding: 2%;
    font-weight: 700;
    text-transform: uppercase;
}
.fact_block .small_text {
    font-size: 11px;
    font-weight: 400;
}

.stripe {
    background: #e2e2e2;
    width: 100%;
    height: 1px;
    float: left;
    position: relative;
}
.stripe svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%) rotate(180deg);
}
.stripe svg path {
    stroke: #e2e2e2;
    fill: #fff;
    stroke-width: 1px;
    stroke-linecap: butt;
    transform: translate(0, 2px);
}

/* Sponsorship */

.sponsorship_choices {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 6%;
}
.sponsorship_choice {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.sponsorship_choice:last-of-type {
    border-bottom: 0;
}

.sponsorship_large_area .title_content {
    z-index: 100;
    position: relative;
}

.sponsorship_heading .heading_content {
    width: 80%;
    margin-top: 5%;
}

.choosing_content {
    padding-top: 7%;
    position: relative;
}
.choosing_content .black_grad_top {
    padding-bottom: 200px;
}

/* Contact */


.contact_content {
    color: #1f1f1f;
    height: calc(100vh - 200px);
}

.contact_group {
    margin-top: 4%;
}

.contact_social {
    margin-top: 6%;
}


/* News */

.category_menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.category_menu li {
    padding: 0 15px;
}

.category_link {
    display: block;
    z-index: 99;
}
.category_link a {
    text-decoration: none;
    font-weight: inherit;
    color: inherit;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.category_link a:hover {
    text-decoration: none;
    font-weight: inherit;
    color: #1d6523;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}


.news_article {
    border-bottom: 1px #050301 solid;
}
.news_article_home {
    border-bottom: none;
}

.news_article_heading {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}
.news_article_heading img {
    width: 100%;
}


.news_article_content .news_heading_image {
    margin-bottom: 4%;
}

.news_article_content {
    border-bottom: #050301 1px solid;
}

.article_width {
    width: 90%;
    margin: 0 auto;
}

.article_content h1 {
    font-size: 30px;
    line-height: 36px;
    margin-top: 30px;
}
.article_content h2 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 40px;
}
.article_content h3 {
    font-size: 18px;
    line-height: 22px;
    margin-top: 40px;
}

.article_content p {
    margin: 25px 0;
    line-height: 26px;
}
.article_content p:first-of-type {
    margin: 0 0 20px;
}
.article_content p:last-of-type {
    margin: 20px 0 0;
}

.article_content img {
    width: 100%;
    margin-bottom: 30px;
}

.article_content ul li {
    margin-left: 20px;
    font-weight: 700;
}
.article_content ol li {
    margin-left: 25px;
    font-weight: 700;
}

.article_title {
    font-size: 50px;
    line-height: 45px;
}

.note-tags li {
    list-style: none;
    padding: 5px;
    text-transform: uppercase;
    background-color: #050301;
    font-size: 12px;
    letter-spacing: 0.1em;
}
.note-tags {
    margin-top: 30px;
}

.accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    font-size: 18px;
    border-radius: 0;
    display: block;
    height: auto;
    background-color: #1f1f1f;
    border-bottom: #050301 1px solid;
}
.active, .accordion:hover {
    background-color:;
}
.panel {
    display: none;
    overflow: hidden;
}


/* About */

.about_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: space-between;
}
.stats_4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.stats_4 .uppercase_100 {
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
}

.image_blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background-color: #050301;
    width: 100%;
}

.logolist {
    margin-top: 50px;
}

/* Team */

.team_members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.team_member {
    border-right: #e2e2e2 solid 1px;
    border-bottom: #e2e2e2 solid 1px;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 8%;
}

.team_email {
    margin-top: 10px;
}

/* What We Do */

.what_we_do_heading h1 {
    font-size: 36px;
    line-height: 36px;
}

.blocks_50_50 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.block_50_50 {
    display: block;
}

.title_bottom {
    position: absolute;
    width: 100%;
    bottom: 8%;
    z-index: 5;
}


/* Clients */

.featured_client_container {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}
.featured_client {
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
    position: relative;
}
.featured_client_logo {
    width: 140px;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 5%;
}

.featured_client_logo img {
    width: 100%;
}

.client_container {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
}
.client_logo {
    width: 100%;
    height: 180px;
    padding: 10% 25%;
    position: relative;
    box-sizing: border-box;
}

.client_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or object-fit: contain; */
}

/* Menu */

.menu_container {
    width: 100vw;
    position: relative;
  }
  
  
  .menu_overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    color: #fff;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transition 0.5s ease;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .list {
    position: relative;
    top: 50%;
    list-style: none;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-50%);
    width: fit-content;
    margin-left: 10%;
  }
  
  .list li {
    padding: 5px 0;
  }
  
  .list li::before {
  content: none;
  display: none;
  height: auto;
  width: auto;
  margin:0;
  background-image: none;
  }
  
  .list a {
    font-size: 44px;
    text-decoration: none;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
    font-weight: 700;
  }
  
  .list a:hover {
    color: #1d6523;
  }
  
  #menuBtn {
    display: none;
  }
  
  .landing_page {
    max-height: 100vh;
    height: 100%;
    width: 100%;
    position: relative;
  }
  
  .menu {
    position: absolute;
    right: 0;
    top: 36px;
  }
  
  .fas {
    font-size: 1.6rem;
    color: #1f1f1f;
    height: 34px;
    width: 44px;
    padding-top: 10px;
    background: #FFF;
    border-radius: 22px;
    text-align: center;
    cursor: pointer;
    display: block;
    transition: background-color 0.4s ease;
    transition: color 0.4s ease;
  }
  
  .fas:hover {
    color: #1d6523;
  }
  
  .menu_overlay .fas {
    font-size: 1.6em;
    z-index: 100;
    color: #fff;
    background: #1d6523;
    
  }
  .menu_overlay .fas:hover {
    color: #fff;
  }
  
  .side_text {
    height: 10vh;
    width: 30%;
    color: #c94b4b;
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-shadow: 0 0 1px #111;
    padding: 10px;
    font-size: 16px;
    color: #4b134f;
  }
  
  .main_text {
    color: #c94b4b;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 1px #111;
    display: flex;
    flex-direction: column;
  }
  
  .menu_split {
    width: 50%;
    height: 100vh;
  }</pre></body></html>