#FIXTURES {
    width: 100%;
    height: max-content;
    padding: 0px 0px 50px 0px ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 100px;
    transition: all ease .5s !important;
 }
 .fixtures-heading {
    padding: 5px;
    font-family: "poppins", sans-serif;
    text-align: center;
    margin: 0px 0px 20px 0px ;
    cursor: pointer;
    
 }
 .fixtures-heading p {
    font-size: 30px;
    color:var(--text-color);;
    font-weight: 700;
    text-transform: uppercase;

 }

 .fixtures-heading:hover p {
    color: gray;
    text-decoration: underline;
    text-underline-offset: 15px;
  }
#fixtures-main-section {
    width: 99%;
    height:max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(.5);
    gap: 5px;

}
.fixtures-sub-section {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color:var(--text-color);
}
#match-days{
    width: 100%;
    height: 250px;
    background-color: transparent;
    background-color: var(--bcg-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    padding: 5px;
    display: flex;
    margin: 5px;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    font-family: 'poppins', sans-serif;  
    cursor: pointer;
    transition: all ease .5s;
   
    color:var(--text-color);
    overflow: hidden;
    
}
#match-days:hover {
    transform: scale(0.95);
}
.Match-day {
    padding: 8px 12px 8px 12px ;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    background-color: var(--main-color);
}
.clubs-logos {
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
}
.clubs-logos img {
    width: 140px;
}
.Home-team img {
    transform: translateX(-0px);
}
.Away-team img {
    transform: translateX(0px);
}
.date-section {
    padding: 2px;
    font-size: 20px;
    font-weight: 700;
    transform: translateX(0px);
    color: var(--main-color);
    display: none;

}
.vesus p{
    font-size: 40px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    transform: translateY(0px);
}
.Team-name p {
    font-size: 16px;
    font-family: "poppins", sans-serif;
text-transform: uppercase;
    color:var(--text-color);
    transform: translateY(0px)

}
.Home-team,
.Away-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#match-days:hover  {
       
    background-color: transparent;
    background-color: var(--bcg-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

/* MEDIA QUERIES  */

/* LARGE DISPLAYS  */
@media screen and (min-width: 2570px) {
}
/*......................... LAPTOP DISPLAYS ...............  */
@media screen and (min-width: 930px) and (max-width: 1440px) {
    .fixtures-heading p {
        font-size: 25px;
        color:var(--text-color);;
        font-weight: 700;
        text-transform: uppercase;
    
     }
     .fixtures-heading:hover p {
        color: gray;
        text-decoration: underline;
        text-underline-offset: 15px;
      }
    #fixtures-main-section {
        width: 100%;
        height:max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        backdrop-filter: blur(.5);
        gap: 5px;
    
    }
    .fixtures-sub-section {
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5px;
        color:var(--text-color);
    }
    #match-days{
        width: 100%;
        height: 200px;
        background-color: transparent;
        background-color: var(--bcg-color);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        padding: 5px;
        display: flex;
        margin: 5px;
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        font-family: 'poppins', sans-serif;  
        cursor: pointer;
        transition: all ease .5s;
       
        color:var(--text-color);
        overflow: hidden;
        
    }
    #match-days:hover {
        transform: scale(0.95);
    }
    .Match-day {
        padding: 8px 12px 8px 12px ;
        color: white;
        border-radius: 10px;
        font-weight: 700;
        font-size: 12px;
        background-color: var(--main-color);
    }
    .clubs-logos {
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px; 
    }
    .clubs-logos img {
        width: 50px;
    }
    .Home-team img {
        transform: translateX(-0px);
    }
    .Away-team img {
        transform: translateX(0px);
    }
    .date-section {
        padding: 2px;
        font-size: 13px;
        font-weight: 700;
        transform: translateX(0px);
        color: var(--main-color);
        display:none;
    
    }
    .vesus p{
        font-size: 20px;
        font-family: "poppins", sans-serif;
        font-weight: 400;
        transform: translateY(0px);
    }
    .Team-name p {
        text-align: center;
        font-size: 10px;
        font-family: "poppins", sans-serif;
    text-transform: uppercase;
        color:var(--text-color);
        transform: translateY(0px)
    
    }
}

