#opening-video {
    object-fit: cover;
    width: 100%;
    height: 80vh;
}

.two-clm-grid {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 2vw;
    width: 100%;
    height: auto;
    align-items: center;


}

#img1 {
    width: 100%;
    grid-column: 1/2;
    border-radius: 10px;
}

#description {
    grid-column: 2/3;
    width: 100%;
    align-content: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reasons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 2vw;
    width: 100%;
    height: 50vh;
}

.reason-bubbles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 20%;
    border-left: 1px solid var(--darkGray);
    border-top: 1px solid var(--darkGray);
    height: 40vh;
    padding: 2vh 2vw;
    border-radius: 10px;
    box-shadow: 5px 5px 5px var(--lightGray);
}

.reason-bubbles p {
    text-align: center;

}

.reason-bubbles h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--brandColor);

}

.reason-bubbles:hover {
    height: 43vh;
    width: 20%;

}

.reason-bubbles:hover h3{
    color: var(--backgroundColor);
}

#img-container {
    position: relative;
    width: 100%;
    height: 80vh;
}

#img-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/image2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);         
    z-index: -1;              
  }

#img2 {
    height: 80vh;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    filter: blur(2px);
}

#three-years-container {
    position: absolute;
    top: 55%;
    left: 80%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 10px;
    text-align: center;
    z-index: 1;
    height: 35vh;
    width: 30vw;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#three-years-container h1 {
    font-size: 2rem;
    color: var(--brandColor);
}


.white-background {
    background-color: white;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-shadow: 5px 5px 5px var(--lightGray);
}

.white-background p {
    padding: 0 2vw;
}

#cities {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2vw;
    width: 100%;
}

#cities p {
    font-weight: bold;
    align-content: end;

}

#deadlines-table {
    width: 100%;
    border-collapse: collapse;
}

#deadlines-table th,
#deadlines-table td {
    padding: 0.75em 1em;
    text-align: left;
}

#deadlines-table th {
    background-color: var(--brandColor);
    color: white;
    text-transform: uppercase;
    /* optional styling */
}

#deadlines-table tr {
    border-bottom: 1px solid var(--darkGray);
}

#deadlines-table tr:nth-child(even) {
    background-color: #f9f9f9;
    /* or use a variable (e.g., var(--lightGray)) */
}

#deadlines-table tr:hover {
    background-color: #f0f0f0;
    /* subtle highlight on hover */
}

#img3 {

    height: 100%;
    object-fit: cover;


}