body {
	line-height: 1.6;
	font-synthesis: none;
	font-family: arial;
	font-size: 16px; 
	font-weight: normal;
	background-color: white;
	color: var(--text1);
	position: relative;
	min-width: 320px;
    margin: 0;
    padding: 0
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#myCarousel {
    border-radius: 0 0 10rem 10rem;
    overflow: hidden;
    position: relative;
}

#myCarousel .control {
    width: 4rem;
    height: auto;
}

#myCarousel .logo {
    margin: 0 auto;
    text-align: center;
    top: 3rem;
    position: absolute;
    z-index: 101;
    width: 100%;
}

 #myCarousel .logo img {
    width: 200px
}

#myCarousel h1 {
    position: absolute;
    bottom: 5rem;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 100;
    text-align: center;
    font-size: clamp(3rem, 5vw, 5rem);
    width: 100%;
    font-family: "Arial Black", "Arial";
    padding: 0 5rem;
}

@media (max-width: 992px) {
    #myCarousel .logo {
        top: 2rem;
    }

    #myCarousel .logo img {
        width: 160px
    }

    #myCarousel {
        height: 400px;
    }

    #myCarousel .carousel-item .w-100 {
        object-fit: cover;
        width: 100%;
        height: 400px
    }
}

@media (max-width: 768px) {
    #myCarousel .logo {
        top: 1rem;
    }

    #myCarousel .logo img {
        width: 140px
    }

    #myCarousel {
        height: 500px;
    }

    #myCarousel .carousel-item .w-100 {
        object-fit: cover;
        width: 100%;
        height: 500px
    }

}

@media (max-width: 380px) {
    #myCarousel h1 {
        padding: 0
    }
}







.grey {
    background-color: #F8F8F8;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}


.short {
    margin: 4rem auto;
    max-width: 800px;
    text-align: center;
    font-size: clamp(1rem, 1vw, 1.325rem);
}

.short .lead {
    text-align: left;
}

a.gallery {
    color: white;
    padding: .625rem 3rem;
    background-color: #005DB8;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .875rem;
    margin: 3rem auto;
    display: inline-block;
}

a.gallery:hover {
    text-decoration: none;
    background-color: #2a85df;
}

@media (max-width: 768px) {
    .short {
        padding: 0 2rem;
    }

    .short .lead {
        font-size: 16px;
    }

}






.address {
    flex-direction: row;
    justify-content: center;
    padding: 4rem 2rem;
}

.address .box {
    min-width: 280px;
    text-align: center;
}

.address table {
    /* text-align: center; */
    margin: 0 auto;
}

.address span {
    display: block;
    color: #333;
    margin-bottom: 1rem;
}

.address img {
    width: 24px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .address {
        flex-direction: column;
    }
    .address .box:nth-of-type(2) {
        order: 1;
        margin-bottom: 2rem;
    }
    .address .box:nth-of-type(3) {
        order: 2;
        margin-bottom: 2rem;
    }
    .address .box:nth-of-type(1) {
        order: 3;
    }
}

#googleMaps iframe {
    width: 100% !important;
}




.info.grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem;
}

.info h2 {
    font-size: clamp(1.225rem, 1vw, 1.625rem);
    font-weight: bold;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .info.grid {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
}








.image.grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem;
}

.image.grid .box {
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .image.grid {
        grid-template-columns: 1fr;
        padding: 3rem 2rem 1rem;
    }
}








footer {
    text-align: center;
    margin: 1rem auto 3rem;
    font-size: 1rem;
    color: #555;
}