* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

header, footer {
    background: rgb(22,34,71);
    background: linear-gradient(180deg, rgba(22,34,71,1) 0%, rgba(22,22,91,1) 100%);
}


.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 .75rem;
    
}

.active {
    color: white;
    border-bottom: 1px solid white;
    
}

/* NAV */

#topnav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0.8rem;
}

#topul {
    list-style: none;
    display: flex;
    align-items: center;
    
}

#topul li {
    margin: 0 1.3rem;
    font-size: 1.275rem;
    cursor: pointer;
    color: rgb(211, 211, 211);
}

#topul li:hover {
    opacity: .8;
}

#collapsableNav {
    display: none;
}

.cNavOn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0.8rem;
    background-color:rgb(255, 255, 255);
    border-radius: 2rem;
    margin-top: 3rem;
    border-bottom: .5rem solid #d4d4d4;
}

#collapsableUl {
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;

}

#collapsableUl li {
    font-size: 1.4rem;
    cursor: pointer;
    color: rgb(22,34,71);
    margin: 0;
    font-weight: bold;
    padding: 1.5rem 3rem;
    border-radius: .1rem;
}

.colactive {
    border-bottom: 1px solid rgb(22,34,71);
    border-top: 1px solid rgb(22,34,71);
    border-radius: 1rem;
}

#collapsableUl li:hover {
    color: black;
}

.menuBtn {
    font-size: 2.2rem;
    color: white;
    text-decoration: none;
    list-style: none;
    display: none;
    cursor: pointer;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 25%;
}

.menuBtn i {
    cursor: pointer;
}

.banner {
    padding: 5rem 0;
    padding-bottom: 8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.banner h1 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: white;
}

.banner h2 {
    font-size: 3.3rem;
    font-weight: 700;
    color: white;

}

.banner p {
    width: 60%;   
    opacity: .9;
    font-size: 2rem;
}

.banner a {
    color: white;
    cursor: pointer;
}


.banner span {
    color: #9da6e9;
}

.banner p {
    font-size: 1.2rem;
    opacity: .8;
    margin-top: 1rem;
    color: white;
}

.infobox {
    color: white;
    background-color: #0b1330;
    padding: 2rem;
    border-radius: .375rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    width: 60%;
}

.infobox i {
    font-size: 2rem;
    margin-bottom: 1rem;
}


main {
    padding: 4rem 0;
    background-image: url(img/background.png);
    background-size: cover;
}

.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
   width: 100%;
}

.top h1 {
    color:#1a3075;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
}

.top p {
    font-size: 1.25rem;
    line-height: 2rem;
    opacity: .7;
    margin-top: .4rem;
    padding: 0 5rem;
    text-align: center;
    width: 100%;
}

.details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.col {
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    padding: 3rem 2rem;
    background-color: rgb(233, 233, 233);
    border-radius: .375rem;
    border-bottom: .3rem solid rgba(65, 65, 65, .3);
    border-right: .3rem solid rgba(65, 65, 65, .3);
}


.col:nth-child(odd) {
    margin-right: 2rem;
}

.col i {
    color: #0b1330;
    font-size: 7rem;
    padding: 1rem;
}


.con h1 {
    color:#0b1330;
    border-bottom: 1px solid black;
    padding-bottom: .5rem;
}

.con a {
    color: #0b1330;
    font-size: 1.5rem;
    padding-top: .5rem;
    width: 100%;
    text-decoration: none;
}

.bottomDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgb(233, 233, 233);
    border-radius: .375rem;
    border-bottom: .3rem solid rgba(65, 65, 65, .3);
    border-right: .3rem solid rgba(65, 65, 65, .3);
    width: 100%;
}

.bannerEmergency {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0b1330;
}

.bannerEmergency i {
    font-size: 3rem;
    color: #0b1330;
    padding: 1rem;
    text-align: center;
}

.bannerEmergency h1 {
    font-size: 1.5rem;
    color: #0b1330;
    text-align: center;
}

.emergencyPhone {
    font-size: 1.2rem;
    margin: 1rem;
    color: #0b1330;
    text-align: center;
}

.warning {
    font-size: .9rem;
    opacity:  .9;
    color: #0b1330;
    border-top: 1px solid rgb(0, 0, 0);
    padding-top: 1rem;
    text-align: center;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

footer ul {
    justify-content: center;
}

footer ul li {
    margin: 0 1rem;
    color: white;
    list-style: none;
    text-align: center;
    flex-direction: row;
}

footer .social {
    margin: 1.15rem 0;
    text-align: center;
}

footer .social a {
    font-size: 2rem;
    color: white;
    margin: 0 0.3rem;
    opacity: .75;
    cursor: pointer;
}
footer .social i {
    cursor: pointer;
}


footer .social a:hover {
    opacity: .9;
}

footer p {
    text-align: center;
    color: white;
    opacity: .4;
}

footer p a {
    cursor: pointer;
    color: white;
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 8px;
    border-radius: 1rem;
}

::-webkit-scrollbar-corner {
    border-radius: 1rem;
}

::-webkit-scrollbar-track {
    
    opacity: 0;
    background: rgb(255, 255, 255);
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover{
    background:#0c1120;
}

::-webkit-scrollbar-track-piece {
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
    background: #131b32;
}

@media (max-width: 700px) {
    .top p {
        padding: 0;
    }

    .post {
        flex-direction: column;
    }

    .post.reverse {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }

    .cta {
        padding: 1rem;
        text-align: center;
        flex-direction: column;
    }

    .cta p {
        margin-bottom: 1rem;
    }

    .details {
        flex-direction: column;
        
    }

    .col:nth-child(odd) {
        margin-right: 0;
        width: 100%;
        margin-bottom: 2rem;
    }

    .banner p {
        width: 90%;
    }

    .infobox {
        width: 90%;
    }

    .con a {
        font-size:5vw;
    }

}
@media (max-width: 620px) {
    #topnav ul li { 
        display:none;
        flex-direction: column;
    }

    .menuBtn {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }
}

@media (min-width: 620px) {

    #collapsableNav {
        display: none;
    }
}

@media (max-width: 511px) {
    .top h1{
        font-size: 1.7rem;
    }
}


