*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0 0;
    padding: 0 0;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Roboto&display=swap');
:root {
    --dark_blue: #0C094F;
    --highlight_blue: #47D0EE;
    --light_blue: #dce6ee;
    --white: #FFFFFF;
    --black: #000000;
}

#dark_blue {
    color: var(--dark_blue);
}

.dark_blue {
    color: var(--dark_blue)!important;
}

#black {
    color: var(--black);
}

#white {
    color: var(--white);
}

#white_bg {
    background-color: var(--white);
}

#dark_bg {
    background-color: var(--dark_blue);
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1;
    line-height: 1.55;
    color: var(--black);
}

body::selection {
    background-color: var(--highlight_blue);
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1280px;
}

a {
    text-decoration: none;
    text-emphasis: none;
    cursor: pointer;
    transition: all 300ms ease-in;
}

h1,
h2,
h3,
h4,
h5 {
    /* margin: 3rem 0 1.38rem; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin: 1rem 0rem;
}

h1 {
    margin-top: 0;
    font-size: 3.052rem;
    line-height: 114.5%;
}

h2 {
    font-size: 2.441rem;
    line-height: 122.5%;
    font-weight: 500;
}

h3 {
    font-size: 1.953rem;
    line-height: 127%;
    font-weight: 500;
}

h4 {
    font-size: 1.563rem;
    line-height: 133%;
}

h5 {
    font-size: 1.25rem;
    line-height: 120%;
}

p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
}

.psmall {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
}

.button {
    display: inline-block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    color: var(--white);
    background-color: var(--dark_blue);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
    border-radius: 24px;
    max-width: 300px;
    transition: all 500ms ease-in;
    margin: 1.2rem 0;
}

.button:hover {
    transform: translateY(-10px);
    box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
}

.hero_cta:hover {
    transform: translateY(-10px);
    box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
}

.navbutton:hover {
    transform: translateY(-10px);
    box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
}

.dark_navbutton:hover {
    transform: translateY(-10px);
    box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
}

.section_heading {
    /* padding: 2rem 0; */
    margin-bottom: 1rem;
}

.section_subheading {
    margin-top: 2rem;
}

.dark_nav {
    padding: 1.5rem 2rem;
    background-color: var(--dark_blue);
    display: flex;
    align-content: stretch;
    justify-content: space-between;
}

.submenu {
    padding: 0.5rem;
    background-color: white;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    box-shadow: 0px 9px 22px 1px rgba(12, 9, 79, 0.1);
    position: absolute;
}

.sub_navelement {
    margin: 0.5rem 0.5rem;
}

.submenu__link {
    color: var(--dark_blue)!important;
    margin: 2rem 0;
}

.submenu__link:hover {
    opacity: 0.5;
}

.submenu2 {
    /* padding: 0.5rem; */
    /* background-color: white; */
    width: 100%;
    margin-left: 2rem;
    border-radius: 8px;
    display: none;
    flex-direction: row;
    box-shadow: 0px 9px 22px 1px rgba(12, 9, 79, 0.1);
    /* position: absolute; */
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}

.sub_navelement2 {
    background-color: #201C66;
    /* padding: 0rem 3rem; */
    width: 8rem;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.3125rem
}

.submenu2__link {
    color: white;
    text-align: center;
    vertical-align: middle;
    /* margin: 2rem 0; */
}

.submenu2__link:hover {
    opacity: 0.5;
}

.light_nav {
    padding: 1.5rem 2rem;
    background-color: var(--white);
    display: flex;
    align-content: stretch;
    justify-content: space-between;
}

.center_align {
    text-align: center;
    margin: 0 auto;
}

.center_align_flex {
    display: flex;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.navelement {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-decoration: none;
    text-emphasis: none;
    list-style-type: none;
    padding: 0.8rem;
    transition: all 300ms ease-in;
    ;
}

.navlink::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--highlight_blue);
    border: 1px solid #47D0EE;
}


/* .navlink:hover{
    transform: translateY(-10px);
   box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
    
} */

.navelement a {
    color: var(--white);
}

.navelement:hover {}

.primarynav {
    display: flex;
    text-decoration: none;
    align-items: space-between;
}

