

.vintage-homebanner-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 30px;
}

.vintage-homebanner-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 600px;
}

.vintage-homebanner-slide {
    min-width: 100%;
    position: relative;
}

.vintage-homebanner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vintage-homebanner-content {
    position: absolute;
    bottom: 10px;
    left: 50px;
    color: white;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

.vintage-homebanner-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.vintage-homebanner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.vintage-homebanner-btn {
    display: inline-block;
    background-color: #6c8524;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.vintage-homebanner-btn:hover {
    background-color:rgb(155, 187, 59);
}

.vintage-homebanner-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.vintage-homebanner-dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vintage-homebanner-dot.active {
    background-color: white;
}

.vintage-homebanner-prev,
.vintage-homebanner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.vintage-homebanner-prev:hover,
.vintage-homebanner-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.vintage-homebanner-prev {
    left: 20px;
}

.vintage-homebanner-next {
    right: 20px;
}

.vintage-homebanner-social {
    position: fixed;
    left: 0;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 100;
}

.vintage-homebanner-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: black;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.vintage-homebanner-social a:hover {
    background-color: #333;
}

.vintage-homebanner-contact {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.vintage-homebanner-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;  
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 20px 0 0 20px;
}

.vintage-homebanner-contact .vintage-homebanner-whatsapp {
    background-color: #25d366;
}
.vintage-homebanner-contact .vintage-homebanner-quote {
    background-color: #333;
    font-size: 13px;
    padding-left: 30px;
    padding-left: 40px;
}

.vintage-homebanner-contact .vintage-homebanner-phone {
    background-color: rgb(206, 203, 203);
}