/* Base styles for desktop and large screens */
.aboutRow:nth-child(odd) {
    background: linear-gradient(to right, #098785, #067775);
    color: #fff;
}

.aboutRow:nth-of-type(1) {
    min-height: 400px;
    max-height: 485px;
    align-items: flex-start;
    margin-bottom: 100px;
    justify-content: center;
}

.aboutRow:nth-of-type(1) > div > img {
    margin-top: 60px;
    max-height: 500px;
    align-self: flex-start;
    flex-grow: 0;
}

.aboutRow:nth-of-type(2) {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.aboutRow:nth-of-type(3) {
    justify-content: center;
    flex-direction: column;
}

.aboutRow:nth-of-type(3) > div > img,
.aboutRow:nth-of-type(4) > div {
    padding: 75px 25px;
}

.aboutRow:nth-of-type(4) > div > img {
    box-shadow: 0px 0px 28px rgba(118, 21, 71, 0.16);
}

.description {
    font-size: 1.2em;
    width: 45%;
    min-width: 530px;
    padding-top: 3%;
    margin-right: 0;
    margin-left: 5%;
}

.description a {
    color: white;
}

.description a:visited {
    color: #ededed;
}

.welcome {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin: auto;
    width: 700px;
}

.logoItem {
    display: flex;
    width: 16%;
    margin-bottom: 2%;
    min-height: 135px;
    justify-content: center;
    align-items: center;
}

.logoItem > div > img {
    max-width: 98%;
    filter: drop-shadow(-8px 8px 0px #ededed);
}

.logoItem > div {
    display: flex;
    justify-content: center;
}

.logoContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    padding-top: 50px;
}

.logoItem {
    display: flex;
    width: 16%;
    margin-bottom: 2%;
    min-height: 135px;
    justify-content: space-evenly;
}

.logoItem > div > img {
    max-width: 70%;
    filter: drop-shadow(-8px 8px 0px #ededed);
}

.logoItem:nth-child(11n-4) {
    margin-left: 8%;
}

.logoItem:nth-child(11n) {
    margin-right: 8%;
}

.mobile-under-construction{
    display: none;
}

/* Styles for mobile view */
@media only screen and (max-width: 1024px) {
    /* Hide all existing content */
    .aboutRow, .logoContainer, .description, .welcome, .nav{
        display: none;
    }

    /* Show the construction message */
    .mobile-under-construction {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
        padding: 0 20px;
        background-color: #ffffff;
    }

    .mobile-under-construction img {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .mobile-under-construction h1 {
        font-family: 'Barlow Semi Condensed', sans-serif;
        font-size: 1.5em;
        color: #333;
        margin-bottom: 20px;
    }

    .mobile-under-construction a {
        display: inline-block;
        margin: 10px 20px;
        background-color: #098785;
        color: #fff;
        text-decoration: none;
        font-size: 1.2em;
        border-radius: 5px;
    }

    .mobile-under-construction a:hover {
        background-color: #067775;
    }

    button {
        display: block;
        width: 200px;
        height: 40px;
        line-height: 10px;
        font-size: 10px;
        font-family: 'Barlow Semi Condensed', sans-serif;
        text-decoration: none;
        color: #fff;
        background: #098785;
        letter-spacing: 2px;
        text-align: center;
        position: relative;
    }



}
