.banner-container {
    width: 100%;
}

.banner-container>img {
    width: 100%;
    object-fit: cover;
}

.selection-container {
    width: 80%;
    min-height: 6.25rem;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.selection-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    user-select: none;
    min-height: 6.25rem;
}

.selection-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    min-height: 6.25rem;
}

.selection-item:not(:last-child) {
    margin-right: 5rem;
}

.selection-item:hover {
    border-bottom: 3px solid rgb(253, 115, 32);
}

.selection-location {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
}

.selection-img {
    margin-right: 1.25rem;
    width: .9375rem;
    height: 1.3125rem;
}

.selection-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selection-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
}

.selection-text>div:not(.divide) {
    cursor: pointer;
}

.selection-text>div:not(.divide):hover {
    color: rgb(253, 115, 32);
}


.selection-text>div:not(:last-child) {
    margin-right: .5rem;
}

@media screen and (max-width: 1200px) {
    .selection-items {
        flex-wrap: wrap;
        margin-top: 1.25rem;
    }

    .selection-item {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .selection-text {
        font-size: 2rem;
    }

    .selection-img {
        margin-right: 1.25rem;
        width: 1.875rem;
        height: 2.625rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .selection-img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 666px) {
    .selection-item {
        font-size: 2.5rem;
    }

    .selection-text {
        font-size: 2.5rem;
    }
}

.cert-container {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: none;
}

.cert-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.cert-list-item {
    width: 100%;
    height: 25rem;
    border: 1px solid rgb(200, 200, 200);
    cursor: pointer;
    overflow: hidden;
}

.cert-list-item > img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all .3s;
}

.cert-list-item:hover > img {
    transform: scale(1.2);
}

@media screen and (max-width: 1260px) {
    .cert-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cert-list-item {
        height: 35rem;
    }
}

@media screen and (max-width: 1000px) {
    .cert-list-item {
        height: 25rem;
    }
}

@media screen and (max-width: 767px) {
    .cert-list {
        grid-template-columns: 1fr 1fr;
    }

    .cert-list-item {
        height: 40rem;
    }
}

@media screen and (max-width: 500px) {
    .cert-list {
        grid-template-columns: 1fr;
    }

    .cert-list-item {
        height: 60rem;
    }
}