@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
.noto-sans-base {
    font-family: "Noto Sans", sans-serif;
    color: #404040;
}

body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #404040;
}

ul {
    margin-top: 0.2rem;
    margin-bottom: 0px;
}

address {
    font-style: normal;
}

.page-container {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.top-div {
    height: 80px;
    flex-shrink: 0;
}

.logo-size {
    height: 90px; 
    width: 90px;
}

.main-div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.main-left-div {
    flex: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.main-right-div {
    flex: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100vw;
}

.image-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
    height: 50%;
    overflow: hidden;
}

.image-container {
    width: 50%;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.image-container img,
.single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.single-image {
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex: 1;
    height: 50%;
    align-items: center;
    justify-content: center;
}

.left-content-div {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.top-left-logo-div {
    display: flex;
    justify-content: start;
    width: 100%;
}

.logo-div {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.75rem;
}

.contact-div {
    display: flex;
    flex-direction: row;
    font-weight: 500;
    font-size: 0.85rem;
    flex: 1 1 100%;
}

.left-content-contact-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.4rem;
    padding-top: 1rem;
}

.contact-icon {
    width: 23px;
    height: 23px;
    fill: #404040;
}

.contact-symbol-div {
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

.top-contact-div {
    display: flex; 
    align-items: center;
    flex-wrap: wrap;
}

.text-content-services {
    margin-bottom: 0.4rem;
}

.about-us-div {
    text-align: center;
}

.about-us-button {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    border: 0px;
    height: 2rem;
    width: 12rem;
    border-radius: 20px;
    background-color: cornflowerblue;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

@media (min-width: 900px) {
    .page-container {
        flex-direction: row;
    }

    .logo-div {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
        padding-top: 1rem;
    }

    .contact-div {
        display: flex;
        flex-direction: row;
        font-weight: 500;
        font-size: 1.25rem;
    }

    .text-content-services {
        margin-bottom: 1rem;
    }

    .about-us-button {
        margin-top: 1rem;
        margin-bottom: 1rem;
        height: 2.7rem;
        width: 15rem;
        background-color: cornflowerblue;
        font-size: 1.2rem;
    }

    .top-div {
        height: 100px;
    }

    .logo-size {
        height: 130px; 
        width: 130px;
    }

    .main-div {
        flex-direction: row;
        height: calc(100vh - 100px);
    }

    .main-left-div {
        width: 41.67%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .main-right-div {
        width: 58.33%;
        height: 100%;
    }

    .image-row {
        height: 50%;
    }

    .single-image {
        height: calc(50% - 1rem);
    }

    .text-heading {
        font-weight: 600;
        font-size: 2.25rem;
    }

    .text-content {
        font-weight: 500;
        font-size: 1.25rem;
    }
}

@media (min-width: 1250px) {
    .text-heading {
        font-weight: 700;
        font-size: 2.7rem;
    }

    .text-content {
        font-weight: 500;
        font-size: 1.6rem;
    }
}

@media (max-width: 899px) {
    .main-right-div {
        max-width: 100vw;
        overflow: hidden;
    }

    .image-row {
        flex-wrap: nowrap;
    }

    .image-container {
        width: 50%;
        height: auto;
    }

    .text-heading {
        font-weight: 600;
        font-size: 1.5rem;
    }

    .text-content {
        font-weight: 500;
        font-size: 1rem;
    }
}

@media (max-height: 720px) and (max-width: 500px) {
    .text-heading {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .text-content {
        font-weight: 500;
        font-size: 0.95rem;
    }

    .single-image {
        display: none;
    }
}