

.wedding {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.hero-wedding {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container-wedding {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-video-wedding {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.content-box-wedding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 80%;
    width: 300px;
}

h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.marketing-points-wedding {
    list-style-type: none;
    margin-bottom: 20px;
}

.marketing-points-wedding li {
    margin: 10px 0;
}

.cta-button-wedding {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f04e31;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button-wedding:hover {
    background-color: #c43d25;
}



.video-container-youtube {
    position: relative;
    width: 80%; /* 80% of the width of the parent container */
    margin: 0 auto; /* Center the video container horizontally */
    padding-bottom: 45%; /* Adjusted padding-bottom for a 16:9 aspect ratio within 80% width */
    height: 0;
    overflow: hidden;
}

.responsive-video-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-video-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}