.aboutSection {
    height: 62vh;
    background-image: url(../images/about.webp);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.waveCard {
    background-image: url(../images/wave.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.waveCard p {
    font-size: 16px;
}

.w-lg-75 {
    width: 75%;
}





.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-container img.active {
    opacity: 1;
}




.touchForm label, .touchForm select, .touchForm textarea {
    font-family: 'Swiss 721', sans-serif;
    font-size: 15px;
}


.touchForm input, .touchForm select, .touchForm textarea {
    background-color:transparent;
    border: 1px solid rgba(128, 128, 128, 0.329);
}

.touchForm input:focus, .touchForm select:focus, .touchForm textarea:focus{
    border-color: #ec1c2367;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 255, 255, 0);
    outline: 0 none;
}

.text-13{
    font-size: 13px;
}

.getinImg{
    background-image: url(../images/contact.webp);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}





/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .aboutSection {
        height: 30vh;
    }

    .w-lg-75 {
        width: 100%;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    .aboutSection {
        height: 40vh;
    }

    .w-lg-75 {
        width: 100%;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
    .aboutSection {
        height: 40vh;
    }

    .w-lg-75 {
        width: 100%;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .aboutSection {
        height: 50vh;
    }

    .w-lg-75 {
        width: 100%;
    }
}
