﻿p {
    font-size: 1rem;
}

h2 {
    /*color: var(--natural-england-color);*/
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

small {
    font-size: 0.75em;
}

.min-vh-50 {
    min-height: 50vh;
}

min-vh-75 {
    min-height: 75vh;
}

.text-inset {
    background-color: black;
    opacity: 0.8;
    color: white;
    padding: 1rem 2rem;
}

.text-inset-50 {
    width: 50rem;
    max-width: 100%;
}

.text-inset-35 {
    width: 35rem;
    max-width: 100%;
}

.text-inset h2 {
    font-size: 2.5rem;
    color: white;
}

.accordion-header h4 {
    font-size: 1.125rem;
}

.full-height-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-section {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.flex-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-section-child {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    padding: 2rem;
}

.flex-section-child-grid-3 {
    flex: 1 1 50%;
    padding: 2rem;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 30% 30% 30%;
    height: 70vh;
}

.flex-section-child-grid-2 {
    flex: 1 1 50%;
    padding: 2rem;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    height: 70vh;
}

.dark {
    background-color: black;
    color: white;
}

.loose {
    letter-spacing: 0.25rem;
    font-weight: 400;
}

/* LEARN MORE */
#learn-more {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

@media(min-width: 768px) {
    #learn-more {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.learn-more-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
    text-align: center;
    flex: 1 1 30%;
    min-height: 16rem;
}

.learn-more-action {
    background-color: #7D0A33;
    padding: 0.5rem 2rem;
    color: white;
    border-radius: 0.5rem;
    margin-bottom: 5rem;
}

a.learn-more-action:hover {
    color: white;
}

/* containter for groups of videos with padding to support where a group is emphasised*/
div.video-group-container {
    padding: 1rem;
}

div.emphasised {
    background-color: #f2f3fc;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

div.emphasised h4 {
    font-size: 1.4rem;
}

/* container for youtube video iframe and figcaption. Slightly wider than the figcaption so all videos align centrally*/
div.video-container {
    width: 22rem;
}

