.aboutSection {
    background-image: url(../images/about.webp);
}

.manageSection {
    background-image: url(../images/nav-link-1.webp);
}

.discoverSection {
    background-image: url(../images/nav-link-2.webp);
}

.analysisSection {
    background-image: url(../images/nav-link-3.webp);
}

.campaignSection {
    background-image: url(../images/nav-link-4.webp);
}

.landing-section {
    height: 62vh;
    background-position: right 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;
}

/* Grid Section */
.gridElement:nth-child(1) {
    grid-area: one;
}

.gridElement:nth-child(2) {
    grid-area: two;
}

.gridElement:nth-child(3) {
    grid-area: three;
}

.hero-grid {
    display: grid;
    gap: 1rem;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-template-areas: "one two three";
}

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

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

    .hero-grid {
        display: grid;
        gap: 1rem;
        grid-template-areas:
            "one"
            "two"
            "three";
    }
}

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

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

    .hero-grid {
        display: grid;
        gap: 1rem;
        grid-template-areas:
            "one"
            "two"
            "three";
    }
}

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

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

    .hero-grid {
        display: grid;
        gap: 1rem;
        grid-template-areas:
            "one"
            "two"
            "three";
    }
}

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

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

    .hero-grid {
        display: grid;
        gap: 1rem;
        grid-template-areas: "one two three";
    }
}
