﻿/*
    Author: Tedje
    Date: 16-01-2024
    Description: Flash Gym Trainers Stylesheet
*/

.container-1 {
    padding-top: 120px;
    width: 60%;
    margin: 0 auto;
    min-height: 30vw;
}

.container-1 h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--blue-color);
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;

}

.info {
    flex: 0 0 calc(33.333% - 2rem);
    box-sizing: border-box;
    margin-bottom: 2rem;
    border-bottom: 3px solid black;
}

.info img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0px;
    margin-bottom: -5px;
}

.info a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.info a:hover .info-block, .info a:hover .info-block h5 {
    background-color: #1b50ba;
    color: black;
}
.info-block
{
    background-color: var(--light-color);
    padding: 20px;
    min-height: 85px;
}

.info-block h5
{
    color: var(--blue-color);
    font-size: 21px;
    margin-top: 0;
    text-transform: uppercase;
}

.info-block p {
    color: white;
    font-size: 15px;
    margin-top: 0;
    text-transform: uppercase;
}

.info-social
{
    border-bottom: 1px solid black;
}

.info-social a
{
    font-size: 48px;
    color: var(--blue-color);
    text-align: center;
}

.info-social a:hover
{
    color: var(--red-color);
}

.info .btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: var(--blue-color);
    padding: 0.325rem 1rem;
    border-left: 8px solid #f1faee;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 400ms ease;
    cursor: pointer;
    animation: fadeIn 1000ms ease-in-out forwards;
    animation-delay: 1000ms;
}

.info .btn:hover {
    background-color: var(--red-color);
}

.info-profile
{
    display: flex;
    margin-bottom: 50px;
}

.info-profile img
{
    margin-bottom:10px;
}

.info-info i {
    color: var(--blue-color)
}

.info-info h3, .info-profile h3 i {
    font-size: 32px;
}

.info-info h4, .info-profile h4 i, .info-info p {
    font-size: 24px;
}

.info-info p i {
    font-size: 30px;
}


.info-profile h3, .info-profile h4 {
    margin: 0;
    text-transform: uppercase;
}

.info-profile div p
{
    margin: 0 0 20px 0;
}

.info-text p
{
    font-size: 18px;
}

.info-text .bold
{
    font-size: 16px;
    font-weight: bold;
    margin-top: 1.5rem;
}

.info-text .bold a
{
    text-decoration: none;
    color: black;
}

.info-text .bold a:hover {
    color: var(--blue-color);
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}


/*==================================
            MEDIA QUERIES
==================================*/

/* Grote schermen */
@media only screen and (min-width: 1024px) and (max-width: 1460px) {
    .container-1 {
        width: 80%;
    }
}

/* Middelgrote schermen */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .container-1 {
        width: 80%;
    }
}

@media only screen and (min-width: 923px) and (max-width: 1023px) {
    .container-1 {
        width: 90%;
    }
}

/* Middelgrote schermen */
@media only screen and (min-width:768px) and (max-width:1000px) and (orientation: portrait) {

}

@media only screen and (min-width: 768px) and (max-width: 952px) {
    .container-1 {
        width: 70%;
    }

    .info-list {
        display: block;
    }

    .info-list > div {
        margin-bottom: 2rem;
    }
}

/* Kleine schermen */
@media only screen and (max-width: 767px) {
    .info-list {
        display: block;
    }

    .info-list > div {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 478px) and (orientation: portrait) {
    .container-1
    {
        width: 80%;
    }


}
