/* main body */

body {
    width: 100%;
}

.body-root {
    width: 100%;
}

/* header */

header {
    width: 100%;
    background-color: black;
    color: white;
}

.title-cont {
    font-size: 25px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 30px 0;
    .motto {
        font-size: 16px;
    };
    .lower-motto {
        font-size: 15px;
        text-align: center;
        padding-top: 30px;
    }
}

/* footer */

footer {
    width: 100%;
    background-color: black;
    color: white;
    .footer-cont {
        width: fit-content;
        font-size: 13px;
        margin: 0 40px;
        padding: 20px 0;
        text-align: center;
    };
    p:last-of-type {
        padding-top: 10px;
    }
}

/* card content */

.main-container {
    position: relative;
    width: 100%;
    height: 0px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: height 0.5s;
    h3 {
        font-size: 22px;
    }
}

.container-slide {
    position: relative;
    width: 100%;
    height: fit-content;
    flex-shrink: 0;
    flex-grow: 0;
    left: 0;
    transition: left 1s;
}

/* home slide */

.introduction {
    background-color: rgb(245, 245, 245);
    width: 100%;
    h3 {
        margin: 0 40px;
        padding-top: 25px;
        padding-bottom: 20px;
    };
    p {
        margin: 0 40px;
        padding-bottom: 25px;
        text-align: justify;
    }
}

.section-list {
    width: 100%;
    padding-bottom: 25px;
    background-color: black;
    color: white;
    h3 {
        margin: 0 40px;
        padding-top: 25px;
        padding-bottom: 20px;
    }
    p {
        margin: 0 40px;
        padding-bottom: 25px;
        text-align: justify;
    }
}

.section {
    position: relative;
    width: calc(100%);
    min-height: 150px;
    margin-top: 25px;
    background-image: url('/images/banner.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    .section-title {
        position: absolute;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(2px);
        left: 0;
        bottom: 0;
        p {
            margin: 0 40px;
            padding: 10px 0;
            font-size: 18px;
            color: black;
        }
    }
}

.section:last-of-type {
    margin-top: 0px;
}

.contact-info {
    background-color: rgb(245, 245, 245);
    width: 100%;
    padding-bottom: 25px;
    h3 {
        margin: 0 40px;
        padding-top: 25px;
        padding-bottom: 20px;
    };
    hr {
        margin: 25px 40px 0;
    };
    .contact-desc {
        margin: 0 40px;
        padding-bottom: 25px;
        text-align: justify;
    };
    .associates-list {
        width: 100%;
        display: flex;
        flex-direction: column;
    };
    .associate {
        width: 100%;
        .associate-title {
            margin: 0 40px;
            font-size: 20px;
            font-weight: bold;
            padding-top: 15px;
        };
        .associate-desc {
            margin: 0 40px;
        };
    };
    .map {
        width: 100%;
        border: 1px solid gray;
        margin-top: 25px;
    }
}