/*Initial Body Attributes*/
body {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Raleway',sans-serif;
    padding: 0;
    margin: 0;
}

    body.noscroll {
        overflow: hidden;
        height: 100vh;
    }

/*Homepage*/
/*Contents layout*/
.body-contents {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
}

/*Navigation Bar & Cover*/
/*Starting with the Upper Part*/
.navigation-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    background-color: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    margin: 20px 0;
}

.nav-list-left {
    display: flex;
    flex-flow: row nowrap;
    margin-left: 10px;
    margin-top: 10px;
}

    .nav-list-left img:last-child {
        width: 400px;
        height: auto;
        align-self: center;
        margin-left: 5px;
    }

.nav-list-right {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

    .nav-list-right a {
        text-decoration: none;
        padding: 10px 15px;
        -o-transition: 0.3s;
        transition: 0.3s;
        color: white;
    }

        .nav-list-right a:last-child {
            border-radius: 5px;
            background-color: rgb(0,134,216);
            color: white;
        }

        .nav-list-right a:hover {
            background-color: rgb(0, 134, 216);
            color: white;
        }

        .nav-list-right a:last-child:hover {
            color: rgb(0,134,216);
            background-color: gainsboro;
            outline: 1px solid rgb(0, 134, 216);
        }
/*Full-Screen Initial*/
.nav-list-right-full-screen {
    display: none;
}

    .nav-list-right-full-screen button {
        border-collapse: collapse;
        background-color: rgb(0, 134, 216);
        color: white;
        border-radius: 5px;
        padding: 7px 13px;
        padding-top: 6px !important;
        font-size: 1.2em;
        transition: 0.2s;
        border: none;
        cursor: pointer;
    }

        .nav-list-right-full-screen button:hover {
            background-color: white;
            color: rgb(0, 134, 216);
        }

/*Resized Navigation Bar Full-Screen*/
#full-screen-navigation {
    position: fixed;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: rgba(0, 162, 255, 0.8);
    transition: height 0.3s ease-in-out;
    z-index: 9999;
}

#full-screen-navigation-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    #full-screen-navigation-links a {
        color: white;
        background-color: rgb(0,162,255);
        width: 100%;
        text-align: center;
        text-decoration: none;
        padding: 10px 15px;
    }

        #full-screen-navigation-links a:hover {
            filter: brightness(120%);
        }

#full-screen-navigation a:last-child {
    color: rgba(0, 162, 255);
    background-color: white;
}

    #full-screen-navigation a:last-child:hover {
        background-color: rgba(0,162,255);
        color: white;
    }

.btn-close {
    position: absolute;
    top: 0 !important;
    right: 50px !important;
    margin: 30px !important;
}

    .btn-close button {
        background-color: rgb(5, 84, 132) !important;
        border-collapse: collapse;
        color: white;
        padding: 10px 13px;
        border: none;
        cursor: pointer;
        text-wrap: nowrap;
        border-radius: 5px;
    }

        .btn-close button:hover {
            background-color: white !important;
            color: rgb(0,134,216) !important;
        }

/*Services & Projects Accorditions*/
.serv-n-pro {
    position: relative;
    display: inline-block;
}

.serv-n-pro-links {
    display: none;
    z-index: 2;
    position: absolute;
    top: -10px;
    left: -75px;
}

    .serv-n-pro-links img:first-child {
        width: 300px;
        height: 500px;
        display: block;
    }

.serv-n-pro:hover > a {
    background-color: rgb(0, 134, 216);
    color: white;
}

.serv-n-pro:hover .serv-n-pro-links {
    display: block;
}

