* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Lexend';
	font-style: normal;
	text-decoration: none;
}


/*-------------------------------------------------------*/
/* SCREEN SIZE EXTRA SMALL*/

@media screen and (max-width: 576px) {

/*------------------------------------------------------*/
:root {
	--top-bar-height: 90px;
}
.nav-bar {
        position: fixed;
        z-index: 2000;
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--top-bar-height);
        left: 0px;
        top: 0px;
        background: black;
}
.block-body {
	margin-top: var(--top-bar-height);
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        width: 100%;
        height: 52.05px;
        gap: 10%;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar:hover {
        cursor: pointer;
}
.buttons {
        display: none;
}
.social-icons {
        display: none;
}
.sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 3000;
        top: 0;
        left: 0;
        background-color: #111111;
        overflow-x: hidden;
        transition: 0.5s;
}
.top-panel {
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        border-bottom: 1px solid grey;
}
.close-button {
        position: absolute;
        color: white;
        right: 0px;
        text-align: left;
        font-size: 250%;
        padding-right: 25px;
}
.sidebar-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: auto;
	gap: 27px;
        top: 15%;
        margin-left: 52.5px;

        font-weight: 700;
        font-size: 22.5px;
}
.sidebar-links a {
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
}
.side-btn {
	display: flex;
	font-size: clamp(21px, 5vw, 27px);
}
.side-extra-links {
	flex-direction: column;
}
.sidebar-social-icons {
        display: flex;
        flex-direction: row;
        gap: 4px;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	font-size: clamp(15px, 5vw, 18.75px);
}
.side-dropdown-content a {
	text-indent: 29px;
}
.dark-background {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2999;
        top: 0;
        left: 0;
        background-color: black;
        opacity: 0.5;
        overflow-x: hidden;
}

.event-side-links {
	flex-direction: column;
}

.sidebar-social-icons img {
	aspect-ratio: 1 / 1;
	width: clamp(33px, 10vw, 39px);
}


}




/*-------------------------------------------------------*/
/* SCREEN SIZE SMALL*/

@media screen and (min-width: 576px) and (max-width: 767.99px){

/*------------------------------------------------------*/

:root {
	--top-bar-height: 90px;
}
.nav-bar {
        position: fixed;
        z-index: 2000;
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--top-bar-height);
        left: 0px;
        top: 0px;
        background: black;
}
.block-body {
	margin-top: var(--top-bar-height);
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        width: 100%;
        height: 52.05px;
        gap: 10%;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar:hover {
        cursor: pointer;
}
.buttons {
        display: none;
}
.social-icons {
        display: none;
}
.sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 3000;
        top: 0;
        left: 0;
        background-color: #111111;
        overflow-x: hidden;
        transition: 0.5s;
}
.top-panel {
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        border-bottom: 1px solid grey;
}
.close-button {
        position: absolute;
        color: white;
        right: 0px;
        text-align: left;
        font-size: 250%;
        padding-right: 25px;
}
.sidebar-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: auto;
	gap: 27px;
        margin-left: 52.5px;
	padding-block: 45px;

        font-weight: 700;
        font-size: 22.5px;
}
.sidebar-links a {
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
}
.side-btn {
	display: flex;
	font-size: clamp(21px, 5vw, 27px);
}
.side-extra-links {
	flex-direction: column;
}
.sidebar-social-icons {
        display: flex;
        flex-direction: row;
        gap: 4px;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	font-size: clamp(15px, 5vw, 18.75px);
}
.side-dropdown-content a {
	text-indent: 29px;
}
.dark-background {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2999;
        top: 0;
        left: 0;
        background-color: black;
        opacity: 0.5;
        overflow-x: hidden;
}

.event-side-links {
	flex-direction: column;
}

.sidebar-social-icons img {
	aspect-ratio: 1 / 1;
	width: clamp(33px, 10vw, 39px);
}


}







/*-------------------------------------------------------*/
/* SCREEN SIZE MEDIUM*/

@media screen and (min-width: 768px) and (max-width: 991.99px){

/*------------------------------------------------------*/


:root {
	--top-bar-height: 90px;
}
.nav-bar {
        position: fixed;
        z-index: 2000;
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--top-bar-height);
        left: 0px;
        top: 0px;
        background: black;
}
.block-body {
	margin-top: var(--top-bar-height);
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        position: absolute;
        width: 100%;
        height: 52.05px;
        gap: 10%;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar:hover {
        cursor: pointer;
}
.buttons {
        display: none;
}
.social-icons {
        display: none;
}
.sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 3000;
        top: 0;
        left: 0;
        background-color: #111111;
        overflow-x: hidden;
        transition: 0.5s;
}
.top-panel {
        display: flex;
        align-items: center;
        width: 100%;
        height: 60px;
        border-bottom: 1px solid grey;
}
.close-button {
        position: absolute;
        color: white;
        right: 0px;
        text-align: left;
        font-size: 250%;
        padding-right: 25px;
}
.sidebar-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: auto;
	gap: 27px;
        margin-left: 52.5px;
	padding-block: 45px;

        font-weight: 700;
        font-size: 22.5px;
}
.sidebar-links a {
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
}
.side-btn {
	display: flex;
	font-size: clamp(21px, 5vw, 27px);
}
.side-extra-links {
	flex-direction: column;
}
.sidebar-social-icons {
        display: flex;
        flex-direction: row;
        gap: 4px;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	font-size: clamp(15px, 5vw, 18.75px);
}
.side-dropdown-content a {
	text-indent: 29px;
}
.dark-background {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2999;
        top: 0;
        left: 0;
        background-color: black;
        opacity: 0.5;
        overflow-x: hidden;
}

