/* Grid View*/
.regulations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.regulations-grid .regulation-box {
    height: 425px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.regulation-box .overlay {
    background: rgb(20, 57, 99);
    background: -moz-linear-gradient(180deg, rgba(20, 57, 99, 0) 0%, rgba(20, 57, 99, 1) 50%, rgba(20, 57, 99, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(20, 57, 99, 0) 0%, rgba(20, 57, 99, 1) 50%, rgba(20, 57, 99, 1) 100%);
    background: linear-gradient(180deg, rgba(20, 57, 99, 0) 0%, rgba(20, 57, 99, 1) 50%, rgba(20, 57, 99, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#143963", endColorstr="#143963", GradientType=1);
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.regulation-box .overlay::before {
    content: "";
    position: absolute;
    margin-top: -220px;
    height: 50%;
    width: calc(25% - 10px);
    background: rgb(28, 177, 79);
    background: -moz-linear-gradient(180deg, rgba(28, 177, 79, 0) 0%, rgba(28, 177, 79, 1) 50%, rgba(28, 177, 79, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(28, 177, 79, 0) 0%, rgba(28, 177, 79, 1) 50%, rgba(28, 177, 79, 1) 100%);
    background: linear-gradient(180deg, rgba(28, 177, 79, 0) 0%, rgba(28, 177, 79, 1) 50%, rgba(28, 177, 79, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1cb14f", endColorstr="#1cb14f", GradientType=1);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

a.regulation-box:hover .overlay::before {
    opacity: 1;
}

.regulation-box .title {
    margin-top: 70px;
    width: 80%;
}

.regulation-box h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
    margin: 0;
}

/* List View*/
.regulations-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.regulations-list .regulation-item {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 50px;
}

.regulation-item h2 {
    margin: 0;
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    color: #083465;
}

.information .title {
    margin-bottom: 25px;
}

.information .content a {
    margin-top: 30px;
    display: block;
}

.information .content .subpage-header-reg {
    display: none;
}

.information .extra-fields {
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.information .extra-fields img {
    margin: 0;
}

.information .extra-fields {
    display: grid;
    align-items: center;
    grid-template-columns: 36px 1fr;
    gap: 20px;
}

@media only screen and (max-width: 650px) {
    .regulations-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 650px) and (max-width: 1000px) {
    .regulations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

}

@media only screen and (min-width: 1100px) {

}
