.section-2 {
    position: relative;
    max-width: 2000px;
    margin: 0px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s ease;
}

.section-2 .image-container {
    position: relative;
    transition: all 0.5s ease;
}
.section-2 .image-container img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.section-2 .heading-1 {
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
}
.section-2 .heading-1 .titles {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    transition: all 0.5s ease;
}
.section-2 .heading-1 .titles h1{
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    color: #003E65;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}
.section-2 .heading-1 p{
    position: relative;
    margin-top: -20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6F00;
    transition: all 0.5s ease;
}

.section-2 .heading-2{
    position: relative;
    margin-top: 100px;
    text-align: center;
    transition: all 0.5s ease;
}
.section-2 .heading-2 h1{
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    color: #003E65;
    letter-spacing: 1.5px;
    transition: all 0.5s ease;
}
.section-2 .heading-2 p{
    position: relative;
    margin-top: -20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF6F00;
    transition: all 0.5s ease;
}

/* video popup */
/* Modal styles */
.section-2 .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.section-2 .modal-content {
    position: relative;
    margin: 10% auto;
    padding: 0;
    width: 100%;
    height: 500px;
    max-width: 700px;
}

.section-2 .close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.section-2 .close:hover,
.section-2 .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.section-2 .modal iframe {
    width: 100%;
    height: 100%;
}


/* 320px */
@media screen and (min-width: 320px) {
    .section-2 {
        padding: 0px;
    }
    .section-2 .heading-1,
    .section-2 .heading-2{
        padding: 10px;
    }

    .section-2 .heading-1 .titles {
        display: block;
    }
    .section-2 .heading-1 .titles h1{
        font-size: 3rem;
    }
    .section-2 .heading-1 p{
        position: relative;
        margin-top: -20px;
        font-size: 1.2rem;
    }

    .section-2 .heading-2{
        margin-top: 30px;
    }
    .section-2 .heading-2 h1{
        font-size: 2rem;
    }
    .section-2 .heading-2 p{
        font-size: 1.1rem;
    }

    .section-2 .modal {
        padding: 0px;
    }
    .section-2 .modal-content {
        position: relative;
        margin: 70% auto;
        left: -15px;
        padding: 0;
        width: 90%;
        height: 300px;
        max-width: 700px;
    }
}
/* 425px */
@media screen and (min-width: 425px) {
    .section-2 .heading-1,
    .section-2 .heading-2{
        padding: 10px;
    }

    .section-2 .heading-1 .titles {
        display: block;
    }
    .section-2 .heading-1 .titles h1{
        font-size: 3.3rem;
    }
    .section-2 .heading-1 p{
        position: relative;
        margin-top: -20px;
        font-size: 1.3rem;
    }

    .section-2 .heading-2{
        margin-top: 30px;
    }
    .section-2 .heading-2 h1{
        font-size: 2.2rem;
    }
    .section-2 .heading-2 p{
        font-size: 1.1rem;
    }
}
/* 768px */
@media screen and (min-width: 768px) {
    .section-2 .heading-1,
    .section-2 .heading-2{
        padding: 0px;
    }

    .section-2 .heading-1 .titles {
        display: flex;
        gap: 3rem;
    }
    .section-2 .heading-1 .titles h1{
        font-size: 4rem;
    }
    .section-2 .heading-1 p{
        position: relative;
        margin-top: -20px;
        font-size: 1.4rem;
    }

    .section-2 .heading-2{
        margin-top: 50px;
    }
    .section-2 .heading-2 h1{
        font-size: 2.5rem;
    }
    .section-2 .heading-2 p{
        font-size: 1.2rem;
    }

    .section-2 .modal-content {
        position: relative;
        margin: 10% auto;
        padding: 0;
        width: 100%;
        height: 500px;
        max-width: 700px;
    }
}
/* 1024px */
@media screen and (min-width: 1024px) {
    .section-2 .heading-1 .titles {
        display: flex;
        gap: 10rem;
        margin-top: 2rem;
    }
    .section-2 .heading-1 .titles h1{
        font-size: 4.5rem;
        
    }
    .section-2 .heading-1 p{
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .section-2 .heading-2{
        margin-top: 100px;
    }
    .section-2 .heading-2 h1{
        font-size: 3rem;
    }
    .section-2 .heading-2 p{
        font-size: 1.3rem;
    }
}