/* RESET BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body, h1, h2, h3, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* COLORS */
:root {
    --primary-color: #1a2749;
    --secondary-color: #155a9b;
    --gunmetal-gray: #353535;
    --white: #FFFFFF;
    --black: #000000;
}

/* GLOBAL STYLES */
body {
    background-color: var(--white);
    color: var(--gunmetal-gray);
    line-height: 1.6;
}
.checkbox,
.filter-checkbox{
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}
.row {
    height: auto;
    border: none;
    margin: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.hidden {
    display: none;
}
.section-title {
    font-size: 48px;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}
.standard-button {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 50px;
}
/*** Begin Nav ***/
.header{
	width:100%;
	position: fixed;
    top: 0;
	background-color: var(--primary-color);
	transition: top 0.5s;
    -webkit-transition: top 0.5s;
	z-index: 1;
}
.nav-wrapper{
	display: flex;
	justify-content: center;
}
.nav-wrapper-inner {
	width: 100%;
	max-width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu-button {
	position: relative;
	float: right;
	margin: 30px;
	display: none;
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 35px;
	height: 5px;
	background-color: var(--black);
	margin: 6px 0;
	transition: 0.4s;
}
.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-7px, 5px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-10.5px, -9px);
}

.nav-menu-large{
	display:block;
	position: static;
	padding: 10px;
}

.nav-menu-link:hover{
	color: #6689e3;
	transition:0.4s;
}

.nav-logo-link {
	display: flex;
	width: 200px;
	padding-left: 25px;
	align-items: center;
}

.nav-logo-img{
	max-width: 100%;
	max-height:85px;
	display: block;
}

.nav-menu-item{
	display: inline-block;
	cursor:pointer;
}

.nav-menu-link {
	padding: 0 10px 0 10px;
	position: relative;
	display: inline-block;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}

.active {
  color: var(--primary-color);
}

.nav-menu-mobile{
	width: 100%;
	height: 100vh;
	padding: 0;
}
.nav-menu-item-mobile{
  cursor:pointer;
  display: flex;
  flex-direction:column;
  list-style-type:none;
  padding-left: 30px;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
.menu-button {
	display:block;
}
.nav-menu-large{
	display:none;
}
.nav-menu-link{
	padding-top:24px;
}
}
/*** End Nav ***/



/*** Begin Homepage ***/
/*** Begin Full Hero ***/
.full-hero {
	position: relative;
	width: 100%;
    height: 80vh;
}
.full-hero-image-container,
.full-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.full-hero-image {
    object-position: 50% 50%;
    object-fit: cover;
}
.full-hero-title {
	font-weight: 700;
    font-size: 35px;
    color: black;
    z-index: 1;
    text-align: center;
}
.full-hero-text {
	z-index: 1;
    font-size: 18px;
    text-align: center;
    color: black;
}
/*** End Full Hero ***/
/*** Begin Presentation Section ***/
.presentation {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.presentation-description{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
}
.presentation-photo {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.presentation-title {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
}
.presentation-text {
    font-size: 16px;
    text-align: center;
}
.presentation-img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/*** End Presentation Section ***/
/*** Begin Next Events Section ***/
.next-events {
	width: 100%;
    position: relative;
    float: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.event {
	border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 60%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
}
.event-image-container{
    width: 35%;
    height: 100%;
}
.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}
.event-container {
	padding: 15px;
}
/*** End Next Events Section ***/
/*** End Homepage ***/



/*** Begin Small Hero ***/
.small-hero {
	position: relative;
	width: 100%;
    height: 25vh;
}
.small-hero-image-container,
.small-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.small-hero-image {
    object-position: 50% 50%;
    object-fit: cover;
}
.small-hero-title {
	font-weight: 700;
    font-size: 55px;
    color: black;
    z-index: 1;
}
.small-hero-text {
	z-index: 1;
    font-size: 18px;
    text-align: center;
    color: black;
}
.small-hero-container {
	width: 100%;
    height: 100%;
    padding: 20px 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
/*** End Small Hero ***/



/*** Begin Footer ***/
.footer {
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    border: none;
    margin: 0;
    background-color: #333333;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-row {
	width: 100%;
    display: flex;
}
.footer-column {
	border: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*** End Footer ***/



@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1070px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1070px), only screen and (min-resolution: 192dpi) and (max-width: 1070px), only screen and (min-resolution: 2dppx) and (max-width: 1070px) {
    .presentation{
        flex-direction: column;
    }
    .presentation-description {
        width:100%;
        padding: 0;
    }
    .presentation-photo {
        width: 100%;
    }
    .event {
        flex-direction: column;
    }
    .event-image-container {
        width: 100%;
    }
    .event-image {
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}