@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

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

h1 {
    font-size: 4em;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    z-index: 10;
}

header .logo {
    position: relative;
}

header .navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

header .navigation li {
    list-style: none;
    margin: 0 10px;
    padding: 20px;
}

header .navigation li a {
    color: #000000FF;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.7;
    border-bottom: 2px solid transparent;
    transition:
            opacity 0.3s ease,
            border-bottom 0.3s ease;
}

header .navigation li a:hover {
    /*background-color: #70319F;*/
    /*color: #ffffff;*/
    /*padding: 15px;*/
    border-radius: 8px;
    opacity: 0.9;
    border-bottom: 2px solid #70319F;
}

.main-section {
    margin-top: 150px;
    padding: 15px 100px;
    width: 100%;
}

.about-title {
    margin: 20px 0;
    padding: 20px 0;
}

.line-break {
    color: #70319F;
}

.content-headings {
    color: #70319F;
    margin: 20px 0;
}

.about-content {
    margin-top: 40px;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    /*-webkit-box-shadow: 5px 5px 18px 4px #70319F;*/
    /*box-shadow: 5px 5px 18px 4px #70319F;*/
    border-radius: 12px;
    margin-top: 40px;
}

.about-grid img {
    border-radius: 12px;
}

.grid-left {
    width: 50%;
    padding: 20px;
}

.grid-right {
    width: 50%;
    padding: 20px;
}

.item-a {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.item-b {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    padding-bottom: 10px;
}

.item-c {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    padding-top: 10px;
}

.mission-container {
    display: flex;
    justify-content: space-between;
    -webkit-box-shadow: 5px 5px 18px 4px #70319F;
    box-shadow: 5px 5px 18px 4px #70319F;
    border-radius: 12px;
    margin-top: 80px;
}

.mission-content {
    width: 50%;
    padding: 20px;
}

.vision-content {
    width: 50%;
    padding: 20px;
}

.mission-image {
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

.our-staff {
    margin-top: 80px;
}

.staff-container {
    display: flex;
    justify-content: space-between;
    -webkit-box-shadow: 5px 5px 18px 4px #70319F;
    box-shadow: 5px 5px 18px 4px #70319F;
    border-radius: 12px;
}

.staff-left {
    width: 100%;
    padding: 20px;
}

.staff-right {
    width: 100%;
    padding: 20px;
}

.staff-image-container {
    display: flex;
    justify-content: center;
}

.staff-image {
    height: auto;
    max-width: 50%;
    position: center;
    border-radius: 12px;
}

.staff-content {
    margin-top: 20px;
}

footer {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
}

footer p {
    margin-top: 20px;
    width: 100%;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
}