.ad-sec{
    width: 100%;
    z-index: 0;
}
.ad-inner{
    width: 100%;
    background-color: aqua;
    position: relative;
}
.ad-con{
    display: flex;
    flex-direction: row;
}
.first-con{
    width: 50%;
    height: 24rem;
    position: relative;
    background-image: url(../images/jorts\ 1.jpg);
    background-size: cover;
}
.second-con{
    width: 50%;
    height: 24rem;
    position: relative;
    background-image: url(../images/jorts\ 3.jpg);
    background-size: cover;
}
.ad-shop-button{
    position: absolute;
    bottom: 10%;
    left: calc(24%);
    background-color: white;
    width: 9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
}
.ad-shop-button a{
    text-decoration: none;
    color: black;
}
.ad-desc{
    position: absolute;
    top: 30%;
    left: calc(30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

@media(max-width: 720px) {
    .ad-desc{
        left: 25%;
    }
    .ad-shop-button {
        left: 30%;
    }
}

@media(max-width: 500px) {
    .ad-desc{
        left: 14%;

    }
    .ad-desc h1 {
        font-size: 25px;
    }
    .ad-desc p{
        font-size: 15px;
    }
    .ad-shop-button{
        left: 17%;
        width: 7rem;
    }
    .first-con{
        background-position: 40%;
    }
    .second-con{
        background-position: 40%;
    }
}