/* banner start */

.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(../images/donation-banner.png);
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

/* desc */

.banner .desc2 {
    padding: 90px 0 160px 0;
    display: flex;
    justify-content: center;
}

.banner .desc2 h1 {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white-color);
    text-transform: uppercase;
}

/* banner end */

/* section start */

.section {
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

/* items */

.section .items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.section .items .item {
    width: auto;
}

.section .items .item img {
    width: 100%;
}

/* section end */

/* responsive */

/* 1920px start */

@media (max-width: 1920px) and (min-device-width: 1400px) {
    .banner .desc2 {
        padding: 200px 0 230px 0;
    }
}

/* 1400px end */

/* 1399px start */

@media (max-width: 1399px) and (min-device-width: 1200px) {
    html {
        font-size: 54%;
    }
}

/* 1200px end */

/* 1199px start */

@media (max-width: 1199px) and (min-device-width: 992px) {

    html {
        font-size: 48%;
    }

    .banner .header .nav ul li {
        margin-right: 30px;
    }

    .banner .desc2 {
        padding: 90px 0 110px 0;
    }

}

/* 992px end */

/* 991px start */

@media (max-width: 991px) and (min-device-width: 768px) {

    html {
        font-size: 48%;
    }

    .banner .desc2 {
        padding: 180px 0 80px 0;
    }

    .section .items .item img {
        width: 80%;
    }
}

/* 768px end */

/* 767px start */

@media (max-width: 767px) and (min-device-width: 576px) {

    html {
        font-size: 46%;
    }

    .banner .desc2 {
        padding: 180px 0 80px 0;
    }

    .section .items .item img {
        width: 80%;
    }
}

/* 576px end */

/* 575px start */

@media (max-width: 575px) and (min-device-width: 375px) {

    html {
        font-size: 46%;
    }

    .banner .desc2 {
        padding: 160px 0 80px 0;
    }

    .banner .desc2 h1 {
        font-size: 4rem;
    }

    .section .items {
        display: block;
        text-align: center;
    }

    .section .items .item {
        margin-bottom: 50px;
    }

    .section .items .item.last {
        margin-bottom: 0;
    }

    .section .items .item img {
        width: 70%;
    }
}

/* 375px end */