@font-face {
    font-family: "Archivo_Condensed";
    src: url("/contact_static/fonts/Archivo-VariableFont_wdth,wght.woff") format("woff"),
    url("/contact_static/fonts/Archivo-VariableFont_wdth,wght.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Archivo_Condensed";
    src: url("/contact_static/fonts/Archivo-VariableFont_wdth,wght.woff") format("woff"),
    url("/contact_static/fonts/Archivo-VariableFont_wdth,wght.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    height: 100%; 
/*    overflow: hidden;*/
}
body {
    height: 100%;
    margin: 0;
    font-family: Archivo_Condensed, sans-serif;
    justify-content: center;
    align-items: center;
    align-content: center;
    min-height: 100vh; /* Ensures the body takes full viewport height */
    background-image: url('../images/masters_bg_glassmorphism.jpg'); /* Replace with your image path */
    background-size: cover; /* Stretches the image to cover the entire background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}
section { overflow: hidden; }

.text-justify{ text-align: justify; }
.bg-transparent { background-color: rgb(248 249 250 / 20%) !important; }

.section-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1.5rem;
    border-radius: var(--bs-border-radius-xl);
}

.section-left-child{
    position: relative;
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.section-right-child{
    width: 50%;
}

.to-bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}


.glass-card-for-right {
    background: #1a73e81f;
    border-radius: 0 15px 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #62686e;
}

.glass-card-for-left {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px 0 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #62686e;
}

#footer {
	position: fixed;
    bottom: 0;
    justify-self: center;
    width: 100%;
}


/* Styles for small devices and up */
@media (max-width: 992px) {
    section { height: 100%; }
    .section-content {
        margin: 0;
        height: 100%;
        display: block;
    }
    .section-left-child {
        width: 100%;
        height: 50%;
        padding: 15rem;
    }
    .section-right-child{
        width: 100%;
        height: 50%;
    }
}

/* Styles for small devices with small HEIGHT */
@media (max-height: 600px) {
    html { font-size: small; }
}