.dwsdm {
    display: flex;
    flex-direction: column;
    height: auto;
}

.dwsdm .left {
    /* background: rgba(0, 128, 0, 0.7); */
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    position: relative;
}

.dwsdm .left h1 {
    font-size: 2em;
    margin: 0;
}

.dwsdm .left p {
    font-size: 1em;
    margin: 10px 0 0 0;
}

.dwsdm .right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dwsdm .right p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.dwsdm .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/dwsdm.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

@media (min-width: 768px) {
    .dwsdm {
        flex-direction: row;
    }
    .dwsdm .left,
    .dwsdm .right {
        flex: 1;
    }
}

.mobile-only {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    width: 90%;
    margin: auto;
}

.mobile-only .containerr {
    display: grid;
    justify-content: center;
    max-width: 80%!important;
    padding: 20px;
    grid-template-columns: 100%;
    align-items: center;
}

.mobile-only .card {
    width: 30%;
    margin: 20px;
    text-align: center;
}

.mobile-only .card img {
    width: 80px;
    height: 80px;
    display: block;
    margin: auto;
}

.mobile-only .card h3 {
    color: #e74c3c;
    font-size: 18px;
    margin: 10px 0;
}

.mobile-only .card p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mobile-only .card {
        width: 100%;
        margin: 10px 0;
    }
    .deskto-d {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
    .deskto-d {
        display: inline;
    }
}