/*
     *  1. Fonts
     *  2. Variable
     *  3. Generic
     *  4. Top Menu
     *  5. Home
     *  6. Match-List
     *  7. Match-Highlight
     *  8. Footer
     *  9. Page
     */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,800;1,300;1,400&display=swap');

:root {
    --blue: #19123e;
    --violet: #7c50ff;
    --white: #fafafc;
    --black: #1c1c1c;

    --bg-color: #0c0725;

    --font-light: 300;
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-extra-bold: 800;
}

/* Generic */
html,
body {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: var(--font-light);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.btn-default {
    background: var(--violet);
    padding: 4px 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: var(--font-light);
    line-height: 35px;
    border-radius: 30px;
    text-decoration: none;  
}

.btn-default--extra-padding {
    padding: 4px 20px;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1200px;
}

@media (min-width: 481px) and (max-width:1250px){
    .container{
        margin: 0 40px;
    }
}

@media (max-width: 480px){
    .container {
        margin: 0 40px;
    }
}

.container--narrow {
    max-width: 600px;
}

.container--flex {
    display: flex;
}

@media (min-width: 481px) and (max-width: 800px){
    .container--flex {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px){
    .container--flex {
        flex-direction: column;
    }
}

.container--space-between {
    justify-content: space-between;
}

.container--justify-center {
    justify-content: center;
}

.container--align-center {
    align-items: center;
}

/* Header */

.header {
    padding: 10px;
}

@media (max-width: 480px){
    .header{
       background-color: #1f1643; 
    }
    
}

/* Top-bar */

.top-bar {
    background-color: var(--black);
    padding-top: 2px;
    padding-bottom: 2px;
}

.top-bar__text {
    text-align: center;
    font-size: 15px;
    opacity: 0.8;
}

@media (max-width: 480px){
    .top-bar__text {
        font-size: 14px;
    }
}

/* Top-menu */
.top-menu {
    display: flex;
    justify-content: space-between;
    color: var(--white);
}

@media (max-width: 480px){
    .top-menu {
        align-items: center;
    }
}

.top-menu__logo {
    width: 90px;
}

@media (max-width: 480px){
   .top-menu__logo {
    width: 75px;
    } 
}

.top-menu__menu-item {
    margin-left: 20px;
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 480px){
    .top-menu__menu-item:nth-child(-n+4) {
        display: none;
    }
}

@media (min-width: 480px){
    .top-menu__menu-item:nth-child(5) {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    z-index: 1;
    top: 146px;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    background: var(#1f1643);
    color: var(--white);
}

.mobile-menu--active {
    display: flex;
}

.mobile-menu__btn {
    color: var(--white);
    text-align: right;
    margin-top: 20px;
    margin-right: 20px;
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu__menu-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #1f1643;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.mobile-menu__menu-item {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-light);
    line-height: 19px;
    text-decoration: none;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Home */

.intro {
    height: calc(100vh - 360px);
    background-image: url(/images/bg-intro.png);
    background-size: contain;
}

@media (max-width: 480px){
    .intro {
        height: 100%;
        background-image: url(/images/intro-bg-mobile.png);
        background-position-y: -180;
        background-attachment: fixed;
        max-height: calc(100% - 295px);
    }
}

.intro__copy {
    padding-left: 60px;
    margin-bottom: 100px;
}

@media (max-width: 480px){
    .intro__copy {
        padding-left: 0;
    }
}

.intro__copy,
.intro__kv {
    flex: 1;
}

.intro__headline {
    font-size: 52px;
    font-weight: var(--font-extra-bold);
    line-height: 58px;
    max-width: 500px;
    margin-top: 30%;
    margin-bottom: 20px;
}

@media (min-width: 481px) and (max-width: 800px){
    .intro__headline {
      font-size: 41px;
      line-height: 44px;
      max-width: 100%;
      padding-right: 40px;
    }   
}

@media (max-width: 480px){
    .intro__headline {
      font-size: 36px;
      line-height: 38px;
      max-width: unset;
      margin-top: 140px;
    }   
}

.intro__subheadline {
    font-size: 18px;
    font-weight: var(--font-light);
    line-height: 23px;
    max-width: 500px;
    margin-top: 0;
    margin-bottom: 20px;
    opacity: 0.7;
}

@media (min-width: 481px) and (max-width: 800px){
    .intro__subheadline {
      max-width: 100%;
      padding-right: 40px;
    }   
}

@media (max-width: 480px){
    .intro__subheadline {
      max-width: unset;
    }   
}

.intro__kv {
    padding-right: 60px;
    display: flex;
    align-items: center;
}

@media (max-width: 800px){
    .intro__kv {
        display: none;
    }
}

.intro__kv-img {
    width: 100%;
    max-width: 640px;
    max-height: 640px;
    margin-top: 8%;
}

/* Promo */

.promo {
    margin-top: 100px;
    margin-bottom: 120px;
    background-color: #1f1643;
    padding: 10px 15px;
}

@media (max-width: 480px){
    .promo {
        margin-top: unset;
    } 
}

.promo__column {
    max-width: 300px;
    padding: 10px;
}

@media (min-width: 481px) and (max-width: 800px){
    .promo__column {
        max-width: 230px;
    }
}

.promo__icon {
    text-align: center;
    font-size: 38px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.promo__cat {
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--font-light);
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.promo__headline {
    text-align: center;
    font-size: 16px;
    line-height: 19px;
    max-width: 267px;
}

/* Latest-pediction */

.latest-prediction {
    margin-top: 20px;
    margin-bottom: 100px;
}

.latest-prediction__headline {
    font-size: 21px;
    line-height: 23px;
    font-weight: var(--font-semi-bold);
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 480px){
    .latest-prediction__headline {
        text-align: center;
    }
}

.latest-prediction__subheadline {
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--font-light);
    margin-top: 5px;
    margin-bottom: 0;
    opacity: 0.7;
}

@media (max-width: 480px){
    .latest-prediction__subheadline {
        text-align: center;
    }
}

.latest-prediction__content {
    display: flex;
    padding-left: 60px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (min-width: 481px) and (max-width: 800px){
    .latest-prediction__content {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px){
    .latest-prediction__content {
        flex-direction: column;
        padding-left: 0;
        align-items: center;
    }
}

.latest-prediction__item {
    background-color: #1f1643;
    border-radius: 12px;
    padding: 10px 15px;
    max-width: 300px;
    margin-right: 30px; 
}

@media (min-width: 481px) and (max-width: 800px){
    .latest-prediction__item {
        max-width: 170px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px){
    .latest-prediction__item {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 200px;
    }
}

.latest-prediction__item-copy {
    font-size: 16px;
    font-weight: var(--font-light);
    line-height: 19px;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 3px;
}

.latest-prediction__item-cta {
    font-size: 14px;
    font-weight: var(--font-light);
    line-height: 19px;
    color: #1be7ff;
    text-decoration: none;
}

.latest-prediction__cta {
    display: flex;
    justify-content: center;
}

.latest-prediction__cta-btn {
    padding: 0 18px;
}

/* Supported Leagues */

.supported-league {
    margin-bottom: 100px;
}

.supported-league__headline {
    font-size: 21px;
    line-height: 23px;
    font-weight: var(--font-semi-bold);
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 480px){
    .supported-league__headline {
        text-align: center;
    }
}

.supported-league__subheadline {
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--font-light);
    margin-top: 5px;
    margin-bottom: 0;
    opacity: 0.7;
}

@media (max-width: 480px){
    .supported-league__subheadline {
        text-align: center;
    }
}

.supported-league__content {
    display: flex;
    padding-left: 60px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (min-width: 481px) and (max-width: 800px){
    .supported-league__content {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px){
    .supported-league__content {
        flex-direction: column;
        padding-left: 0;
        align-items: center;
    }
}

.supported-league__item {
    width: 230px;
    height: 210px;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 42px;
}

@media (min-width: 481px) and (max-width: 800px){
    .supported-league__item {
        max-width: 170px;
        margin-bottom: 25px;
        border-radius: 30px;
    }
}

@media (max-width: 480px){
    .supported-league__item {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.supported-league__item-link {
    color: var(--white);
    font-size: 29px;
    line-height: 31px;
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    text-align: center;  
}

.supported-league__cta {
    display: flex;
    justify-content: center;
}

.supported-league__cta-btn {
    padding: 0 18px;
}

/* Match-List */
.match-list {
    width: 100%;
    margin: 30px 0px 0px 0px;
}

.match-list__header-filter {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

@media (max-width: 480px){
    .match-list__header-filter {
        width: 100%;
        flex-wrap: wrap;
        justify-content: end;
    }
}

.match-list__header-filter-label,
.match-list__header-filter-item {
    font-size: 16px;
}

@media (max-width: 480px){
    .match-list__header-filter-label,
    .match-list__header-filter-item {
        font-size: 14px;
}
}

.match-list__header-filter-label {
    padding-top: 2px;
}

@media (max-width: 480px){
    .match-list__header-filter-label {
        position: absolute;
        left: 0;
        padding-top: 6px;
    }
}

.match-list__header-filter-item {
    padding: 2px 6px;
    border-radius: 4px;
    background-color: var(--violet);
    cursor: pointer;
}

@media (max-width: 480px){
    .match-list__header-filter-item {
        margin: 5px;
    }
}

.filterActive {
    margin-left: 4px;
}

.match-list__list-header-heading {
    font-size: 18px;
    font-weight: var(--font-light);
}

.match-list__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
    max-width: 800px;
    margin: 0 auto;
    padding: 8px 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: var(--blue);
    box-shadow: 7px 7px 5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 7px 7px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 7px 7px 5px 0px rgba(0, 0, 0, 0.25);
}

.match-list__list-item-date-inner {
    font-size: 12px;
    padding: 5px;
    border-radius: 4px;
    background-color: var(--violet);
}

.match-list__list-item-content {
    font-size: 16px;
}

@media (max-width: 480px){
    .match-list__list-item-content {
        width: 50%;
        text-align: center;
    }
}

.match-list__list-item-cta-link {
    color: var(--white);
    text-decoration: none;
}

.match-list__list-item-cta-inner {
    display: block;
    padding: 5px;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    text-align: center;
    background-color: var(--violet);
}

.match-list__list-item-cta-inner-chevron {
    font-size: 16px;
}

/* Match-highlight */

.match-highlight {
    padding-top: 50px;
    height: auto;
}

@media (max-width: 480px){
    .match-highlight {
        height: auto;
    }
}

.match-highlight__header {
    text-align: center;
}

.match-highlight__header-round-copy {
    font-size: 16px;
    font-weight: var(--font-light);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.match-highlight__header-title-copy {
    font-size: 28px;
    font-weight: var(--font-regular);
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 480px){
    .match-highlight__header-title-copy {
        font-size: 24px;
        margin: 0 40px;
    }
}

.match-highlight__header-league-copy {
    font-size: 16px;
    font-weight: var(--font-light);
    margin-top: 0;
    margin-bottom: 0;
}

.match-highlight__header-date-copy {
    font-size: 21px;
    font-weight: var(--font-light);
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media (max-width: 480px){
    .match-highlight__header-date-copy {
        font-size: 18px;
    }
}

.match-highlight__content-overview-headline,
.match-highlight__content-prediction-headline {
    font-size: 21px;
    font-weight: var(--font-regular);
}

@media (max-width: 480px){
    .match-highlight__content-overview-headline,
    .match-highlight__content-prediction-headline {
        margin-bottom: 0;
    }
}

.match-highlight__content-overview-copy,
.match-highlight__content-prediction-copy {
    font-size: 16px;
    font-weight: var(--font-light);
}

@media (max-width: 480px){
    .match-highlight__content-overview-copy,
    .match-highlight__content-prediction-copy {
        margin-top: 5px;
    }
}

/* Footer */
.main-footer {
    background-color: #1f1643;
    color: var(--white);
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 19px;
    font-weight: var(--font-light);
}
.main-footer__column {
    min-width: 200px;
    max-width: 300px;
}

@media (max-width: 480px){
    .main-footer__column {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.main-footer__headline {
    font-weight: var(--font-light);
    margin: 0;
}

.main-footer__copy {
    opacity: 0.8;
    margin-top: 5px;
    max-width: 230px;
}

@media (max-width: 480px){
    .main-footer__copy {
        max-width: unset;
        margin-bottom: unset;
        text-align: center;
    }
}

.main-footer__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (max-width: 480px){
    .main-footer__list {
        text-align: center;
    }
}

.main-footer__list-item {
    opacity: 0.8;
}

.main-footer__list-item--headline {
    opacity: 1;
    margin-bottom: 5px;
}

.main-footer__list-item-link {
    color: var(--white);
    text-decoration: none;
}

.main-footer__support-img {
    width: 150px;
    margin-top: 10px;
}

/* Copyright */
.copyright {
    margin-top: 15px;
}

.copyright__copy {
    opacity: 0.8;
}

@media (max-width: 480px){
    .copyright__copy {
        display: flex;
        justify-content: center;
    }
}

.copyright__link {
    color: var(--white);
    text-decoration: none;
}

/* Page */

.page {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page__headline{
    font-size: 21px;
    line-height: 23px;
    font-weight: var(--font-semi-bold);
    margin-top: 0;
    margin-bottom: 0;
}

.page__copy{
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--font-light);
    margin-top: 10px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.support-banner {
    width: 100%;
    max-width: 800px;
    height: 200px;
    display: flex;
    position: relative;
    background-color: #1f1643;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
    box-shadow: 2px 1px 13px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 1px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 1px 13px 0px rgba(0,0,0,0.75);
}

@media (max-width: 480px){
    .support-banner {
        margin: 100px 30px;
        width: auto;
        height: auto;
        padding-bottom: 25px;
    }
}

.support-banner__copy {
    flex: 2;
}

.support-banner__kv {
    flex: 1;
}

.support-banner__copy {
    padding-top: 10px;
    padding-left: 50px;
}

@media (max-width: 480px){
    .support-banner__copy {
        padding-left: 20px;
    }
}

.support-banner__headline {
    margin-bottom: 10px;
}

@media (max-width: 480px){
    .support-banner__headline {
        font-size: 19px;
        max-width: 70%;
    }
}

.support-banner__text {
    font-size: 21px;
    line-height: 29px;
    font-weight: var(--font-light);
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 480px){
    .support-banner__text {
        font-size: 18px;
        line-height: 23px;
        max-width: 75%;
    }
}

.support-banner__img {
    position: absolute;
    height: 300px;
    bottom: 0;
    right: 50px
}

@media (max-width: 480px){
    .support-banner__img {
        right: 5px;
    }
}

@media (max-width: 480px){
    .support-banner__cta {
        margin-top: 10px;
    }
}

.league-info__text {
    font-size: 16px;
}

/* Cookie-bar */

.cookie-bar{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--black);
}

@media (max-width: 480px){
    .cookie-bar{
        padding-bottom: 10px;
    }
}

.cookie-bar__text {
    font-size: 14px;
    padding-right: 50px;
}

@media (max-width: 480px){
    .cookie-bar__text {
        padding-right: unset;
    }
}

.cookie-bar__link {
    color: var(--white);
}

.cookie-bar__cta {
    width: 117px; 
    height: 32px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}