.serv-n-pro-linklist, .serv-n-pro-linklist-1 {
    position: relative;
    margin-top: -395px;
    margin-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
}

    .serv-n-pro-linklist a, .serv-n-pro-linklist-1 a {
        color: rgba(0,134,216,1) !important;
        text-decoration: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: white !important;
    }

    .serv-n-pro-linklist-1 a {
        color: white !important;
        background: rgba(0,134,216,1) !important;
    }

        .serv-n-pro-linklist a img, .serv-n-pro-linklist-1 a img {
            width: 15px !important;
            height: 15px !important;
            margin-right: 5px;
        }

        .serv-n-pro-linklist a:hover, .serv-n-pro-linklist-1 a:hover {
            outline: none !important;
            font-weight: bold;
        }

            .serv-n-pro-linklist a:hover > img, .serv-n-pro-linklist-1 a:hover > img {
                width: 20px !important;
                height: 20px !important;
            }

.serv-n-proj-accordition {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: max-height 0.4s ease-in;
    display: flex;
    flex-direction: column;
}

    .serv-n-proj-accordition a {
        width: inherit !important;
        background-color: rgba(255,255,255,0.75) !important;
        color: rgb(0, 162, 255) !important;
    }

        .serv-n-proj-accordition a:hover {
            background-color: white !important;
            font-weight: bold;
        }

    .serv-n-proj-accordition span {
        margin-right: 10px;
    }

    .serv-n-proj-accordition a > img {
        float: left;
    }

.serv-n-proj-fullscreen-toggle.active + .serv-n-proj-accordition {
    max-height: fit-content;
}

/*Cover Section */
.cover {
    position: relative;
    width: 100%;
    height: 100vh;
}

.the-image img:last-child {
    width: 100%;
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
    height: 100vh;
    object-fit: cover;
}

.cover-text {
    position: absolute;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 19px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    color: white;
    z-index: 1;
}

.cover-title {
    font-size: 40px;
    font-weight: bold;
}

.cover-paragraph {
    font-size: 27px;
}

.cover-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.cover-text a:first-child {
    padding: 10px 15px;
    background-color: rgb(0, 134, 216);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
}

    .cover-text a:first-child:hover {
        background-color: rgba(0,134,216,0.6);
    }

.cover-text a:last-child {
    padding: 10px 15px;
    background-color: white;
    color: rgb(0, 134, 216);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
}

    .cover-text a:last-child:hover {
        background-color: rgba(255,255,255,0.6);
    }

/*About Us Section*/
.description {
    background-color: rgb(223, 230, 235);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.description-above {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.description-text {
    padding: 40px;
}

    .description-text h1 {
        font-size: 35px;
        font-weight: bold;
    }

    .description-text p {
        font-size: 23px;
    }

.description img {
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.2);
    border-radius: 6px;
}

.description-button {
    width: 100%;
    text-align: center;
    margin-top: 35px;
}

    .description-button a {
        text-decoration: none;
        color: white;
        background-color: rgb(0, 134, 216);
        border-radius: 5px;
        padding: 10px 15px;
        transition: 0.2s;
    }

        .description-button a:hover {
            outline: 1px solid rgb(0, 134, 216);
            color: rgb(0, 134, 216);
            background-color: transparent;
        }

/*Services Section*/
.services-section, .featured-projects, .contact-us {
    padding: 15px;
}

.services-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
    padding: 10px;
}