.navbutton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    color: var(--dark_blue);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
    width: 120px;
    border-radius: 24px;
    margin-top: 20px;
    transition: all 500ms ease-in;
}

.dark_navbutton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: var(--dark_blue);
    color: var(--white);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
    width: 120px;
    border-radius: 24px;
    margin-top: 20px;
    transition: all 500ms ease-in;
}

.mobile_nav {
    display: none;
}

.mobile_nav_light {
    display: none;
}

.homepage_nav {
    position: relative;
}

.hero {
    background-color: var(--dark_blue);
    /* background-image: url(../img/home-bg.png);
    background-repeat: no-repeat;
    background-size: cover; */
    height: calc(100vh - 118px);
    display: flex;
    flex-direction: column;
    /* padding-top: 2rem; */
}

.hero_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100%
}

.hero_content {
    max-width: 450px;
    color: var(--white);
    padding: 2rem 0;
}

.hero_content p {
    font-weight: 300;
}

.caption {
    color: var(--highlight_blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    margin-bottom: 0;
    padding-bottom: 0.5rem !important;
}

.hero_cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    color: var(--dark_blue);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
    width: 120px;
    border-radius: 24px;
    margin-top: 20px;
    transition: all 500ms ease-in;
}

.hero_video {
    height: 60vh;
    border-radius: 8px;
}

.highlight_link a {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: underline;
}

