/* Main */

html,body {height:100%;}
* {margin:0;border:0;padding:0;}

body {
	background: #CF2E2E;
	color: #101010;
	font-size: 16px;
	line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
img,div {display:block;}

/* Structure */

.content {
	width: 100%;
    background-color: #fff;
}

.content_in_6 {
	width: 94%;
	margin: 0 auto;
	position: relative;
}

.full_container {
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.default_content {
    padding: 6% 0;
}

.content_5050 {
    width: 100%;
    display: flex;
}
.content_5050 .content_block {
    width: 50%;
}

.text_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.full_block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content_5050 .text_block {
    box-sizing: border-box;
    padding: 4% 6%;
}
.content_5050 .full_block {
    box-sizing: border-box;
    padding: 2% 4%;
    text-align: unset;
    align-items: unset;
}

.content_double_text {
    padding: 5% 5%;
    gap: 10%;
    width: auto;
}
.content_double_text .text_block {
    padding: 0;
}

.image_block {
    position: relative;
}
.image_block img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.title_block {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Appearance */

.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%;
}
.white {
    background-color: #fff;
    color: #101010;
}
.black {
    background-color: #101010;
    color: white;
}
.red {
    background-color: #CF2E2E;
    color: white;
}
.lightgrey {
    background-color: #F6F6F6 !important;
    color: #101010;
}

/* Text */

h1,h2,h3,h4,h5,h6 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    line-height: 1em;
}
h1 {
    font-size: 6vw;
    line-height: 0.8em;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.05em;
}
h2 {
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.05em;
}
h3 {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.05em;
}
h4 {
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.05em;
}
h5 {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.2em;
    font-weight: 400;
}
h6 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.heading_large h1 {
    font-size: 9vw;
    position: relative;
    z-index: 50;
}
.about_heading h1 {
    font-size: 7vw;
}

.text_block_p h1 {
    font-size: 36px;
    line-height: 1em;
    font-weight: 700;
    color: #CF2E2E;
}
.text_block_p h2 {
    font-size: 30px;
    line-height: 1em;
    color: #CF2E2E;
}
.text_block_p h3 {
    font-size: 24px;
    line-height: 1em;
    color: #CF2E2E;
}
.text_block_p {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content_block h4 {
    font-size: 24px;
    font-weight: 700;
    color: #CF2E2E;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
    color: unset;
}

p{font-family: "Montserrat", sans-serif; font-size: 14px; line-height: 21px; text-transform: none;}
a {text-decoration: none;color: #CF2E2E; font-weight: inherit; -o-transition:.3s; -ms-transition:.3s;  -moz-transition:.3s; -webkit-transition:.3s;}
.a_underline {text-decoration: underline;color: #066EB7; font-weight: 700; text-transform: uppercase;}
a:hover {-o-transition:.3s;-ms-transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}

.bold, .bold a, strong {
    font-weight: 700;
}
.regular {
    font-weight: 400;
}
.highlight_title strong {
    color: white;
}

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

.special_tag, .special_tag_black {
    width: fit-content;
    padding-left: 38px;
    background-image: url(/assets/icons/bullet-red.svg); background-repeat: no-repeat; background-position: left center; background-size: auto 8px;
    display: block;
    color: #CF2E2E;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 1em;
}
.special_tag_black {
    background-image: url(/assets/icons/bullet-black.svg); background-repeat: no-repeat; background-position: left center; background-size: auto 8px;
    color: #101010;
}

.testimonial_content .special_tag {
    font-size: 14px;
}

.content_block ul {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.content_block li {
    background-image: url(/assets/icons/bullet-red.svg);
    background-repeat:no-repeat;
    background-position: left;
    padding-left: 30px;
    list-style: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px;
    font-style: italic;
    color: #CF2E2E;
}

/* Buttons */

button {
    background: none;
}
button a {
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-transform: uppercase;
    background-color: #CF2E2E;
    color: #fff;
    font-size: 14px; font-weight: 500; letter-spacing: 0.1em; font-style: italic;
    font-family: "Montserrat", sans-serif;
    padding: 8px 15px;
    cursor: pointer;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    height: auto; width: max-content;
    text-align: center;
    border-radius: 20px;
}

button a:hover {
    background-color: #101010;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

button img {
    width: 16px; height: 18px;
}

.white_button a {
    background-color: #fff;
    color: #CF2E2E;
}
.white_button a:hover {
    background-color: #101010;
    color: #fff;
}
.black .white_button a:hover {
    background-color: #CF2E2E;
    color: #fff;
}

.heading_large button {
    font-size: 18px;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* Widths */

.width_100 {
	width: 100%;
}
.width_90 {
	width: 90%;
}
.width_80 {
	width: 80%;
}
.width_75 {
	width: 75%;
}
.width_70 {
	width: 70%;
}
.width_60 {
	width: 60%;
}
.width_50 {
	width: 50%;
}
.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%;
}

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

/* Layout */

.margin_bottom {
    margin-bottom: 2%;
}

.split_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: url(/assets/icons/brandlines-footer.svg); background-repeat: no-repeat; background-position: right -2%; background-size: 900px;
}
.stats_block {
    background-image: url(/assets/icons/brandlines-red_dull.svg); background-repeat: no-repeat; background-position: -5% -2%; background-size: 900px;
}
.split_block_content {
    width: 40%;
    padding: 3% 4%;
    box-sizing: border-box;
    display: flex;
    gap: 35px;
    flex-direction: column;
    height: 100%;
}
.split_block_image {
    width: 60%;
    position: relative;
    overflow: hidden;
}

/* Images */

.two_one_image {
	width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}
.four_three_image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.three_four_image {
    width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}
.four_one_image {
	width: 100%;
	aspect-ratio: 4/1;
	object-fit: cover;
}
.three_two_image {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.three_one_image {
	width: 100%;
	aspect-ratio: 3/1;
	object-fit: cover;
}
.two_one_image img, .four_three_image img, .three_one_image img, .three_two_image img {
	width: 100%;
	height: 100%;
}

.image_blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Social Icons */

.social_icons {
    display: flex; flex-direction: row; gap: 4px;
}

.social_icon {
    width: 21px;
    height: 21px;
    position: relative;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    color: white;
}
.social_icon a {
    width: 100%;
    height: 100%;
    display: flex;
}
.social_icon a img {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
}
.social_icon a:hover {
    opacity: 0.5;
}

.footer_socials .social_icons {
    gap: 14px;
}
.footer_socials .social_icon {
    width: 25px;
    height: 25px;
}

.header_social_icons .social_icon {
    width: 18px; height: 18px;
}


/* Header */

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 80px;
    padding: 0 35px;
    color: white;
    transition: height 0.2s ease-in, background-color 0.2s ease-in;
}

.light_header header {
    position: relative;
    background-color: #fff;
}

.logo_dark {
    display: none !important;
}

.light_header .logo_white {
    display: none !important;
}
.light_header .logo_dark {
    display: flex !important;
}

.shrink {
   height: 60px;
   transition: height 0.2s ease-in, background-color 0.2s ease-in;
   background-color: rgba(16, 16, 16, 0.8) !important;
   backdrop-filter: blur(10px);
}
.shrink .logo img {
    max-width: 180px;
    transition: max-width 0.2s ease-in;
}

.header_content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}
.logo img {
    max-width: 240px;
    transition: max-width 0.2s ease-in;
}
.logo {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.header_side {
    align-content: stretch;
    height: 100%;
    width: 34%;
    max-width: 750px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.header_menu {
    list-style: none;
    display: flex;
    letter-spacing: 0.01em;
    font-size: 12px;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    justify-content: space-between;
    text-align: center;
}
.header_menu a {
    color: white;
}
.light_header .header_menu a {
    color: #101010;
}
.header_menu a:hover {
    font-weight: 800;
}
.header_menu .active a  {
    font-weight: 800;
    padding-bottom: 12px;
    background-image: url(/assets/icons/bullet-red.svg); background-repeat: no-repeat; background-position: bottom center;
}

.header_social {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    background-color: #CF2E2E;
    color: #fff;
    font-size: 12px; font-weight: 500; letter-spacing: 0.1em; font-style: italic;
    font-family: "Montserrat", sans-serif;
    padding: 8px 15px;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    height: auto; width: fit-content;
    text-align: center;
    border-radius: 20px;
    gap: 15px;
}
.header_social_icons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.menu_icon {
    display: none;
}

/* Footer */

footer {
    background-image: url(/assets/icons/brandlines-footer.svg); background-repeat: no-repeat; background-position: left center; background-size: contain;
}

.footer_main {
    display: inline-flex;
    padding: 3%;
    box-sizing: border-box;
}

.footer_lower {
    justify-content: space-between;
    align-items: center;
    padding: 30px 3%;
    gap: 20px;
    color: #101010;
    font-size: 11px;
    text-align: right;
    display: flex;
    font-family: 'Montserrat', sans-serif;
}
.footer_lower_text:first-of-type {
    text-align: left;
}
.footer_lower a {
    color: unset;
}

.footer_lower_text div {
    display: flex;
    flex-direction: row;
}
.bsmd {
    width: 100px;
}

.footer_menu ul {
    list-style-type: none;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    text-align: center;
}
.footer_menu li {
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.1em;
    align-self: center;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'Montserrat', sans-serif; font-size: 14px;
    text-transform: none;
    color: white;
}
.footer_emails {
    display: flex; flex-direction: column;
    gap: 30px;
}
.footer_email {
    font-size: 16px;
    text-transform: uppercase;
}
.footer_email_method {
    font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.05em; font-style: italic;
}
.footer_email_answer {
    font-family: 'Montserrat', sans-serif; font-size: 14px;
    text-transform: none;
}

.footer_partners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.footer_partners .partner_logo {
    width: 100%;
    display: flex;
    align-items: center;
    align-self: start;
}
.footer_partners .partner_logo a {
    display: flex;
    justify-content: end;
}

.footer_contact a {
    text-decoration: none;
    font-weight: 400;
    color: white;
}

.footer_link a {
    font-size: 24px;
    text-decoration: none;
    font-weight: 600;
    color: white;
}

footer a {
    color: white;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
footer a:hover {
    color: #101010;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}

/* Social */

.social {
    display: flex; flex-direction: column;
    gap: 20px;
    background-color: #101010;
    color: #fff;
}
.social_grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    box-sizing: border-box;
    height: fit-content;
    gap: 10px;
}

.ig_post {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
}
.ig_post img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: 2/3;
}
.ig_post video {
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.ig_tag {
    padding: 1% 1.4%;
    color: #fff;
    position: absolute;
    bottom: 10px; left: 10px;
    font-size: 11px;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    gap: 5px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(2px);
    font-family: 'Montserrat', sans-serif;
    align-items: center;
}
.ig_tag img {
    width: 12px; height: 12px;
}

/* News */

.content_news {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.news_categories {
    width: 20%;
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    box-sizing: border-box;
}
.news_categories h2 {
    color: #CF2E2E;
}

.category_menu {
    align-items: stretch;
}
.category_menu ul {
    list-style-type: none;
}
.category_menu li {
    margin-bottom: 18px;
    width: fit-content;
}
.category_menu li:last-of-type {
    margin-bottom: 0;
}
.category_link a {
    color: #101010;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.category_menu .active a {
    padding-right: 30px;
    background-image: url(/assets/icons/bullet-red.svg);
    background-repeat: no-repeat;
    background-position: right center;
    font-weight: 700;
    color: #CF2E2E;
}

.news_articles {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    grid-auto-rows: 1fr;
    gap: 30px;
    padding: 0 30px 50px 30px;
}

.news_article_content {
    width: 80%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news_block h4 {
    color: #CF2E2E;
}

.news_block_articles {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100%;
    grid-auto-rows: 1fr;
}

.news_article {
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.news_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    gap: 10px;
}
.news_content a h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    color: #101010;
    font-style: normal;
}
.news_content a h4:hover {
    color: #CF2E2E;
}
.news_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.news_date, .news_article_date {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CF2E2E;
}

.news_article_date {
    font-size: 15px;
    margin-bottom: 20px;
}

.article_width {
    width: 70%;
    padding: 0 15%;
}

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

.article_title {
    font-size: 60px; line-height: 60px; font-weight: 700; font-style: normal;
    text-transform: none;
    margin-bottom: 50px;
    padding-bottom: 30px;
    background-image: url(/assets/icons/bullet-red.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 40px;
}

.article_container {
    padding: 4% 0;
}

.news_black .news_block_articles {
    grid-template-columns: 1fr 1fr;
}

.news_black {
    background-color: #101010;
    padding: 40px;
}
.news_black .news_content a h4 {
    color: #fff;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.news_black .news_content a h4:hover {
    opacity: 0.5;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
}
.news_black button a:hover {
    background-color: #B21C20;
}

/* Headings */

.heading {
	height: 92vh;
	position: relative;
    background-position: bottom;
    width: 100%;
    color: white;
    background-color: #101010;
}

.heading:after{
    content: " ";
    width: 100%;
    height: 45%;
    position: absolute;
    z-index: 25;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);       
}

.heading:before{
    content: " ";
    width: 100%;
    height: 25%;
    position: absolute;
    z-index: 25;
    top: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);       
}

.heading .heading_content {
    width: 100%;
    position: absolute;
    bottom: 6%;
    z-index: 500;
    display: grid;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-items: center;
}

.compact_heading {
    padding: 5%;
}
.compact_heading .heading_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.heading_title {
    margin-bottom: 3%;
}

.heading_lines {
    background-image: url(/assets/icons/brandlines-red.svg); background-repeat: no-repeat; background-position: left center; background-size: 640px;
}

.about_heading {
    height: 90vh;
    position: relative;
    width: 100%;
    color: white;
    background-color: #101010;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    box-sizing: border-box;
}
.about_heading .heading_content {
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.heading_image {
    width: 100%;
    height: 75%;
    display: flex;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.heading_large video {
    object-fit: cover;
    width: 100vw;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

/* Home */

.home_about {
    width: auto;
    padding: 0 6%;
    overflow: hidden;
}
.home_about .image_block img {
    aspect-ratio: 1/1;
}
.home_about .text_block {
    padding: 0 6% 0 0;
}

.partners {
    padding: 2% 3%;
    background-color: #101010;
    border-top: 1px solid #CF2E2E;
}

.partner_row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-self: stretch;
    box-sizing: border-box;
}
.partner_logo {
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.partner_logo img {
    width: 100%;
    max-height: 70px;
    max-width: 140px;
    display: block;
}
.partner_logo a {
    display: block;
    flex: 1 0 0;
}

.scrolling_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.text {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes animate_text {
    from {
      transform: translate3d(-90%, 0, 0);
    }
    to {
      transform: translate3d(0, 0, 0);
    }
}

.nextrace, .storysofar {
    display:inline-flex;
    flex-direction: row;
    width: 100%;
    height: 8vh;
    border-bottom: #101010 1px solid;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 21px;
    gap: 80px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
}
.nextrace_entry, .story_scroll {
    display:inline-flex;
    flex-direction: row;
    flex: 1 0 auto;
    animation: animate_text 10s linear infinite;
}
.nextrace_text {
    font-style: italic;
    color: #CF2E2E;
}
.nextrace_info {
    font-weight: 600;
}

.awards_row {
    display: flex;
    padding: 5% 0px;
    max-height: 262px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 80px;
    color: white;
    animation: moveSlideshow 45s linear infinite;
}

@keyframes moveSlideshow {
    100% { 
        transform: translateX(-100%);  
    }
}

.home_slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cal_content h2 {text-align: center;}
.cal_entry_container {
    display: flex;
    gap: 4px;
    flex-direction: column;
    text-transform: uppercase;
}
.cal_entry {
    display: flex;
    justify-content: space-between;
    background-color: #B21C20;
    padding: 12px 22px;
    border-radius: 30px;
    letter-spacing: 0.1em;
    font-size: 15px;
}
.cal_date {
    font-weight: 600;
}
.cal_info {
    font-style: italic;
}


/* Contact */

.contact_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4% 0;
}

.contact_content .content_group:first-of-type {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact_content .content_group:last-of-type {
    width: 60%;
}

.contact_groups {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.contact_group {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: space-between;
    gap: 5px;
}
.contact_label {
    width: 100%;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #CF2E2E;
}
.contact_field {
    font-size: 14px;
    line-height: 14px;
    width: 100%;
}
.contact_field a {
    color: #fff;
}
.contact_field a:hover {
    color: #CF2E2E;
}

/* About */

.stats_container {
    width: 100%;
    background-color: #101010;
    color: white;
    padding: 5%;
    display: grid;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.content_stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.stat {
    display: inline-flex;
    flex-direction: row;
    gap: 5%;
    font-size: 13px; line-height: 1em;
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stat_label {
    width: 100%;
}
.stat_answer {
    font-weight: 700;
    width: 100%;
}

.testimonial_block {
    width: 100%;
    min-height: 540px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5%;
    justify-content: end;
    background-size: cover;
    background-position: center;
}
.testimonial_block_rev {
    justify-content: start;
}
.testimonial_text {
    font-size: 15px; line-height: 1.4em;
    font-weight: 500;
    letter-spacing: -0.05em;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #fff;
}

.testimonial_content {
    width: 24%;
    padding: 30px;
    background-color: rgba(16, 16, 16, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: fit-content;
    backdrop-filter: blur(4px);
}

.testimonial_responsive {
    padding: 0;
    height: auto;
    display: none;
}
.testimonial_responsive .testimonial_content {
    width: 100%;
    background-color: #101010;
    border-radius: 0;
    box-sizing: border-box;
}

.timeline {
    width: 100%;
    padding-bottom: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.timeline_entry .image_block img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.timeline_year {
    display: flex;
    flex-direction: column;
    border-top: #101010 1px solid;
    padding: 3% 0;
    gap: 20px;
    align-items: center;
}
.timeline_year:first-of-type {
    border-top: none;
}

.timeline_year_title {
    text-align: center;
    font-weight: 700;
    font-size: 80px;
    color: #101010;
}


.timeline_entry {
    width: 70%;
    display: flex;
    flex-direction: row;
    position: relative;
    color: #fff;
    align-items: center;
    border-radius: 20px;
    background-color: #101010;
    overflow: hidden;
}

.timeline_entry h4, .timeline_entry h1, .timeline_entry h2, .timeline_entry h3 {
    color: #fff;
}

.timeline_year .timeline_entry:nth-of-type(even) {
    flex-direction: row-reverse;
}
.timeline_year:nth-of-type(2n) .timeline_entry {
    flex-direction: row;
}
.timeline_year:nth-of-type(2n) .timeline_entry:nth-of-type(odd) {
    flex-direction: row-reverse;
}
.timeline_year:nth-of-type(odd) .timeline_entry {
    background-color: #101010;
}
.timeline_year:nth-of-type(even) .timeline_entry {
    background-color: #CF2E2E;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(2) {
    background-color: #CF2E2E;
}
.timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(2) {
    background-color: #101010;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(3), .timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(3) {
    background-color: #F6F6F6; color: #101010;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(3) h4, .timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(3) h4 {
    color: #101010;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(3) h3, .timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(3) h3 {
    color: #101010;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(3) h2, .timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(3) h2 {
    color: #101010;
}
.timeline_year:nth-of-type(odd) .timeline_entry:nth-of-type(3) h1, .timeline_year:nth-of-type(even) .timeline_entry:nth-of-type(3) h1 {
    color: #101010;
}

/* Partners */

.partners_blocks {
    width: 100%;
    gap: 10px;
    padding-bottom: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px;
    box-sizing: border-box;
}

.partners_partner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.partners_entry {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    color: #fff;
    align-items: center;
    background-color: #101010;
    overflow: hidden;
}

.partners_entry .text_block {
    padding: 2% 4%;
    width: 100%;
    box-sizing: border-box;
}
.partners_entry .logo_block {
    width: 100%;
    background-size: cover;
    background-position: center;
    aspect-ratio: 2/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo_block:before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-color: #101010;
    z-index: 5;
}
.logo_block img {
    width: 50%;
    height: 50%;
    z-index: 10;
}

/* Menu */

.menu_container {
    width: 100vw;
    position: relative;
  }
  
  .menu_list {
    width: 100%;
  }
  
  .menu_overlay {
    width: 100vw;
    height: 100%;
    position: fixed;
    overflow: hidden;
    color: #fff;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transition 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(16, 16, 16, 0.80);
    backdrop-filter: blur(10px);
  }
  
  .list {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  
  .list li::before {
    content: none;
    display: none;
    height: auto;
    width: auto;
    margin:0;
    background-image: none;
  }
  
  .list a {
    font-size: 36px;
    line-height: 36px;
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
    font-weight: 800;
    letter-spacing: -0.05em;
  }
  
  .list li a {
    border-bottom: 1px solid rgba(207, 46, 46, 1);
    padding: 4% 6%;
    flex-grow: 1;
    align-items: center;
    display: flex;
  }
  
  .list a:hover {
    color: #CF2E2E;
  }
  
  #menuBtn {
    display: none;
  }
  
  .menu_block {
    z-index: 200;
  }
  
  .fas {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.4s ease;
    transition: color 0.4s ease;
    z-index: 100;
    flex-direction: row-reverse;
    display: flex !important;
    gap: 12px;
  }

  .fas-icon {
      height: 35px;
  }
  
  .light_header .header_side .fas {
    background-color: #CF2E2E;
    padding: 4px 12px;
    border-radius: 25px;
  }
  .light_header .header_side .fas:hover {
    color: #101010;
  }
  
  .fas:hover {
    color: #CF2E2E;
  }
  .menu_title {
    flex-grow: 0 !important;
    justify-content: space-between;
    color: #CF2E2E;
    font-size: 30px;
    letter-spacing: 0.1em;
    background-color: #101010;
    display: flex;
    flex-direction: row;
    padding: 3% 6%;
    align-items: center;
  }
  .menu_block .fas {
    color: #CF2E2E;
  }