html, body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav {
    width: 100vw;
    height: 20vh;
    min-height: 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-left: auto;
}

nav ul li {
    text-decoration: none;
    list-style-type: none;
    padding: 12.5px;
    font-size: 1.25vmax;
    font-weight: 500;
    color: #903293;
    cursor: pointer;
}

nav ul li a {
    text-decoration: none;
    color: #903293;
}

nav img {
    width: 12.5vmax;
    height: 6.25vmax;
}


.landing-section {
    width: 100vw;
    height: 40vh;
    background-image: url('../img/drone-shot-above-location.JPG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    position: relative;
    border-bottom: 2px solid #903293;
}

.landing-section-shade {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.landing-section-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.landing-section-container h1 {
    font-size: 4vmax;
    color: white;
    font-weight: 600;
}

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

.news-section-overall {
    max-height: 140vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-container-padding {
    box-sizing: border-box;
    padding: 4vmax;
    display: inherit;
    align-items: center;
    flex-direction: column;
}

.important-new-container {
    width: 50vmax;
    width: 100%;
    box-sizing: border-box;
    padding: 0vmax 0vmax 2vmax 0vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity .25s;
}

.important-new-container:hover {
    opacity: 0.3;
    transition: opacity .25s;
}

.news-sections-top {
    width:  80vw;
    min-height: 220px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0vmax 0vmax 5vmax 0vmax;
}

.news-sections-top .content {
    width: 100%;
    height: 30vh;
    max-height: 350px;
    display: flex;
    flex-direction: row;
    min-height: 300px;
    opacity: 1;
    transition: opacity 1s;
    overflow: hidden;
    text-decoration: none;
    color: black;
}

.news-sections-top .content .left-container {
    width: 40%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vmax;
}

.news-sections-top .content .left-container h1 {
    font-size: 2.2vmax;
    margin-bottom: 0px;
    margin-top: 0px;
}

.news-sections-top .content .left-container button {
    width: 13vmax;
    height: 4vmax;
    min-height: 4vmax;
    background-color: #903293;
    border: 0;
    border-radius: 7px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-size: 1.2vmax;
}

.news-sections-top .content .left-container button:hover {
    border: 1px solid #903293;
    color: #903293;
    background-color: transparent;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.news-sections-top .left-container p {
    font-size: 1.4vmax;
}

.news-sections-top .right-container {
    width: 60%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('./img/SF6_1471.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.news-row {
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.news-row .row-item {
    max-width: 27.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 12px 0px 12px;
    opacity: 1;
    transition: opacity .25s;
}

.news-row .row-item:hover {
    opacity: 0.3;
    transition: opacity .25s;
}

.news-row .row-item a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
}

.news-row .row-item a .row-image-container {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.news-row .row-item a .row-image-container img {
    width: auto;
    min-width: 100%;
    height: 100%;
}

.news-row .row-item a .row-info-container {
    width: 100%;
    height: 40%;
}

.news-row .row-item a .row-info-container h1 {
    margin-top: 10px;
    font-size: 1.5vmax;
}

.news-row .row-item a .row-info-container p {
    font-size: 1.2vmax;
}

footer {
    width: 100vw;
    height: 30vh;
    border-top: 2px solid #903293;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 290px;
}

footer .footer-container .top {
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

footer .footer-container .bottom {
    width: 100%;
    height: 25%;
    box-sizing: border-box;
    border-top: 1px solid rgb(200, 200, 200);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container .bottom p {
    opacity: 0.8;
    font-size: 1vmax;
}

footer .footer-container .bottom img {
    width: 2.5vmax;
    height: 2.5vmax;

}

footer .footer-container {
    width: 80%;
    height: 100%;
}

footer .footer-container .box-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

footer .footer-container .box-container .icon-container {
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

footer .footer-container .box-container img {
    width: 10vmax;
    height: 5vmax;
    padding: 0.5vmax;
}

footer .footer-container .logo-circle {
    padding: 0.6vmax;
}

footer .footer-container span {
    width: 3vmax;
    height: 3vmax;
    border-radius: 100%;
    background-color: white;
    border: 2px solid #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-container span {
    font-size: 1.5vmax;
    color: black;
}

footer ul {
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0;
}

footer ul li a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

footer ul li {
    font-size: 1.2vmax;
    padding: 0.2vmax;
}

footer ul h2 {
    font-size: 1.2vmax;
    margin: 0;
    padding: 0.2vmax
}

footer .top .box-container ul li {
    cursor: pointer;
}

footer .top .box-container .icon-container a {
    text-decoration: none;
}

footer .bottom p {
    text-align: center;
}

@media screen and (orientation: portrait) {
    .info-container {
        flex-direction: column;
    }

    .info-container .left-container {
        width: 100%;
        height: 50%;
        text-align: center;
    }

    .info-container .right-container {
        width: 100%;
        height: 50%;
    }
}

@media (orientation: portrait) {
    .news-row {
        min-width: 80vw;
        max-width: 80vw;
        overflow-x: scroll;
        justify-content: unset;
    }

    .news-row .row-item {
        min-width: 50vw;
        max-width: 50vw;
    }

    .important-new-container {
        flex-direction: column;
    }

    .news-sections-top {
        flex-direction: column;
    }

    .important-new-container .content {
        flex-direction: column-reverse;
    }

    .important-new-container .content .left-container {
        width: 100%;
        height: 40%;
        box-sizing: border-box;
        margin-top: 20px;
    }

    .important-new-container .content .right-container {
        width: 100%;
        height: 60%;
    }
}

@media screen and (max-width: 550px) {
    .landing-text-container {
        width: 80%;
    }

    .news-sections-top .content {
        height: 80vh;
    }

    .news-sections-top .content .left-container button {
        font-size: 1.6vmax;
    }
}