.hero_deco_2 {
    content: "";
    position: relative;
    /* bottom: 0px; */
    top: 10px;
    width: 100%;
    height: 28px;
    background: linear-gradient(180deg, #ffffff33 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(270deg, #5FC6BF 0%, #E17625 39.8%, #008F47 66.16%, #0C094F 99.24%);
    background-blend-mode: normal, hard-light;
    opacity: 0.5;
    filter: blur(13px);
    z-index: 2;
    align-self: flex-end;
}

.hero_deco_3 {
    content: '';
    position: relative;
    z-index: 10;
    bottom: 0px;
    width: 100%;
    height: 6px;
    background: linear-gradient(270deg, #5FC6BF 0%, #E17625 39.8%, #008F47 66.16%, #0C094F 99.24%);
    align-self: flex-end;
}


/* 
.hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0px;
    width: 100%;
    height: 8px;
    background: linear-gradient(270deg, #5FC6BF 0%, #E17625 39.8%, #008F47 66.16%, #0C094F 99.24%);
} */

.hero_image--about {
    height: auto;
    width: 40vw;
    border-radius: 8px;
}

.cookie_pop-up {
    position: fixed;
    bottom: -8vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    width: 100vw;
    -webkit-animation-name: slide_up;
    animation-name: slide_up;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    /* transition: all 0.5s ease-in-out; */
}

@keyframes slide_up {
    from {
        bottom: -8vh;
    }
    to {
        bottom: 8vh;
    }
}

@keyframes slide_down {
    from {
        bottom: 8vh;
    }
    to {
        bottom: -8vh;
    }
}

.cookie_content {
    background-color: #201C66;
    padding: 1rem 1.5rem;
    border-radius: 48px;
    color: var(--white);
    display: flex;
}

.cookie_content p {
    font-size: 0.8rem;
}

.cookie_button {
    color: var(--highlight_blue);
    padding: 1rem;
    text-decoration: none;
    /* margin: 20rem;
    padding: 40rem; */
}

.cookie_button:hover {
    opacity: 0.5;
}

.pop_up_close_button {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close_bar {
    width: 2px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 29px;
    transform: rotate(45deg);
}

.close_bar_ {
    width: 2px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 29px;
    transform: rotate(-45deg);
    position: relative;
    right: 2px;
}

.close:hover {
    opacity: 0.5;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row_spacebetween {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row_spaceeven {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
}

.menu_button {
    position: fixed;
    top: 1.5rem;
    right: -50%;
    background-color: #0C094F;
    width: 164px;
    height: 42px;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 37px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.2s ease-in;
    cursor: pointer;
    z-index: 1000;
    overflow: hidden;
    /* display: none; */
}

.menu_button_fixed {
    /* position: fixed; */
    top: 1.5rem;
    /* right: -0%; */
    background-color: #0C094F;
    width: 80px;
    height: 42px;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 37px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.2s ease-in;
    cursor: pointer;
    z-index: 10000;
    overflow: hidden;
    /* display: none; */
}

.unhide {
    display: flex;
}

.menu_text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: white;
}

.menu_burger {
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 21px;
    transition: all 0.2s ease-in-out;
    /* transform: translateY(-0.25rem); */
}

.menu_burger::before,
.menu_burger::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 21px;
    transition: all 0.2s ease-in-out;
}

.menu_burger::before {
    transform: translateY(-0.5rem);
}

.menu_burger::after {
    transform: translateY(0.5rem);
}

.menu_button.open .menu_burger {
    transform: rotate(45deg);
}

.menu_button.open .menu_burger::before {
    transform: rotate(0deg);
}

.menu_button.open .menu_burger::after {
    transform: rotate(-90deg);
}

.menu_text_fixed {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: white;
}

.menu_burger_fixed {
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 21px;
    transition: all 0.2s ease-in-out;
    /* transform: translateY(-0.25rem); */
}

.menu_burger_fixed::before,
.menu_burger_fixed::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 21px;
    transition: all 0.2s ease-in-out;
}

.menu_burger_fixed::before {
    transform: translateY(-0.5rem);
}

.menu_burger_fixed::after {
    transform: translateY(0.5rem);
}

.menu_button_fixed.open .menu_burger_fixed {
    transform: rotate(45deg);
}

.menu_button_fixed.open .menu_burger_fixed::before {
    transform: rotate(0deg);
}

.menu_button_fixed.open .menu_burger_fixed::after {
    transform: rotate(-90deg);
}

.menu_content {
    position: fixed;
    right: 0;
    width: 0vw;
    height: auto;
    padding-top: 10%;
    padding-bottom: 10%;
    z-index: 999;
    background-color: #0C094F;
    display: flex;
    transition: ease-in-out 0.5s;
    /* justify-content: space-evenly; */
    align-items: center;
    overflow: hidden;
    /* padding: 1rem 10%; */
}

.menu_item_list {
    margin-left: 4rem;
    width: 50%;
    height: 100%;
    /* background-color: white; */
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_item_list ul {
    width: 80%;
}

.menu_item {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 31.25px;
    /* line-height: 127%;
    /* identical to box height, or 40px */
    /* letter-spacing: 0.01em; */
    color: #FFFFFF;
    list-style: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
}

.menu_item a {
    text-decoration: none;
    color: var(--white);
    /* line-height: 100%; */
}

.menu_register_button {
    margin-top: 1rem;
    width: 8rem;
    height: 2.5rem;
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_register_button .button_text {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #0C094F;
}

.menu_image_preview {
    /* margin: 1rem; */
    margin-right: 4rem;
    width: 320px;
    height: 390px;
    background-color: white;
}

.big_padding {
    padding: 8rem 0rem;
}

.mid_padding {
    padding: 6rem 0rem;
}

.small_padding {
    padding: 4rem 0rem;
}

.small_block_padding {
    padding: 1.5rem 0rem;
}

.section_heading {
    margin-top: 0.5rem;
}

.covid_content {
    max-width: 400px;
}

.covid_content p {
    padding-bottom: 2rem;
}

.covid-carousel {
    max-width: 40vw;
    background-color: var(--light_blue);
    border-radius: 16px;
    padding: 2rem 0rem;
    border-radius: 16px;
}

.covid_icon_content {
    text-align: center;
}

.single-logo {
    margin: 0.5rem;
}

.coaching_section {
    display: flex;
    justify-content: space-between;
}

.coaching_content {
    max-width: 450px;
    margin: 1rem 0;
}

.coaching_content p {
    margin-bottom: 2rem;
}

.coaching_video {
    /* background-image: url("./img/Coaching\ GIF\ compressed.gif");
    height: 400px;
    width: auto; */
    border-radius: 8px;
    margin-top: 2rem;
    width: 25vw
}

.cards_flex {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: last baseline;
    height: 360px;
    width: 300px;
    z-index: 0;
    border-radius: 0.5rem;
    /* box-shadow: 19px 14px 19px 7px rgba(149, 136, 136, 0.25); */
    margin: 2rem 1rem;
    padding: 0rem;
    background-repeat: no-repeat;
    transition: all 500ms ease-in;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 9px 22px 16px rgba(12, 9, 79, 0.1);
}

.card-logo {
    position: relative;
    top: 200px;
    margin: 1rem;
    color: var(--white);
    max-width: 300px;
    z-index: 100;
}

.gradient {
    background: linear-gradient(360deg, #0C094F -3.38%, rgba(0, 0, 0, 0) 50.94%);
    height: 100%;
    width: inherit;
    z-index: 1;
    border-radius: 0.5rem;
}

.card-title {
    position: relative;
    top: 180px;
    margin: 1rem;
    color: var(--white);
    max-width: 300px;
    z-index: 100;
}

.card-title_no_logo {
    position: relative;
    top: 300px;
    margin: 1rem;
    color: var(--white);
    max-width: 300px;
    z-index: 100;
}

.footernavelement {
    text-decoration: none;
    list-style: none;
    margin: 0.8rem 0;
}

.footer_end {
    text-decoration: none;
    list-style: none;
    margin: 1rem 1rem 0 0;
    color: var(--black);
    text-decoration: underline;
}

.footer_end a {
    color: var(--black);
    text-decoration: underline;
}

.footernavelement a {
    text-decoration: none;
    color: var(--black);
    text-decoration: underline;
}

.footernav {
    margin: 2rem 0 8rem 0;
}

.footer_primary_nav {
    margin: 0 2rem 0 0;
}

.footer_secondary_nav {
    margin: 0 2rem 0 0;
}

.footernavelement a:hover {
    opacity: 0.5;
}

.footer_details a {
    color: var(--dark_blue);
    font-size: 1.1rem;
    font-weight: 500;
}

.footer_details a:hover {
    opacity: 0.5;
}

.footer_details {
    margin: 0.5rem 0;
}

.footer_end_links {
    font-size: 0.8rem;
    color: #767676;
}

.training_session {
    display: flex;
}

.training_content h2 {
    margin-bottom: 1rem;
}


/* Coaching page */

.training_cover_image {
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
}

.training_img {
    margin-top: 5.8rem;
    border: 1px solid var(--highlight_blue);
    border-radius: 8px;
}

.training_content_block {
    max-width: 380px;
    margin: 1rem;
    color: var(--white);
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--highlight_blue);
    border-radius: 8px;
}

.training_content_block p {
    color: var(--white);
    font-size: 0.8 rem;
}

#ageappropriate_sessions {
    margin-top: 2rem;
}

.training_block_header {
    margin-top: 0 rem !important;
    padding: 0;
    font-size: 1.3rem;
}

.coaching_methods__content {
    max-width: 600px;
    padding-top: 2rem;
}

.coaching_method__content {
    padding-top: 1rem;
    max-width: 280px;
    margin-bottom: 2rem;
}

.coaching_methods {
    margin-top: 4rem;
}

.coaching_method {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
}

.coaching_method__heading {
    margin-top: 1.5rem;
}

.story_content {
    max-width: 300px;
    margin-top: 1rem;
}

.story_heading {
    margin: 0rem 0rem !important;
}

.story_logo {
    margin: 1.5rem 1rem;
    position: relative;
    top: 270px;
    z-index: 10000;
}

.emoji {
    font-size: 2rem;
}

.responsiveimg {
    width: auto;
    height: auto;
}

.bg_hero_events {
    height: 100vh;
    background-image: url(../img/events\ cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg_hero--heading {
    align-self: center;
}

.bg_hero--heading h1 {
    color: var(--white);
    align-self: center;
    text-align: center;
}

.bg_hero--heading h4 {
    color: var(--white);
    align-self: center;
    text-align: center;
}

.gallery {
    position: relative;
    z-index: 100;
    transform: translateY(-250px);
}

label {
    margin: 0.5rem 0;
}

input {
    font-size: 1.2rem;
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    border: 2px solid #8B8B8B;
    box-sizing: border-box;
    /* max-width: 400px; */
}

input:focus {
    border-radius: 4px;
}

.pic_upload {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    margin-right: 2rem;
    /* max-width: 80%; */
    margin-bottom: 1.5rem;
}

.form_section_header {
    padding-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    margin-right: 2rem;
}

.form-group input {
    min-width: 280px;
    max-width: auto;
}

.required {
    font-size: 1.2rem;
    color: red;
    font-weight: 500;
}

.photo {
    padding: 2rem;
    background: #BDD4DC;
    border: 2px dashed #9A9595;
    box-sizing: border-box;
    border-radius: 8px;
}

.divider {
    margin: 2rem 0;
}

.form-header-group {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 380px;
}

.form-header-group h4 {
    padding-right: 0.5rem;
}

.radio-button-group {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}

.radio-button {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: var(--dark_blue);
    color: var(--white);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
    width: 120px;
    border-radius: 24px;
    margin-top: 10px
}

.checkbox {
    font-size: 1.2rem;
}

.submission {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin: 1rem 0;
    align-items: baseline;
    border-radius: 1rem;
    flex-wrap: wrap;
}

.lightbg {
    background-color: var(--light_blue);
}

.ageappropriate_training {
    background-color: var(--dark_blue);
}

.trainingbg {
    background-color: var(--dark_blue);
}

.rotate {
    display: none;
}

.img_scholar {
    height: auto;
    margin: 2rem;
    border-radius: 8px;
}

.responsive_img {
    height: auto;
}

.mission_content {
    max-width: 480px;
}

.mission_heading {
    max-width: 400px;
}

.img_mission {
    border-radius: 8px;
}

.zoma_video {
    border-radius: 8px;
}

.slider {
    margin: 2rem 0;
}

.events_cards {
    position: relative;
    z-index: 100;
    transform: translateY(-20vh);
}

.staffcard {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: var(--light_blue);
    border-radius: 16px;
    margin: 1rem 0;
    border: 2px solid var(--dark_blue);
    margin-right: 2rem;
}

.staffname {
    max-width: 250px;
    margin-bottom: 0;
    color: var(--dark_blue);
}

.staffprofile {
    max-width: 250px;
    margin-top: 0.5rem;
}

.staffbio {
    max-width: 250px;
}

.staffimg {
    height: 100px;
    width: 100px;
    /* border: 2px solid var(--dark_blue); */
}


/* @media only screen and (min-width: 768px) {
    .container {
        width: 90%;
    }
    h1 {
        margin-top: 0;
        font-size: 2.8rem;
        line-height: 114.5%;
    }
    h2 {
        font-size: 2.4rem;
        line-height: 122.5%;
        font-weight: 500;
    }
    h3 {
        font-size: 1.9rem;
        line-height: 127%;
        font-weight: 500;
    }
    h4 {
        font-size: 1.rem;
        line-height: 133%;
    }
    h5 {
        font-size: 1.25rem;
        line-height: 120%;
    }
} */

@media (min-width: 950px) and (max-width: 1280px) {
    .container {
        width: 90%;
    }
    .card {
        width: 250px;
    }
}

@media (min-width: 768px) and (max-width: 950px) {
    .container {
        width: 90%;
    }
    .card {
        width: 220px;
    }
    .hero_video {
        /* width: 80vw; */
        height: 50vh;
    }
    .card-title {
        font-size: 1.2rem;
    }
}

@media (min-width: 708px) and (max-width: 1024px) and (orientation: portrait) {
    .container {
        display: none;
    }
    section {
        display: none;
    }
    header {
        display: none;
    }
    .hero {
        display: none;
    }
    .rotate {
        margin: 20vh auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--white);
        background-color: var(--black);
    }
    .bg_hero_events {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        width: 90%;
    }
    h1 {
        margin-top: 0;
        font-size: 2.4rem;
        line-height: 114.5%;
    }
    h2 {
        font-size: 2.0rem;
        line-height: 100%;
        font-weight: 500;
    }
    h3 {
        font-size: 1.7rem;
        line-height: 127%;
        font-weight: 500;
    }
    h4 {
        font-size: 1.363rem;
        line-height: 133%;
    }
    h5 {
        font-size: 1.25rem;
        line-height: 120%;
    }
    .big_padding {
        padding: 4rem 0rem;
    }
    .mid_padding {
        padding: 2rem 0rem;
    }
    .small_padding {
        padding: 1rem 0rem;
    }
    .dark_nav {
        display: none;
    }
    .light_nav {
        display: none;
    }
    .mobile_nav {
        display: block;
        background-color: var(--dark_blue);
    }
    .mobile_nav_light {
        display: block;
        background-color: var(--white);
    }
    .mobile_menu {
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
    }
    .menu_item_list {
        margin-left: 0rem;
        width: 100%;
        height: 100%;
        /* background-color: white; */
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu_item_list ul {
        width: 80%;
    }
    .menu_item {
        font-family: 'Montserrat', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 31.25px;
        /* line-height: 127%;
    /* identical to box height, or 40px */
        /* letter-spacing: 0.01em; */
        color: #FFFFFF;
        list-style: none;
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        transition: 0.5s all ease-in-out;
        /* justify-content: space-between; */
    }
    .submenu2 {
        /* padding: 0.5rem; */
        /* background-color: white; */
        width: 100%;
        /* padding-top: 2rem; */
        margin-left: 0rem;
        border-radius: 8px;
        display: none;
        flex-direction: column;
        box-shadow: 0px 9px 22px 1px rgba(12, 9, 79, 0.1);
        /* position: abs; */
        left: 0;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        transition: 0.5s all ease-in-out;
    }
    .sub_navelement2 {
        background-color: #201C66;
        /* padding: 0rem 3rem; */
        padding: 0.5rem 0rem;
        width: 100%;
        text-align: center;
        vertical-align: middle;
        border-radius: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0rem;
        margin: 0.3rem 0rem;
    }
    .submenu2__link {
        color: white;
        text-align: center;
        vertical-align: middle;
        /* margin: 2rem 0; */
    }
    .submenu2__link:hover {
        opacity: 0.5;
    }
    .hero_flex {
        flex-direction: column-reverse;
        max-width: none;
    }
    .hero {
        height: auto;
    }
    .hero_image--home img {
        /* position: relative;
        right: 20px; */
        width: 90vw;
        border-radius: 16px;
    }
    /* video {
        margin-top: 2rem;
        width: 85vw;
    } */
    .card {
        margin-top: 2rem;
    }
    .row_spacebetween {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .covid-carousel {
        margin-top: 2rem;
        max-width: 90vw;
    }
    .coaching_content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .footernav {}
    .footer_primary_nav {
        display: none;
    }
    .footer_social_actions {
        display: none;
    }
    .training_img {
        margin-top: 2rem;
        display: none;
    }
    .training_content_block {
        margin: 1rem 0;
    }
    .small_block_padding {
        margin: 0rem 0rem;
    }
    input {
        max-width: 90%;
    }
    .photo {
        max-width: 280px;
        ;
    }
    .hero_video {
        /* width: 80vw; */
        /* height: auto; */
        width: 90vw;
        height: auto;
        border-radius: 8px;
    }
    .coaching_video {
        width: 80vw;
    }
    .coaching_section {
        flex-direction: column-reverse;
        align-items: center;
    }
    .coaching_content h2 {
        text-align: center;
    }
    .coaching_content p {
        text-align: center;
    }
    .small_block_padding {
        padding: 0rem;
    }
    .hero_image--about {
        height: auto;
        width: 90vw;
        border-radius: 8px;
    }
    .hero_image--home img {
        border-radius: 8px !important;
    }
    .img_scholar {
        height: auto;
        width: 90vw;
        margin: 0;
        border-radius: 8px;
    }
    .img_mission {
        margin: 2rem 0;
    }
    .brachaddress {
        max-width: 300px !important;
    }
    .brachaddress {
        margin: 2rem 0;
    }
    .hero_image--coaching {
        width: 90vw;
    }
    .zoma_video {
        width: 85vw;
        border-radius: 8px;
    }
    .footer_secondary_nav {
        display: none;
    }
    .cards_flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}