@media(min-width: 1366px) {
    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }
    .page-header h1 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        background: #f9b707;
    }
    .section-heading {
        font-size: 40px;
        font-weight: 700;
        color: #000ee9;
        text-align: center;
        margin: 50px auto;
    }
    .section {
        margin: 0;
        padding: 50px 10%;
    }
    .first-section {
        margin: 0;
    }
    .white-section {
        background: #fff;
    }
    .dark-section {
        background: #000;
    }
    .blue-section {
        background: #1111ba;
    }
    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .flex-section-text {
        max-width: 45%;
    }
    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 30px;
        font-weight: 700;
        margin: 20px 0;
        color: #333333;
    }
    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }
    .flex-section-text a:hover {
        background: #f9b707;
    }
    .areas-summary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
        width: 100%;
    }
    .areas-summary h5 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        margin: 0;
    }
    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 25px;
    }
    .non-click-gallery-image {
        width: 550px;
        height: 550px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 300px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .gallery-image:hover {
        transform: scale(1.1);
    }
    .gallery-image:hover .enlarge {
        display: flex;
    }
    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .section-flex-right img {
        width: 400px;
    }
    .section-flex-right {
        max-width: 50%;
    }
}

@media(max-width: 1366px) and (min-width: 1025px) {
    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }
    .page-header h1 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        background: #f9b707;
    }
    .section-heading {
        font-size: 40px;
        font-weight: 700;
        color: #000ee9;
        text-align: center;
        margin: 50px auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 0;
    }
    .white-section {
        background: #fff;
    }
    .dark-section {
        background: #000;
    }
    .blue-section {
        background: #1111ba;
    }
    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .flex-section-text {
        max-width: 45%;
    }
    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: #333333;
    }
    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }
    .flex-section-text a:hover {
        background: #f9b707;
    }
    .areas-summary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
        width: 100%;
    }
    .areas-summary h5 {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        margin: 0;
    }
    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 25px;
    }
    .non-click-gallery-image {
        width: 500px;
        height: 500px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 240px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .gallery-image:hover {
        transform: scale(1.1);
    }
    .gallery-image:hover .enlarge {
        display: flex;
    }
    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .section-flex-right img {
        width: 300px;
    }
    .section-flex-right {
        max-width: 50%;
    }
}

@media(max-width: 1025px) and (min-width: 769px) {
    .page-header {
        margin: 0;
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }
    .page-header h1 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        background: #f9b707;
    }
    .section-heading {
        font-size: 30px;
        font-weight: 700;
        color: #000ee9;
        text-align: center;
        margin: 50px auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 0;
    }
    .white-section {
        background: #fff;
    }
    .dark-section {
        background: #000;
    }
    .blue-section {
        background: #1111ba;
    }
    .flex-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex-section {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .flex-section-text {
        max-width: 45%;
    }
    .flex-section-image {
        max-width: 45%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: #333333;
    }
    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }
    .flex-section-text a:hover {
        background: #f9b707;
    }
    .areas-summary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px auto;
        width: 100%;
    }
    .areas-summary h5 {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        margin: 0;
    }
    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px;
    }
    .non-click-gallery-image {
        width: 450px;
        height: 450px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 240px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .gallery-image:hover {
        transform: scale(1.1);
    }
    .gallery-image:hover .enlarge {
        display: flex;
    }
    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .section-flex-right img {
        width: 300px;
    }
    .section-flex-right {
        max-width: 50%;
    }
}

@media(max-width: 769px) {
    .page-header {
        margin: 50px 0 0 0;
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    }
    .page-header h1 {
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.95);
    }
    .middle-a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        margin: 50px auto;
        padding: 15px 20px;
        text-align: center;
    }
    .middle-a:hover {
        background: #f9b707;
    }
    .section-heading {
        font-size: 25px;
        font-weight: 700;
        color: #000ee9;
        text-align: center;
        margin: 50px auto;
    }
    .section {
        margin: 0;
        padding: 50px 5%;
    }
    .first-section {
        margin: 50px 0 0 0;
    }
    .white-section {
        background: #fff;
    }
    .dark-section {
        background: #000;
    }
    .blue-section {
        background: #1111ba;
    }
    .flex-section {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex-section {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }
    .flex-section-text {
        max-width: 100%;
    }
    .flex-section-image {
        max-width: 100%;
        border: 10px solid #fff;
        box-shadow: 1px 1px 5px rgba(0, 34, 68, 0.24);
    }
    .flex-section-text h2,
    .flex-section-text h3,
    .flex-section-text h4 {
        font-size: 25px;
        font-weight: 700;
        margin: 20px 0;
        color: #333333;
    }
    .flex-section-text p {
        font-size: 15px;
        font-weight: 500;
        margin: 20px 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text li {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #555555;
        line-height: 1.5;
    }
    .flex-section-text a {
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        background: #1111ba;
        text-decoration: none;
        padding: 15px 20px;
        transition: 0.2s all ease-in-out;
    }
    .flex-section-text a:hover {
        background: #f9b707;
    }
    .areas-summary {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
        margin: 50px auto;
        width: 100%;
    }
    .areas-summary h5 {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        margin: 0;
    }
    .project-gallery {
        width: 100%;
        padding: 0;
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .non-click-gallery-image {
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .gallery-image {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 200px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
    }
    .enlarge {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 70px rgba(0, 0, 0, 0.9) inset;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .gallery-image:hover {
        transform: scale(1.1);
    }
    .gallery-image:hover .enlarge {
        display: flex;
    }
    .section-flex {
        margin: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .section-flex-right img {
        width: 200px;
    }
    .section-flex-right {
        max-width: 100%;
    }
}