@media (max-width: 767px) {
    .carousel-item {
        height: 200px;
    }

    .carousel-item img {
        height: 200px;
        object-fit: cover;
    }

    .banner-desc-box {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 100%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    .banner-desc-box-title {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title h1 {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title-div {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-content {
        font-size: 16px;
        color: #FFFFF5;
        text-align: center;
    }

    .intro-box {
        margin: 50px auto;
        width: 100%;
        max-width: 1300px;
        padding: 0 10px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        /*margin-bottom: 80px;*/
        flex-direction: column;
    }

    .intro-box-row:nth-child(2n) {
        /*flex-direction: row-reverse;*/
        margin-left: 0;
    }

    .intro-box-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
        margin: 20px 0 !important;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        margin-left: 50px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
        padding: 0 10px;
    }

    .team-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .team-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 238px;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .customer-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }

}

@media (min-width: 768px) and (max-width: 1365px) {
    .banner-desc-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    .banner-desc-box-title {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title h1 {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title-div {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-content {
        font-size: 16px;
        color: #FFFFF5;
    }

    .intro-box {
        margin: 80px auto 0;
        width: 100%;
        max-width: 1300px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
        flex-direction: column;
        padding: 0 15px;
    }

    .intro-box-row:nth-child(2n) {
        flex-direction: row-reverse;
        margin-left: 0;
        flex-direction: column;
        padding: 0 15px;
    }

    .intro-box-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
        margin-top: 20px;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        /*margin-left: 50px;*/
        margin-top: 20px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 50px auto;
        width: 100%;
        max-width: 1300px;
    }

    .team-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
        padding: 0 15px;
    }

    .team-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 238px;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .customer-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }

}

@media (min-width: 1366px) {
    .banner-desc-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    .banner-desc-box-title {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title h1 {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-title-div {
        font-size: 32px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
    }

    .banner-desc-box-content {
        font-size: 16px;
        color: #FFFFF5;
    }

    .intro-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }

    .intro-box-row:nth-child(2n) {
        flex-direction: row-reverse;
        margin-left: 0;
    }

    .intro-box-img {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        margin-left: 50px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
    }

    .team-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .team-item {
        width: 23%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 238px;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .customer-item {
        width: 9%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }

}


