*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}

.logo_image {
    width: 100%;
    height: clamp(80px,10vw,150px);
    object-fit: contain;
}

/* background tryout */
@media (min-width: 768px) {
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        height: 100vh;
        /* Full height of the viewport */
        display: flex;
    }

    .my_container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .left-section,
    .right-section {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .left-section {
        background-color: white;
        z-index: 1;
    }

    .right-section {
        background-color: #192076;
        /* Dark blue */
        clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
        z-index: 2;
    }

    .content {
        position: absolute;
        width: 50%;
        height: 100%;
        padding: 20px;
        /* color: #fff; */
    }

    .content-left {
        left: 0;
        /* color: #000; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        /* Text on the white side */
    }

    .content-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        right: 0%;
        top: 50%;
        transform: translateY(-50%);
        /* color: #fff; */
    }

    .image-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Adjust size of the image */
        width: clamp(20%, 24vw, 30%);
        /* Ensures the image is above both sections */
        z-index: 3;
    }

}

h1 {
    font-family: "Lobster";
    color: #44BC54 !important;
    font-size: clamp(1.4rem, 2vw, 2rem) !important;
}
h2 {
    font-family: "Merriweather";
    color: #192076 !important;
    font-weight: bold !important;
    font-size: clamp(0.8rem, 1.2vw, 1rem) !important;
}

p {
    font-family: "Montserrat";
    font-size: clamp(0.8rem, 1.2vw, 1rem) !important;
    text-wrap: pretty;
}

.my_light {
    color: #ffffff !important;
}

.green {
    color: #44BC54;
    font-weight: bold;
}

@media (max-width: 767px) {
    .my_container {
        display: flex;
        flex-direction: column;
    }
    
    .image-overlay {
        width: clamp(70%, 80vw, 90%);
    }
    .wip_image {
        background:  linear-gradient(0deg, #192076 50%, #FFFFFF 50%);
    }
    h1 {
        text-align: center;
        padding-bottom: 0.8em;
        font-size: 1.5rem !important;
    }
    h2 {
        font-size: 1rem !important;
    }
    
    p {
        font-size: clamp(0.875rem, 4vw, 1rem) !important;
        text-wrap: pretty; 
    }

    .mobile_view {
        padding-top: 3em;
        padding-left: clamp(1.5em, 6vw, 3em) !important;
        padding-right: clamp(1.5em, 6vw, 3em) !important;
    }
    .mobile_background {
        background-color: #192076;
        padding-bottom: 3em;
    }

    .address {
        font-size: .75rem !important;
    }

    .address_heading {
        font-size: 0.875rem !important;
    }
}