
.hero-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .hero-video-desktop {
        /* display: none; */
    }
}

@media (min-width: 768px) {
    .hero-video-mobile {
        /* display: none; */
    }
}

.stats-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stats-card img {
    width: 50px;
    height: 50px;
}

.stats-card h3 {
    margin-top: 15px;
}

.stats-card p {
    color: gray;
}

.contact-section {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
}

.call-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff512f, #f09819);
    border-radius: 50%;
    color: white;
    font-size: 2.5em;
}

.contact-button {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    border-radius: 25px;
    padding: 1.5px 15px 1.5px 1.5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

@media (min-width: 992px) {
    .contact-button {
        visibility: hidden;
    }
}

.social-share {
    display: flex;
    align-items: center;
}

.social-share span {
    margin-right: 10px;
}

.social-icons a {
    color: white;
    margin: 0 5px;
    font-size: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-icons .pinterest {
    background-color: #bd081c;
}

.social-icons .linkedin {
    background-color: #0077b5;
}

.social-icons .tumblr {
    background-color: #35465c;
}

.social-icons .twitter {
    background-color: #1da1f2;
}

.social-icons .facebook {
    background-color: #1877f2;
}

.social-icons .reddit {
    background-color: #ff4500;
}

.social-icons .instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icons .snapchat {
    color: #6c757d;
    background: #fffc00;
}

/* slider */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* video section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.business-image {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.25rem;
    color: #6c757d;
}

.keywords {
    padding-right: 0;
    text-align: right;
    list-style: none;
}

.keywords li {
    margin-bottom: 10px;
}

.content {
    text-align: right;
}

.logores {
    justify-content: space-between;
}

@media (max-width: 768px) {
    .logores {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 1rem;
    }
}