﻿.tours .wrap {
    width: 1000px;
}
.tours .tour-text {
    margin-bottom: 2.5rem;
}
.tours .tour-text h3 {
    text-transform: uppercase;
    letter-spacing: .5rem;
    font-weight: 400;
    font-size: 2.4rem;
    margin: 0 0 .5rem 0;
}
    .tours .tour-text a {
        text-transform: uppercase;
        letter-spacing: .4rem;
        font-weight: 500;
        margin: 0;
    }

.tours .tour-date-item {
    border-bottom: 1px solid #ccc;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 2rem 0;
}
.tours .tour-date-item:last-of-type {
    border-bottom: none;

}
    .tours .tour-date-item .date {
        font-weight: 500;
        width: 15%;
    }
    .tours .tour-date-item .info {
        width: 70%;
        padding-left: 1.5rem;
    }
        .tours .tour-date-item .info h4,
        .tours .tour-date-item .info h5,
        .tours .tour-date-item .info h6 {
            margin-bottom: 0;
            font-weight: 400;
        }
        .tours .tour-date-item .info h4 {
            text-transform: uppercase;
            font-size: 2rem;
            color: var(--main-color);
        }
        .tours .tour-date-item .info h5 {
            text-transform: uppercase;
            font-size: 1.5rem;
        }
        .tours .tour-date-item .info h6 {
            text-transform: uppercase;
            font-size: 1.4rem;
            color: var(--accent-color);
            
        }
    .tours .tour-date-item .tickets {
        width: 15%;
        padding-left: 1.5rem;
    }
        .tours .tour-date-item .tickets a {
            text-transform: uppercase;
            font-weight: 500;
        }

@media (max-width: 1200px) {
    .tours .wrap {
        width: 100%;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .tours .tour-date-item .date {
        min-width: 150px;
    }
    .tours .tour-date-item .tickets {
        min-width: 150px;
    }
}
@media (max-width: 767px) {
    .tours .tour-date-item {
        flex-direction:column;
    }
        .tours .tour-date-item .date {
            width: 100%;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        .tours .tour-date-item .info {
            width: 100%;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        .tours .tour-date-item .tickets {
            width: 100%;
            padding: 0;
        }
}