/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 770px) and (max-width: 929px){
    
        .fixtures-heading p {
            font-size: 25px;
            color:var(--text-color);;
            font-weight: 700;
            text-transform: uppercase;
        
         }
         .fixtures-heading:hover p {
            color: gray;
            text-decoration: underline;
            text-underline-offset: 15px;
          }
        #fixtures-main-section {
            width: 100%;
            height:max-content;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            backdrop-filter: blur(.5);
            gap: 5px;
        
        }
        .fixtures-sub-section {
            width: 100%;
            height: max-content;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 5px;
            color:var(--text-color);
        }
        #match-days{
            width: 100%;
            height: 170px;
            background-color: transparent;
            background-color: var(--bcg-color);
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            padding: 5px;
            display: flex;
            margin: 5px;
            border-radius: 20px;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            font-family: 'poppins', sans-serif;  
            cursor: pointer;
            transition: all ease .5s;
           
            color:var(--text-color);
            overflow: hidden;
            
        }
        #match-days:hover {
            transform: scale(0.95);
        }
        .Match-day {
            padding: 6px 8px 6px 8px ;
            color: white;
            border-radius: 10px;
            font-weight: 700;
            font-size: 10px;
            background-color: var(--main-color);
        }
        .clubs-logos {
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px; 
        }
        .clubs-logos img {
            width: 50px;
        }
        .Home-team img {
            transform: translateX(-0px);
        }
        .Away-team img {
            transform: translateX(0px);
        }
        .date-section {
            padding: 2px;
            font-size: 10px;
            font-weight: 700;
            transform: translateX(0px);
            color: var(--main-color);
            display: none;
        
        }
        .vesus p{
            font-size: 20px;
            font-family: "poppins", sans-serif;
            font-weight: 400;
            transform: translateY(0px);
        }
        .Team-name p {
            text-align: center;
            font-size: 9px;
            font-family: "poppins", sans-serif;
            text-transform: uppercase;
            font-weight: 400;
            color:var(--text-color);
            transform: translateY(0px)
        
        }
    }

/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 320px) and (max-width: 769px)
{
    #FIXTURES {
        margin: -60px 0px 10px 0px ;
        padding: 0px 0px 10px 0px ;
        
    }
    .fixtures-heading p {
        font-size: 15px;
        color:var(--text-color);;
        font-weight: 700;
        text-transform: uppercase;
    
     }
     .fixtures-heading:hover p {
        color: gray;
        text-decoration: none;
        text-underline-offset: 15px;
      }
    #fixtures-main-section {
        width: 100%;
        height:max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        backdrop-filter: blur(.5);
        gap: 5px;
    
    }
    .fixtures-sub-section {
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        color:var(--text-color);
    }
    #match-days{
        width: 95%;
        height: 170px;
        background-color: transparent;
        background-color: var(--bcg-color);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        padding: 5px;
        display: flex;
        margin: 5px;
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        font-family: 'poppins', sans-serif;  
        cursor: pointer;
        transition: all ease .5s;
       
        color:var(--text-color);
        overflow: hidden;
        
    }
    #match-days:hover {
        transform: scale(0.95);
    }
    .Match-day {
        padding: 6px 8px 6px 8px ;
        color: white;
        border-radius: 10px;
        font-weight: 700;
        font-size: 10px;
        background-color: var(--main-color);
    }
    .clubs-logos {
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px; 
    }
    .clubs-logos img {
        width: 70px;
    }
    .Home-team img {
        transform: translateX(-0px);
    }
    .Away-team img {
        transform: translateX(0px);
    }
    .date-section {
        padding: 2px;
        font-size: 11px;
        font-weight: 500;
        transform: translateX(0px);
        color: var(--main-color);
        display: none;
    
    }
    .vesus p{
        font-size: 20px;
        font-family: "poppins", sans-serif;
        font-weight: 400;
        transform: translateY(0px);
    }
    .Team-name p {
        text-align: center;
        font-size: 10px;
        font-family: "poppins", sans-serif;
        text-transform: uppercase;
        font-weight: 400;
        color:var(--text-color);
        transform: translateY(0px)
    
    }
}