* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --primary-color: #cead35;

    --font-size-large: 3.5rem;
    --font-size-medium: 2.5rem;
    --font-size-xmedium: 2rem;
    --font-size-xxmedium: 1.4rem;
    --font-size-small: 0.9rem;
    --font-size-tiny: 0.8rem;
}

@media (max-width: 768px) {
    :root {
        --font-size-large: 2.2rem;
        --font-size-medium: 1.8rem;
        --font-size-xmedium: 1.5rem;
        --font-size-xxmedium: 1.2rem;
        --font-size-small: 0.9rem;
        --font-size-tiny: 0.75rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    padding: 1em;

    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.title {
    display: flex;
    align-items: center;
    gap: 1rem;

    font-size: var(--font-size-xxmedium);
}

.title img {
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
}

.title h1 {
    font-size: var(--font-size-xxmedium);
    font-weight: 700;

    display: none;
}

header ul {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

header ul li {
    list-style: none;
    font-weight: 600;
}

.contact {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;

    border-radius: .5em;
    padding: .5em;
    width: max-content;

    display: flex;
    align-items: center;
    gap: .5rem;
}

.contact img,
.contact svg {
    width: 1.4em;
    height: 1.4em;
}

.banner {
    background-image: url(/assets/images/banner.webp);

    padding: 5rem 5%;

    position: relative;
}

.banner .blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(15px);
}

.banner>* {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: var(--font-size-large);
    font-weight: 700;

    color: white;
}

.banner-paragraph {
    margin-top: .5em;
    margin-bottom: 3em;

    color: white;
}

.banner .address {
    padding: .5em;

    display: inline-flex;
    gap: .5rem;
    align-items: center;

    border-radius: .5em;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, .9);

    font-size: var(--font-size-small);
}

.banner .bus-stop {
    background-color: white;

    border-radius: .5rem;

    width: 100%;
    max-width: 500px;
    padding: .3rem;
    margin: 4rem auto 0;

    overflow: hidden;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner .bus-stop img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.description-bus-stop {
    display: flex;

    height: 10%;
}

.description-bus-stop p {
    color: black;
    font-size: var(--font-size-small);
    padding: .5em;
}

.content {
    margin-top: 7em;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-title {
    font-size: var(--font-size-medium);
    font-weight: 700;

    text-align: center;
}

.cards {
    margin-top: 3em;

    width: 90%;

    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;

    width: 50%;
    max-width: 150px;

    text-align: center;
}

.card span {
    color: gray;
}

.card-contain-image {
    background-color: white;

    border-radius: 200px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);

    padding: .7em;
}

.card-contain-image svg {
    width: 3rem;
}

.kitnets {
    width: 100%;
    margin-top: 5em;
    padding: 1rem;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.swiper {
    width: 100%;
    max-width: 500px;

    border-radius: .5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);

    color: black;
}

.swiper-wrapper {
    height: 15rem;
}

.swiper .description {
    padding: 1em;
}

.swiper .description li {
    list-style: none;
}

.swiper h5 {
    margin: 1em 0;
}

.swiper span {
    font-size: var(--font-size-xmedium);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #06402b;
    width: 30%;
}

.final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    background: rgba(128, 128, 128, 0.135);

    border-radius: .5rem;
    border: 1px solid rgba(128, 128, 128, 0.267);

    padding: 1em 1em;
    margin: 5em 0;
    width: 100%;

    text-align: center;
}

@media screen and (min-width: 768px) {
    .title h1 {
        display: block;
    }
    
    .cards {
        max-width: 600px;
    }

    .swiper {
        width: 45%;
        max-width: 800px;
    }
}

@media screen and (min-width: 1028px) {
    .banner {
        height: 60vh;
    }

    .content {
        width: 85%;
        margin: 7em auto 0;
    }

    .banner .bus-stop {
        background-color: white;

        border-radius: .5rem;

        width: 30%;
        min-width: 350px;
        max-width: 550px;
        padding: .3rem;

        overflow: hidden;

        position: absolute;
        bottom: -10%;
        right: 5%;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }


    .content-title {
        width: 75%;
    }
}

@media screen and (min-width: 1248px) {
    .cards {
        max-width: none;
    }

    .card {
        width: calc((100% / 6) - 2rem);
    }

    .swiper {
        width: 23%;
        max-width: 800px;
    }
}