@charset "utf-8";
/* CSS Document */
/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    height: 300px;
    padding-top: 0px;
    background-image: url("../images/aboutus1.jpg");
    background-position: center;
    background-size: cover;
}
.hero-text p {
    font-family: "Montserrat", serif;
    font-weight: 350;
    letter-spacing: 2px;
    text-align: center;
    color: rgb(128, 128, 128);
    font-size: 20px;
}
.hero-text h1 {
    padding: 10px;
    font-family: "Shadows Into Light", serif;
    text-align: center;
    font-size: 40pt;
}
p, li {
    font-family: "Montserrat", serif;
}
.main {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}
.footer {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #5a6773;
}
/* Container that holds the text box and image */
.container1 {
    padding-right: 30px;
    display: flex;
    text-align: right;
    align-items: flex-end; /* Ensure both elements align to the top */
}
.arrow {
    display: block;
    width: 74%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.online {
    width: 75%;
}
/* Container that holds the text box and image */
.container2 {
    display: flex;
    padding-left: 30px;
    align-items: flex-start; /* Ensure both elements align to the top */
}
/* Style for the text box */
.text-box {
    padding: 20px;
}
/* Style for the image */
.image-box img {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto;
    border-radius: 8px;
}
/* Make sure the layout adjusts for smaller screens */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column-reverse; /* Stack items vertically on smaller screens */
    }
    .container2 {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
    .text-box {
        margin-right: 0;
        margin-bottom: 20px; /* Space between text and image */
    }
    .image-box {
        box-sizing: border-box
    }
    .hero-text h1 {
        font-size: 30pt;
    }
	.hero-text p {
    
    font-size: 20px;
}
}
/* Make sure the layout adjusts for smaller screens */
@media (max-width: 850px) {
    .container1 {
        flex-direction: column-reverse; /* Stack items vertically on smaller screens */
    }
    .container2 {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
    .text-box {
        margin-right: 0;
        margin-bottom: 20px; /* Space between text and image */
    }
	.hero-text p {
    
    font-size: 20px;
}
}
@media (max-width: 1308px) {
    .container1 {
        flex-direction: column-reverse; /* Stack items vertically on smaller screens */
    }
    .container2 {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }
    .text-box {
        margin-right: 0;
        margin-bottom: 20px; /* Space between text and image */
    }
    .online {
        width: auto;
    }
}