.banner {
    height: 50vh;
    position: relative;
    margin: 0 auto;
    padding: 0 30px;
}

.banner .overlay {
    opacity: 0.6;
    z-index: 7;
}

.banner .row {
    height: 50vh;
    justify-content: center;
    background-image: url('/home/img/banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--white);
    z-index: 10;
    padding: 0 30px;
    margin: 0 auto;
}

.banner.section .row.flex-col.center {
    gap: 0;
}

.banner h1,
.banner p {
    text-align: center;
    width: 100%;
    z-index: 10;
}

.banner .btn {
    z-index: 10;
    margin-top: 20px;
}

.width-40 {
    text-align: center;
}

.banner .btn-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.banner .btn-wrapper a {
    color: var(--white);
}

.services .width-40 {
    width: 40%;
}

.services-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.services-wrapper .item {
    flex: 1 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    background-color: var(--services-background);
    padding: 30px;
    border-radius: 12px;
}

.services-wrapper .item h3 {
    font-size: 24px;
}

.services-wrapper .item a {
    color: var(--white);
    margin-top: 20px;
    transition: var(--transition);
}

.services-wrapper .item a:hover {
    color: var(--primary);
    transition: var(--transition);
}

.dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.4;
    transition: var(--transition);
}

.dots .dot:hover {
    cursor: pointer;
}

.dots .dot.active {
    opacity: 1;
    transition: var(--transition);
}

.section.gallery .gallery-wrapper {
    display: flex;
    width: 100%;
}

.section.gallery .gallery-wrapper .item {
    justify-content: flex-end;

    overflow: hidden;
}

.section.gallery .gallery-wrapper .item:hover img {
    transform: scale(1.05);
    transition: var(--transition);
}

.section.gallery .gallery-wrapper .item img {
    height: 100%;
    transition: var(--transition);
}


.section.gallery .gallery-wrapper .item.large {
    flex: 1 0 55%;
}

.section.gallery .gallery-wrapper .item.small {
    flex: 0 1 30%;
}

.section.gallery .gallery-wrapper .item.large.top {
    justify-content: flex-start;
}

@media (max-width: 560px) {
    .banner.section,
    .banner.section .row {
        height: 50vh;
    }

    .banner h1,
    .banner p {
        width: 100%;
    }

    .banner .btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-wrapper {
        padding: 10px;
    }

    .services .width-40 {
        width: 100%;
    }

    .services-wrapper .item {
        flex: 1 0 100%;
    }
}