@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;
}

li {
    font-size: 16px;
    font-weight: 400;
    list-style-type: square;
    line-height: 1.5em;
}

.groundworks-ul {
    padding: 0 20px;
}

li::marker {
    color: #70319F;
}

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%;
}

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

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

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

.groundworks-content {
    margin: 20px 0;
    padding: 20px 0;
    display: flex;
    width: 100%;
}

.groundworks-content-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 3px;
}

.groundworks-content-right {
    width: 100%;
}

.groundworks-images {
    border-radius: 12px;
    /*-webkit-box-shadow: 5px 5px 18px 4px #70319F;*/
    /*box-shadow: 5px 5px 18px 4px #70319F;*/
    max-width: 800px;
}

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

.gallery-images {
    max-width: 50%;
    /*padding: 20px;*/
    border-radius: 12px;
    width: 25%;
}

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;
}