#header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, 1)), url('../assets/img/banner.jpg');
    background-image: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, 1)), url('../assets/img/banner.jpg');
}

#header .logo {
    width: 110px;
}

#header aside.fixed {
    z-index: 10;
    position: fixed;
    top: 2.5rem;
    left: 0 auto;
}

#header aside.fixed ul {
    background-color: rgba(0, 0, 0, .9);
}

#header aside ul {
    padding: 1rem;
    text-decoration: none;
}

#header aside a {
    position: relative;
    text-decoration: none;
    padding-bottom: 3px;
}

#header aside a:hover::before {
    width: 100%;
}

#header aside a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    border-radius: 3px;
    background-color: var(--bs-extend-primary);
    transition: width .5s ease-in-out;
}



#experience .container-experience {
    min-height: 600px;
}

#experience .chip {
    padding: 100px 32px;
    margin: 1rem;
}

#experience .chip p {
    margin: 0;
}

#services .container-card {
    position: relative;
    height: 650px;
    border-radius: 10px;
    overflow: hidden;
}

#services li:nth-child(even) .container-card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#services .container-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .50);
    z-index: -1;
}

#services .container-content {
    z-index: 1;
    padding: 1.5rem;
}

#services .container-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

#offer .col-lg-6:nth-child(2),
#offer .col-lg-6:nth-child(4) {
    margin-top: 200px;
}

#offer {
    background: radial-gradient(circle, var(--bs-extend-secondary), black 70%);
}

#offer .container-offers img {
    width: 100%;
    border-radius: 2.5rem;
    -webkit-filter: brightness(0.95);
    filter: brightness(0.95);
}

#review ul li {
    flex: 0 0 300px;
    margin: 1rem;
}

#review ul li img {
    width: 100%;
}

#gallery li {
    position: relative;
    flex: 0 0 300px;
    height: 400px;
    margin: 0;
    overflow: hidden;
    border: 1px solid black;
    margin: .3rem;
    border-radius: 1rem;
}

#gallery li .after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    transition: height 2.5s ease-in-out;
}

#gallery li:hover .after {
    height: 100%;
}

#gallery li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#about .image-about {
    width: 100%;
    max-width: 600px;
    height: 600px;
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
    object-fit: cover;
}

#about h2 {
    margin-left: -150px;
    margin-bottom: 2rem;
}

#about p {
    margin-left: -100px;
    margin-bottom: 2rem;
}

#cities li {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

#cities li p,
#cities li span {
    font-size: 1.5rem;
    font-weight: bold;
}

#cities li p {
    margin: 0;
}

#cities li span {
    margin-right: 1.5rem;
}

@media screen and (max-width: 600px) {
    body {
        margin-bottom: 120px;
    }

    #gallery li {
        flex: 0 0 150px;
        height: 250px;
    }

    #header aside a {
        font-size: 12px;
    }

    #header aside.fixed {
        top: auto;
        bottom: 0;
    }

    #header aside.fixed ul {
        background-color: rgba(255, 255, 255, .8) !important;
        padding-block: 2rem;
    }

    #header aside.fixed a {
        color: var(--bs-dark);
    }
}