/*RESET*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: inherit;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

:hover {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
::-webkit-scrollbar {
    width:10px;
} 
::-webkit-scrollbar-track {
    background:#999999;
} 
::-webkit-scrollbar-thumb {
	background:rgb(0,0,0,0.5);
}

body {
    font-family: 'montserrat', sans-serif;
    color: #181818;
    width: 100%;
    height: 100%;
    position: relative;
}


/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');
strong {
    font-weight: 700;
}

p,
li {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 24px;
}

.sub-heading {
    font-family: 'bebas neue', cursive;
    font-size: 30px;
    letter-spacing: 1px;
}


/*OBJECTS*/
img {
    max-width: 100%;
}

.btn {
    font-family: 'bebas neue', cursive;
    font-size: 24px;
    padding: 10px 20px;
    background: #FF6600;
    color: white;
    display: inline-block;
}
.btn:hover,
.btn:focus {
    background: #0070C0;
}
.btn a:hover,
.btn a:focus {
    color: white;
}


/*LINKS*/
a:link,
a:hover,
a:visited,
a:active {
    color: inherit;
	text-decoration: none;
}
a:link {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
    color: #FF6600;
}


/*DIVS*/
section {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}
article {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding: 20px 0 75px 0;
    position: relative;
}

.logo {
    margin-top: 20px;
}

.col12n {
    width: calc(50% - 20px);
    margin: 0;
}

.portal {
    background: #0070C0;
    padding: 5px;
    text-align: right;
}
.portal .link {
    display: inline-block;
    font-family: 'bebas neue', cursive;
    font-size: 24px;
    background: white;
    color: #FF6600;
    padding: 5px 10px;
    margin: 0;
}
.portal .link:hover,
.portal .link:focus {
    padding: 5px 20px;
}

.alert {
    background: #FF6600;
    color: white;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.alert p {
    margin: 0;
}
.alert .link {
    display: inline-block;
    font-family: 'bebas neue', cursive;
    font-size: 24px;
    background: white;
    color: #FF6600;
    padding: 5px 10px;
    margin: 0;
}
.alert .link:hover,
.alert .link:focus {
    padding: 5px 20px;
}


/*MODIFIERS*/
.left {
    text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.justify {
	text-align: justify;
}

.ftlt {
    float: left;
}
.ftrt {
    float: right;
}
.clear {
    clear: both;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.mt-50 {
    margin-top: 50px;
}

.blue-bg {
    background: #0070C0;
    color: white;
}
.grey {
    color: #808080;
}


/*MEDIA QUERIES*/
@media (max-width:750px) {
    .col12n {
        width: 100%;
    }

    #drop {
        margin-top: 50px;
    }
}


@media (max-width:532px) {
}


@media (max-width:414px) {    
}