.service-col {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    width: 30%;
    text-align: center;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

    .service-col div:first-child {
        width: 100%;
        text-align: center;
    }

.service-description {
    text-align: left;
}

    .service-description li {
        list-style-type: none;
        list-style-image: url("../icons/icon4-resized.png");
    }

/*Featured Projects Section*/
.project-containers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.project-container {
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 30%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

    .project-container img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        z-index: -1;
    }

.project-feature {
    position: relative;
    color: white;
    text-align: center;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(0,0,0,0.5);
    padding: 10px;
}

    .project-feature span {
        font-size: 1.25em;
    }

    .project-feature a {
        text-decoration: none;
        padding: 10px 15px;
        background-color: rgb(0, 134, 216);
        color: white;
        transition: 0.2s;
        border-radius: 5px;
    }

        .project-feature a:hover {
            background-color: transparent;
            color: rgb(0, 134, 216);
            outline: 1px solid rgb(0,134,216);
        }

/*Contact Us Section*/
.contact-us {
    background-color: rgba(172, 171, 171, 0.2);
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-us-header {
    text-align: center;
}

.contact-us-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 5px;
}

.contact-col {
    width: 20%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    text-align: center;
    padding: 20px;
    background-color: white;
}

    .contact-col img {
        max-height: 100px;
    }

    .contact-col p {
        color: grey;
        font-weight: bold;
    }

/*Footer Section*/
.footer, .footer-1 {
    background-color: rgb(5, 84, 132);
    color: white;
    width: 100%;
    min-height: 100px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.footer-col-1 {
    display: flex;
    flex-direction: column;
    flex: 30%;
    gap: 16px;
    align-items: center;
    font-size: 18px;
}
#foot-image{
    width: 120px;
    height: 120px;
}

.social-media-icons img {
    width: 30px;
    height: 30px;
}

.social-media-icons a:hover img {
    filter: opacity(60%);
}

.footer-col-2 {
    flex: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footer-subcol-1 {
    display: flex;
    flex-direction: column;
}

    .footer-subcol-1 span:first-child {
        font-weight: bold;
    }

.footer-linkcol {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .footer-linkcol a {
        color: white;
        transition: color 0.3s;
    }

        .footer-linkcol a:hover {
            color: darkcyan;
        }
/*Navigation Bar for other pages*/
.navigation-bar-1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.nav-list-left-1 {
    display: flex;
    flex-flow: row nowrap;
}

    .nav-list-left-1 img:last-child {
        align-self: center;
        margin-left: 5px;
    }

.nav-list-right-1 {
    display: inline-block;
}

    .nav-list-right-1 a {
        text-decoration: none;
        padding: 10px 15px;
        -o-transition: 0.3s;
        transition: 0.3s;
        color: black;
    }

        .nav-list-right-1 a:last-child {
            border-radius: 5px;
            background-color: rgb(0,134,216);
            color: white;
        }

        .nav-list-right-1 a:hover {
            background-color: rgb(0, 134, 216);
            color: white;
        }

        .nav-list-right-1 a:last-child:hover {
            color: rgb(0,134,216);
            background-color: gainsboro;
            outline: 1px solid rgb(0, 134, 216);
        }

.nav-list-right-full-screen-1 {
    display: none;
}

    .nav-list-right-full-screen-1 button {
        border-collapse: collapse;
        background-color: rgb(0, 134, 216);
        color: white;
        border-radius: 5px;
        padding: 7px 13px;
        padding-top: 6px !important;
        font-size: 1.2em;
        transition: 0.2s;
        border: none;
        cursor: pointer;
    }

        .nav-list-right-full-screen-1 button:hover {
            background-color: white;
            color: rgb(0, 134, 216);
            outline: 1px solid rgb(0, 134, 216);
        }

.footer-1 {
    overflow-x: hidden;
}
/*About Us*/
.about-us {
    display: flex;
    flex-direction: column;
}

.about-us-above {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
}

.about-us-header, .check-info {
    width: 55%;
    padding: 15px;
}

.about-us-header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
}

.about-us-title {
    font-size: 80px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

    .about-us-title span:last-child {
        color: royalblue;
    }

.about-us-paragraph {
    font-size: 24px;
}

.features {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
    padding: 40px 10px;
    background-color: aliceblue;
}

.feature {
    flex: 0 0 calc((100% - 20px)/4);
    display: flex;
    flex-direction: row;
}

    .feature::after {
        content: '';
        height: 100px;
        width: 2px;
        background-color: lightgrey;
        display: block;
    }

    .feature:last-child::after {
        display: none;
    }

.feature-image {
    box-sizing: border-box;
    padding: 15px;
    border-radius: 50%;
    align-self: center;
    background-color: rgba(176, 196, 222,0.4);
}

    .feature-image img {
        width: 40px;
        height: auto;
    }

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}

    .feature-content span:first-child {
        font-weight: bold;
        color: royalblue;
    }

.more-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
}

.check-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .check-info a {
        text-decoration: none;
        background-color: rgb(0, 134, 216);
        color: white;
        padding: 10px 15px;
        border-radius: 5px;
        display: block;
        width: fit-content;
        transition: 0.3s;
    }

        .check-info a:hover {
            outline: 1px solid rgb(0, 134, 216);
            color: rgb(0, 134, 216);
            background-color: transparent;
        }

.image-about {
    width: 45%;
    padding: 10px;
    position: relative;
    text-align: center;
}

    .image-about img {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
/*Project Types*/
.project-types-container {
    box-sizing: border-box;
}

    .project-types-container h1 {
        margin: 30px;
    }

.project-types-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.project-type {
    width: inherit;
    box-sizing: border-box;
    max-height: 300px;
    position: relative;
}

    .project-type img {
        height: 300px;
        width: inherit;
        box-sizing: border-box;
        filter: brightness(50%);
        object-fit: cover;
    }

.project-type-cover {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: inherit;
    align-self: center;
    box-sizing: border-box;
    padding: 20px;
    z-index: 1;
}

    .project-type-cover a {
        text-decoration: none;
        width: inherit;
        color: white;
        font-size: 70px;
        padding: 40px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
    }

        .project-type-cover a span {
            float: right;
            margin-right: 40px;
        }

        .project-type-cover a:hover {
            font-weight: bold;
        }
/*Type*/
.section-cover {
    color: white;
    position: relative;
}

    .section-cover img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        filter: brightness(50%);
    }

.cover-text-section {
    position: absolute;
    width: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    font-weight: bold;
}

/*Projects Display Card Section*/
.card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card-block {
    width: 25%;
    height: 550px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .card-block img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        z-index: -1;
        overflow: hidden;
        box-sizing: border-box;
        transition: transform 0.4s ease-in-out;
    }

.card-content {
    padding: 0 15px;
    overflow: hidden;
    height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255,255,255,0.9);
    text-align: center;
    transition: height 0.4s ease-in-out;
}

