* {
    font-family: 'Montserrat', sans-serif;
}

.logo-container {
    padding: 40px 0;
}

.logo-container .logo {
    width: 220px;
}
@media only screen and (max-width: 768px) {
    .logo-container .logo {
        width: 200px;
    }
}

.workshop-container {
    padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
    .workshop-container {
        padding-bottom: 35px;
    }
}

.workshop-container .workshop {
    transition: all .3s;
    background-color: #f5f6fa;
    padding: 50px 40px 30px;
    border-radius: 0;
    border: 0;
    margin-bottom: 25px;
    position: relative;
}
@media only screen and (max-width: 1400px) {
    .workshop-container .workshop {
        padding: 35px 20px 20px;
    }
}

.workshop-container .workshop:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.workshop-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

.workshop .header {
    min-height: 142px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
    .workshop .header {
        min-height: 115px;
    }
}
@media only screen and (max-width: 576px) {
    .workshop .header {
        min-height: 102px;
    }
}

.workshop .header h2 {
    font-weight: 700;
    font-size: 24px;
}
@media only screen and (max-width: 1400px) {
    .workshop .header h2 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 992px) {
    .workshop .header h2 {
        font-size: 20px;
    }
}

.workshop .location {
    display: flex;
    align-items: center;
    height: 42px;
}

.workshop .header .date {
    color:#7b7a7c;
    font-size: 16px;
    font-weight: 400;
}
@media only screen and (max-width: 992px) {
    .workshop .header .date {
        font-size: 14px;
    }
}

.workshop .location span {
    font-size: 16px;
    font-weight: 400;
}
@media only screen and (max-width: 1400px) {
    .workshop-container .location span {
        font-size: 14px;
    }
}

.workshop .icon {
    height: 36px;
    margin-right: 10px;
}

.workshop .icon-camera {
    position: relative;
    bottom: 3px;
    height: 22px;
}

.more-container {
    text-align: center;
    padding-bottom: 65px;
}
@media only screen and (max-width: 768px) {
    .more-container {
        padding-bottom: 55px;
    }
}

.btn-more {
    border: 1px solid #fa153a;
    background-color: #fff;
    padding: 20px 80px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #fa153a;
    transition: all .4s;
}
@media only screen and (max-width: 768px) {
    .btn-more {
        padding: 15px 50px;
        font-size: 16px;
    }
}

.btn-more:hover {
    background-color: #fa153a;
    color: #fff;
}

.btn-more:focus {
    outline: none;
}

footer {
    border-top: 1.5px solid #f5f6fa;
    color:#bebfc2;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
    footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

footer p {
    margin: 0;
}


/* active workshop */
.workshop-container .active-workshop {
    height: calc(100% - 25px);
    background-color: #fa153a;
    color: #fff;
}
@media only screen and (max-width: 576px) {
    .active-workshop {
        height: unset;
    }
}

.workshop.active-workshop .header {
    margin-bottom: 65px;
}
.workshop.active-workshop .header h2 {
    font-weight: 800;
    font-size: 48px;
}
@media only screen and (max-width: 1400px) {
    .workshop.active-workshop .header h2 {
        font-weight: 700;
        font-size: 36px;
    }
}
@media only screen and (max-width: 992px) {
    .workshop.active-workshop .header h2 {
        font-weight: 700;
        font-size: 26px;
    }
}

.active-workshop .limiter {
    width: 50px;
    margin: 40px 0;
    border-top: 2px solid #fff;
}

.workshop-container .active-workshop .date {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
}

.workshop-container .active-workshop .info {
    color: #fff;
    font-weight: 500;
    word-break: break-word;
}

.workshop-container .active-workshop .location {
    color: #fff;
    position: absolute;
    bottom: 20px;
}

.active-workshop .icon svg, .active-workshop .icon-camera svg {
    fill: #fff;
}
