.img-ladding {
    height: 500px;
    width: 100%;
    text-align: center;
}

body {
    background-color: var(--my-bg-var);
}

.img-ladding img {
    max-width: 100%;
    height: auto;
    margin-top: 80px
}

.button-ladding {
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    min-width: 170px;
    height: 40px;
    transition: all .5s;
    outline: none;
    text-decoration: none;
    background-color: transparent;
    border-radius: 0px;
}

@media screen and (min-width:0px) and (max-width:480px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 490px;
    }
}

@media screen and (min-width:480px) and (max-width:767px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 490px;
    }
}


/* Tabets */

@media screen and (min-width:768px) and (max-width:1024px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 500px;
    }
}


/* destop small  */

@media screen and (min-width:1025px) and (max-width:1223px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 500px;
    }
}


/* destop genneral  */

@media screen and (min-width:1224px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 500px;
    }
}


/* Very large screen devices  */

@media screen and (min-width:1824px) {
    .img-ladding img {
        max-width: 100%;
        max-height: 690px;
    }
}