.card-block:hover .card-content {
    height: 100%;
}

.card-block:hover img {
    transform: scale(1.2);
}

.card-content span {
    color: rgb(169, 169, 169);
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 3px 0;
}

    .card-content span:last-of-type {
        color: black !important;
        font-weight: bold !important;
        font-size: 14px !important;
        margin-bottom: 6px;
        font-family: 'Gill Sans', sans-serif !important;
    }

    .card-content span:first-child {
        color: black;
        font-size: 25px;
    }

.card-content a {
    padding: 10px 15px;
    text-decoration: none;
    background-color: rgb(0, 134, 216);
    color: white;
    border-radius: 5px;
    transition: 0.2s;
}

    .card-content a:hover {
        outline: 1px solid rgb(0, 134, 216);
        color: rgb(0, 134, 216);
        background-color: transparent;
    }
/*Project-Specific*/
.project-doc {
    position: relative;
    width: 100%;
}

    .project-doc img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        filter: brightness(50%);
    }

.project-info-section {
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    padding: 0 20px;
    min-height: 100px;
    box-sizing: border-box;
    width: inherit;
    background: linear-gradient(to top, rgb(0,134,216,0.5),transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-n-time {
    display: flex;
    flex-direction: row;
}

.project-header {
    font-weight: bold;
    font-size: 35px;
}

.loc-n-time span {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .loc-n-time span:last-child {
        margin-left: 10px;
    }

.loc-n-time img, .attribute img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    filter: brightness(100%);
}

.project-type {
    border-left: 10px solid transparent;
    font-size: 25px;
    padding: 0 10px;
}

.violet-villa {
    border-image: linear-gradient(to top, violet, purple) 1 !important;
}

.red-resident {
    border-image: linear-gradient(to top, red, rgb(97, 0, 0)) 1 !important;
}

.orange-commercial {
    border-image: linear-gradient(to top, rgb(225, 146, 0), rgb(109, 71, 0)) 1 !important;
}

.green-hospitality {
    border-image: linear-gradient(to top, rgb(0, 248, 120), rgb(1, 135, 46)) 1 !important;
}

.yellow-education {
    border-image: linear-gradient(to top, rgb(244, 248, 0), rgb(123, 113, 1)) 1 !important;
}

.project-type.grey-government {
    border-image: linear-gradient(to top, rgb(165, 165, 165), rgb(0, 0, 0)) 1 !important;
}

.hydraulics-colora {
    border-image: linear-gradient(to top, rgb(208, 255, 0), rgb(84, 139, 1)) 1 !important;
}

.mid-body-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
    padding: 15px;
}

.left-column-project {
    flex: 75%;
}

.right-column-project {
    flex: 25%;
}

.right-column-info {
    margin-top: 20px;
    background-color: rgb(0, 75, 118);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    text-align: center;
}

    .right-column-info span {
        margin-bottom: 15px;
    }

        .right-column-info span:first-child {
            font-size: 24px;
            font-weight: bold;
        }

    .right-column-info a {
        text-decoration: none;
        color: rgba(0,134,216,1);
        background-color: white;
        border-radius: 5px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .right-column-info a:hover {
            background-color: transparent;
            outline: 1px solid white;
            color: white;
        }

.project-description {
    font-size: 20px;
    padding: 10px 20px;
}

    .project-description p {
        margin-bottom: 30px;
    }

.project-gallery {
    background-color: aliceblue;
    box-sizing: border-box;
    padding: 35px 0;
}

    .project-gallery h2 {
        margin: -10px 10px 10px 20px;
    }

.project-gallery-slideshow {
    position: relative;
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgb(0, 134, 216);
}

.project-gallery-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 40px 0;
}

    .project-gallery-images span {
        flex: 0 0 33.33%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
        background-color: rgb(0,124,210);
        cursor: pointer;
        box-sizing: border-box;
    }

        .project-gallery-images span img {
            position: relative;
            box-sizing: border-box !important;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .project-gallery-images span:hover > img {
            filter: brightness(120%);
            outline: 1px solid rgb(0, 134, 216);
        }

.gallery-arrows {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 100%;
    box-sizing: border-box !important;
}

    .gallery-arrows a {
        text-decoration: none;
        background-color: rgb(5, 84, 132,0.75);
        color: white;
        font-weight: bold;
        padding: 0 32px;
        transition: 0.3s;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
    }

        .gallery-arrows a:hover {
            background-color: rgba(5,84,132,0.3);
        }

        .gallery-arrows a span {
            align-self: center;
        }

/*Carousel*/
#slideshow {
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 75, 118,0.6);
    position: fixed;
    z-index: 9999;
}

