/* banner start */

.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(../images/work-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);
}

/* banner end */

/* title start */

.title {
    background-color: var(--accent-color);
    padding: 60px 0;
}

.title h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 15px;
    text-align: center;
}

.title p {
    font-size: 2rem;
    font-weight: 400;
    color: var(--white-color);
    text-align: center;
}

/* title end */

/* section start */

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

.section .text {
    text-align: center;
    margin: 0 50px;
}

.section .text h2 {
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.section .text h2 span {
    font-size: 2.9rem;
    font-weight: 800;
    color: #000;
    display: block;
}

/* items */

.section .items {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.section .items .item {
    width: 27%;
    text-align: center;
}

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

.section .items .item p {
    font-size: 2.1rem;
    font-weight: 400;
    color: #000;
    margin-top: 30px;
}

.section .items .item p strong {
    font-weight: 600;
}

/* 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;
    }

    .section .items {
        justify-content: space-between;
    }

    .section .items .item {
        width: 29%;
    }

}

/* 992px end */

/* 991px start */

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

    html {
        font-size: 48%;
    }

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

    .title {
        padding: 40px 0;
    }

    .section .text {
        margin: 0;
    }

    .section .items {
        justify-content: space-between;
    }

    .section .items .item {
        width: 30%;
    }
}

/* 768px end */

/* 767px start */

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

    html {
        font-size: 46%;
    }

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

    .title {
        padding: 40px 0;
    }

    .title h2 {
        font-size: 4rem;
    }

    .section .text {
        margin: 0;
    }

    .section .items {
        display: block;
    }

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

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

/* 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;
    }

    .title {
        padding: 40px 0;
    }

    .title h2 {
        font-size: 3.5rem;
    }

    .section .text {
        margin: 0;
    }

    .section .text h2 {
        font-size: 5.5rem;
    }

    .section .items {
        display: block;
    }

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

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

/* 375px end */