.event-side-links {
	flex-direction: column;
}

.sidebar-social-icons img {
	aspect-ratio: 1 / 1;
	width: clamp(33px, 10vw, 39px);
}


}






/*-------------------------------------------------------*/
/* SCREEN SIZE LARGE*/

@media screen and (min-width: 992px) and (max-width: 1199.99px){

/*------------------------------------------------------*/

:root {
	--top-bar-height: 90px;
}
.nav-bar {
        position: fixed;
        z-index: 2000;
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--top-bar-height);
        left: 0px;
        top: 0px;
        background: black;
}
.block-body {
	margin-top: var(--top-bar-height);
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        height: 52.05px;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar {
	display: none;
}
.buttons {
	display: flex;
        width: auto;
        height: auto;
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
	text-align: center;
	align-items: center;
}
.buttons a {
        text-decoration: none;
        color: white;
}
.nav-btn a:hover  {
        color: #8fb5a6;
	cursor: pointer;
}
.social-icons {
        display: flex;
	flex-direction: row;
}
.nav-btn {
	width: 8.5vw;
	height: 52px;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	justify-content: center;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	top: 70%;
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.extra-links-btn:hover .dropdown-content {
	display: block;
	animation: 0.5s fadeIn;
}
.event-btn:hover .dropdown-content {
        display: block;
        animation: 0.5s fadeIn;
}
.sidebar {
	display: none;
}
.top-panel {
        display: none;
}
.close-button {
	display: none;
}
.sidebar-links {
	display: none;
}
.sidebar-links a {
	display: none;
}
.side-btn {
	display: none;
}
.side-extra-links {
	display: none;
}
.sidebar-social-icons {
	display: none;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	display: none;
}
.side-dropdown-content a {
	text-indent: 29px;
}
.dark-background {
	display: none;
}

.event-side-links {
	display: none;
}

.sidebar-social-icons img {
	display: none;
}

}








/*-------------------------------------------------------*/
/* SCREEN SIZE EXTRA LARGE*/

@media screen and (min-width: 1200px) {

/*------------------------------------------------------*/

:root {
	--top-bar-height: 90px;
}
.nav-bar {
        position: fixed;
        z-index: 2000;
        display: flex;
        align-items: center;
        width: 100%;
        height: var(--top-bar-height);
        left: 0px;
        top: 0px;
        background: black;
}
.block-body {
	margin-top: var(--top-bar-height);
}
.nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        height: 52.05px;
}
.main-logo {
        display: inline-block;
        padding: 0px;
        width: auto;
}
.main-logo-img {
        width: 235px;
}
.menu-bar {
	display: none;
}
.buttons {
	display: flex;
        width: auto;
        height: auto;
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
	text-align: center;
	align-items: center;
}
.buttons a {
        text-decoration: none;
        color: white;
}
.nav-btn a:hover  {
        color: #8fb5a6;
	cursor: pointer;
}
.social-icons {
        display: flex;
	flex-direction: row;
}
.nav-btn {
	width: 8.5vw;
	height: 52px;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	justify-content: center;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	top: 70%;
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.extra-links-btn:hover .dropdown-content {
	display: block;
	animation: 0.5s fadeIn;
}
.event-btn:hover .dropdown-content {
        display: block;
        animation: 0.5s fadeIn;
}
.sidebar {
	display: none;
}
.top-panel {
        display: none;
}
.close-button {
	display: none;
}
.sidebar-links {
	display: none;
}
.sidebar-links a {
	display: none;
}
.side-btn {
	display: none;
}
.side-extra-links {
	display: none;
}
.sidebar-social-icons {
	display: none;
}
.sidebar-links a:hover, .close-button:hover {
        color: #8fb5a6;
        cursor: pointer;
}
.side-dropdown-content {
	display: none;
}
.side-dropdown-content a {
	text-indent: 29px;
}
.dark-background {
	display: none;
}

.event-side-links {
	display: none;
}

.sidebar-social-icons img {
	display: none;
}

}