.slide {
    display: none;
    max-width: 100%;
    text-align: center;
    max-height: 100vh;
}

.slideshow-container button {
    border-collapse: collapse;
    background-color: rgba(0, 134, 216,0.6);
    color: white;
    border-radius: 5px;
    padding: 7px 13px;
    padding-top: 6px !important;
    font-size: 1.2em;
    transition: 0.2s;
    border: none;
    position: absolute;
    margin: 10px;
    top: 0;
    right: 0;
    margin-right: 25px;
    cursor: pointer;
    z-index: 2;
}

    .slideshow-container button:hover {
        background-color: rgba(255,255,255,0.6);
        color: rgb(0, 134, 216);
    }

.slideshow-container a {
    width: fit-content;
    text-decoration: none;
    color: rgb(0,134,216);
    background-color: rgba(0,0,0,1);
    transition: 0.3s;
    padding: 10px 15px;
    padding-bottom: 12px;
    position: absolute;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

    .slideshow-container a:first-of-type {
        left: 0;
    }

    .slideshow-container a:last-of-type {
        right: 0;
    }

    .slideshow-container a:hover {
        background-color: rgba(0, 162, 255, 0.8);
        color: white;
    }

.slide img {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    box-sizing: border-box;
}

.caption {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0);
    padding: 10px 15px;
    background-color: rgba(0,0,0,0.6);
    margin-bottom: 10px;
    color: rgb(68, 175, 241);
    font-weight: bold;
}

