:root {
    --color-dpl-1: #691700;
    --color-dpl-2: #959595;
    --color-dpl-3: #faf6f4;
    --color-dpl-4: #f5f1e3ff;
}

.nav_logo_mobile_header {
    background-image: url('/assets/favicon/favicon152.png');
}

p {
    text-align: justify;
    text-justify: inter-word;
}

.container_school_nav {
    display: flex;
}

#dpl_map_contianer_buttons {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: center;
}

.dpl_map_location {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #132912;
    border-radius: 5px;
    border: 1px solid black;
}

.dpl_map_location_selected {
    background-color: #8cff87;
    z-index: 1000;
}

.dpl_map_location_button {
    background-color: #5f4058;
    padding: 7px 10px;
    border-radius: 5px;
    margin: 4px;
    color: white;
}

.dpl_map_location_button:hover {
    text-decoration: none;
    color: white;

}

.dpl_map_location_button_selected {
    background-color: #6f9c76;
}


/* THREE COLUMNS */
#three_columns {
    width: 100%;
    background-color: var(--color-dpl-1);
    color: white;
    display: flex;
    transition: all 0.33s ease;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 75px;
}

#three_columns li {
    flex-basis: calc(100% / 3);
    opacity: 0;
    position: relative;
    animation: fadeInUp 1s ease .33s forwards;
    animation-delay: .1111111111s;
}

#three_columns li:nth-child(2) {
    animation-delay: .2222222222s;
}

#three_columns li:nth-child(3) {
    animation-delay: .333333333s;
}

#three_columns a {
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#three_columns a,
#three_columns a:hover {
    transition: all .33s ease;
    text-decoration: none;
}

#three_columns a>div {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.33s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    overflow: hidden;
}

#three_columns a:hover>div {
    transform: translate(-50%, -50%) scale(1.1);
}

#three_columns a>div::before {
    position: absolute;
    background: #000;
    background: linear-gradient(180deg, #000 0%, rgba(0, 10, 17, 0) 100%);
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    opacity: .8;
    mix-blend-mode: multiply;
    transition: all .33s ease;
}

#three_columns a:hover>div::before {
    opacity: .5;
}

#three_columns a>div::after {
    content: "";
    transition: all .33s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #003057;
    opacity: 0;
    mix-blend-mode: multiply;
}

#three_columns a:hover>div::after {
    opacity: .7;
}

#three_columns a>span {
    position: relative;
    color: white;
    text-transform: uppercase;
    font-size: 22px;
    font-family: adobe-garamond-pro, serif;
    padding-bottom: 0px;
    transition: all .33s ease;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

#three_columns a:hover>span {
    padding-bottom: 25px;
}

@media (max-width: 768px) {

    .container_school_nav {
        flex-wrap: wrap;
    }

    #three_columns {
        flex-direction: column;
    }

}

#header_container>div:nth-child(2)>img {
    width: unset !important;
    ;
    height: unset !important;
    ;
}