.project-highlights {
    background: Linear-gradient(to bottom right,rgb(20, 1, 75), rgb(3, 104, 167));
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    color: white;
}

    .project-highlights span:first-child {
        font-size: 24px;
        font-weight: bold;
    }

.attributes {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

.attribute {
    text-align: left;
    display: flex;
    flex-direction: column;
}

    .attribute span:first-child {
        color: rgb(0,162,255);
        font-size: 18px;
    }

    .attribute span:last-child {
        font-weight: bold;
        font-size: 20px;
    }
/*Resizing Desktop Modifications*/
@media only screen and (max-width: 1310px) {
    .contact-col p {
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 1200px) {
    .project-gallery-images span {
        width: 46%;
    }
}

@media only screen and (max-width: 1030px) {
    .cover-text {
        width: 80%;
    }

    .contact-col {
        width: 30%;
    }

    .description {
        padding: 30px;
    }

    .left-column-project {
        flex: 65%;
    }

    .right-column-project {
        flex: 35%;
    }
}


/*Resizing iPad & Tablet Editions*/
@media only screen and (max-width: 1000px) {
    .project-gallery-images span {
        flex: 0 0 50%;
    }

    .about-us-title {
        font-size: 50px;
    }

    .about-us-paragraph {
        font-size: 17px;
    }
}

@media only screen and (max-width: 950px) {
    .services-columns {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 30px;
        padding: 10px;
    }

    .service-col {
        width: inherit;
    }

    .description img {
        display: none;
    }

    .description-text {
        font-size: 0.8em;
    }

    .project-containers {
        gap: 30px;
    }

    .project-container {
        width: 46%;
    }

    .card-block {
        width: 40%;
    }

    .cover-text-section {
        width: 80%;
    }

    .features {
        flex-wrap: wrap;
    }

    .feature {
        flex: 0 0 calc((100% - 20px)/2);
    }

        .feature:nth-child(2n)::after {
            display: none;
        }

    .project-type-cover a {
        font-size: 45px;
    }
}

@media only screen and (max-width: 850px) {
    .project-container {
        width: 46%;
    }

    .cover-text {
        width: 90%;
    }

    .description-text p {
        font-size: 12px;
    }

    .description {
        display: flex;
        flex: 1;
    }

    .nav-list-right, .nav-list-right-1 {
        display: none;
    }

    .nav-list-right-full-screen, .nav-list-right-full-screen-1 {
        display: block;
    }

    .cover-text-section {
        padding: 20px;
    }

    .project-gallery-images span {
        width: 100%;
        height: 300px;
    }
}

@media only screen and (max-width: 700px) {
    .cover {
        min-height: 800px;
        overflow: hidden;
        position: relative;
    }

    .project-containers {
        display: flex;
        flex-direction: column;
    }

    .project-container {
        width: inherit;
    }

    .contact-us-container {
        display: flex;
        flex-direction: column;
    }

    .contact-col {
        width: inherit;
        margin-bottom: 15px;
    }

    .the-image img:last-child {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .mid-body-columns {
        flex-direction: column;
    }
}

/*Resizing Mobile Editions*/
@media only screen and (max-width: 650px) {
    .card-block {
        width: 100%;
    }

    .project-gallery-images span {
        height: 200px;
    }

    .about-us-above, .more-info {
        flex-direction: column;
    }

    .about-us-header, .check-info, .image-about {
        width: 100%;
    }

    .features {
        flex-direction: row;
    }

    .feature {
        flex: 0 0 calc((100% - 20px));
    }

        .feature::after {
            display: none;
        }

    .project-type-cover a {
        font-size: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .project-gallery-images span {
        flex: 0 0 100%;
    }
}

@media only screen and (max-width: 570px) {
    .cover-text {
        width: 90%;
        top: 25%;
        scale: 90%;
    }

    .check-info a {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 500px) {
    .project-type {
        max-height: 150px;
    }

        .project-type img {
            height: 150px;
        }

    .project-type-cover a {
        font-size: 17px;
    }
}

@media only screen and (max-width: 450px) {

    .cover-text {
        left: 0;
        text-align: center;
        width: 90%;
        top: 25%;
        scale: 90%;
    }

    .the-image img:last-child {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .cover-buttons {
        display: flex;
        flex-direction: column;
    }

        .cover-buttons a {
            text-align: center;
            margin: 5px 0;
        }

    .project-gallery-images span {
        height: 150px;
    }
}
/*Resizing Desktop Modifications*/
@media only screen and (max-width: 1310px) {
    .contact-col p {
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 1030px) {
    .cover-text {
        width: 80%;
    }

    .contact-col {
        width: 30%;
    }

    .description {
        padding: 30px;
    }

    .nav-list-right, .nav-list-right-1 {
        display: none;
    }

    .nav-list-right-full-screen, .nav-list-right-full-screen-1 {
        display: block;
    }
}

/*Resizing iPad & Tablet Editions*/
@media only screen and (max-width: 950px) {
    .services-columns {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 30px;
        padding: 10px;
    }

    .service-col {
        width: inherit;
    }

    .description-text {
        font-size: 0.8em;
    }

    .project-containers {
        gap: 30px;
    }

    .project-container {
        width: 46%;
    }

    .card-block {
        width: 40%;
    }

    .cover-text-section {
        width: 80%;
    }
}

@media only screen and (max-width: 850px) {
    .project-container {
        width: 46%;
    }

    .cover-text {
        width: 90%;
    }

    .description img {
        display: none;
    }

    .description {
        display: flex;
        flex: 1;
    }

    .cover-text-section {
        padding: 20px;
    }
}

@media only screen and (max-width: 700px) {
    .cover {
        min-height: 800px;
        overflow: hidden;
        position: relative;
    }

    .project-containers {
        display: flex;
        flex-direction: column;
    }

    .project-container {
        width: inherit;
    }

    .contact-us-container {
        display: flex;
        flex-direction: column;
    }

    .contact-col {
        width: inherit;
        margin-bottom: 15px;
    }

    .the-image img:last-child {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .footer-col-1{
        font-size: 15px;
    }
    #foot-image{
        width: 60px;
        height: 60px;
    }
}

/*Resizing Mobile Editions*/
@media only screen and (max-width: 650px) {
    .card-block {
        width: 100%;
    }

    .nav-list-left img:last-child {
        width: 300px;
    }

    .cover-title {
        font-size: 30px;
    }

    .cover-paragraph {
        font-size: 20px;
    }
}

@media only screen and (max-width: 570px) {
    .cover-text {
        width: 90%;
        top: 50%;
    }
}

@media only screen and (max-width: 550px){
    .footer{
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
    }
    .footer-col-1{
        font-size: 24px;
        gap: 10px;
    }
    #foot-image{
        width: 150px;
        height: 150px;
    }
    .footer-col-2 {
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
    }
}

@media only screen and (max-width: 450px) {

    .cover-text {
        left: 45%;
        text-align: center;
        width: 100%;
    }

    .nav-list-left img:first-child {
        width: 70px;
        height: auto;
    }

    .nav-list-left img:last-child {
        display: none;
    }

    .the-image img:last-child {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .cover-buttons {
        display: flex;
        flex-direction: column;
    }

        .cover-buttons a {
            text-align: center;
            margin: 5px 0;
        }
}

@media only screen and (max-height: 450px) {
    .nav-list-left img:last-child {
        width: 250px;
    }

    .cover-section img:first-of-type {
        width: 100px;
    }

    .cover-title {
        margin-top: 30px;
        font-size: 20px;
    }

    .cover-paragraph {
        font-size: 15px;
    }
}

@media only and (max-height: 650px) {
    #full-screen-navigation {
        overflow-y: scroll;
    }
}
