@media (max-width: 767px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 300px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 22px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 22px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 18px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .full-row {
        width: 100%;
        position: relative;
        padding: 50px 0;
    }

    .social-box {
        /*min-height: 400px;*/
    }

    .social-box h2 {
        font-size: 40px;
        text-align: center;
        font-family: Ethereal-Regular;
    }


    .process-box {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
        flex-direction: column;
        padding: 0 15px;
    }

    .process-left {
        width: 100%;
        /*padding-right: 40px;*/
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .process-left-item {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        color: #333333;
        background: #ffffff;
    }

    .process-left-item-active {
        color: #333333;
        background: #ffffff;
        border-right: 8px solid #333333;
    }


    .process-right {
        flex: 1;
        margin-top: 20px;
    }

    .process-left-item-line {
        position: absolute;
        top: 0;
        left: 15px;
        width: 2px;
        height: 100%;
        border-left: 2px dashed #eeeeee;
    }

    .process-left-item-line-active {
        /* border-left: 2px dashed #f18b28; */
        border: none;
    }

    .process-left-item-title {
        display: flex;
        justify-content: start;
        align-items: center;
        position: relative;
    }

    .process-left-item-icon {
        position: absolute;
        width: 13px;
        height: 13px;
        background: #f18b28;
        border-radius: 13px;
        z-index: 1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-left-item-icon-active {
        border: 3px solid #ffffff;
        width: 19px;
        height: 19px;
        border-radius: 50%;
        left: -3px;
    }

    .process-left-item-title-num {
        width: 50px;
        text-align: center;
        font-size: 24px;
        font-family: ProximaNova-Regular;
    }

    .process-left-item-title-text {
        font-size: 18px;
        flex: 1;
    }

    .process-right-item {
    }

    .process-right-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .process-right-row-img-1 {
        width: 100%;
        height: 200px;
        background: #dcdcdc;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-row-img-2 {
        width: 300px;
        height: 400px;
        background: #dcdcdc;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-title {
        flex: 1;
        display: flex;
        gap: 20px;
    }

    .process-right-title-num {
        font-size: 28px;
        font-family: Quicksand-Medium;
        background: #000;
        width: 50px;
        height: 50px;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .process-right-title-text {
        font-size: 24px;
        font-family: AvantGarde-Bold;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .team-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .team-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .team-item-img {
        /* border: 35px solid #f9f9f9; */
        overflow: hidden;
        border-radius: 8px;
        background: #dcdcdc;
        width: 360px;
        height: 240px;
        margin: auto;
    }

    .team-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-title {
        font-size: 16px;
        font-weight: bold;
        margin: 10px auto 0;
        text-align: left;
        color: #333333;
        width: 360px;
    }

    .team-desc {
        text-align: left;
        color: #666666;
        width: 360px;
        margin: 10px auto 0;
    }

    .carousel-inner {
        height: 150px;
    }

    .carousel-item {
        height: 150px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px !important;
    }

    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
        flex-direction: column;
        padding: 0 15px;
    }

    .aboutus-box-img {
        width: 100%;
        /*height: 400px;*/
        background: #dcdcdc;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
    }

    .aboutus-box-context-content {
        margin-top: 40px;
        line-height: 30px;
    }

    .customer-list {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .max-width-1920 {
        max-width: 1920px;
        margin: auto;
    }

    .customer-item {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-item img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }

    .brand-list {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: 40px auto;
        position: relative;
        padding: 0 40px;
    }

    .brand-list-item-title {
        padding: 10px 0;
        text-align: center;
    }

    .swiper-slide a {
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 1px #ccc solid;
        border-radius: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1365px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 300px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 30px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: left;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 20px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .full-row {
        width: 100%;
        position: relative;
        padding: 50px 15px;
    }

    .social-box {
        /*min-height: 400px;*/
    }

    .social-box h2 {
        font-size: 40px;
        text-align: center;
        font-family: Ethereal-Regular;
    }


    .process-box {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
    }

    .process-left {
        width: 400px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .process-left-item {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        border-radius: 5px;
        padding: 5px;
        cursor: pointer;
        color: #333333;
        background: #ffffff;
    }

    .process-left-item-active {
        color: #333333;
        background: #ffffff;
        border-right: 8px solid #333333;
    }


    .process-right {
        flex: 1;
    }

    .process-left-item-line {
        position: absolute;
        top: 0;
        left: 15px;
        width: 2px;
        height: 100%;
        border-left: 2px dashed #eeeeee;
    }

    .process-left-item-line-active {
        /* border-left: 2px dashed #f18b28; */
        border: none;
    }

    .process-left-item-title {
        display: flex;
        justify-content: start;
        align-items: center;
        position: relative;
    }

    .process-left-item-icon {
        position: absolute;
        width: 13px;
        height: 13px;
        background: #f18b28;
        border-radius: 13px;
        z-index: 1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-left-item-icon-active {
        border: 3px solid #ffffff;
        width: 19px;
        height: 19px;
        border-radius: 50%;
        left: -3px;
    }

    .process-left-item-title-num {
        width: 50px;
        text-align: center;
        font-size: 24px;
        font-family: ProximaNova-Regular;
    }

    .process-left-item-title-text {
        font-size: 18px;
        flex: 1;
    }

    .process-right-item {
    }

    .process-right-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .process-right-row-img-1 {
        width: 450px;
        height: 260px;
        background: #dcdcdc;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-row-img-2 {
        width: 300px;
        height: 400px;
        background: #dcdcdc;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-title {
        flex: 1;
        display: flex;
        gap: 20px;
    }

    .process-right-title-num {
        font-size: 34px;
        font-family: Quicksand-Medium;
        background: #000;
        width: 50px;
        height: 50px;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .process-right-title-text {
        font-size: 34px;
        font-family: AvantGarde-Bold;
    }


    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .team-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

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

    .team-item-img {
        /* border: 35px solid #f9f9f9; */
        overflow: hidden;
        border-radius: 8px;
        background: #dcdcdc;
        width: 100%;
        height: 160px;
        margin: auto;
    }

    .team-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-title {
        font-size: 16px;
        font-weight: bold;
        margin: 10px auto 0;
        text-align: left;
        color: #333333;
        width: 100%;
        height: 48px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .team-desc {
        text-align: left;
        color: #666666;
        width: 100%;
        margin: 10px auto 0;
    }

    .carousel-inner {
        height: 200px;
    }

    .carousel-item {
        height: 200px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px !important;
    }

    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
        flex-direction: column;
        padding: 0 15px;
    }

    .aboutus-box-img {
        width: 100%;
        height: 400px;
        background: #dcdcdc;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
    }

    .aboutus-box-context-content {
        margin-top: 20px;
        line-height: 30px;
    }

    .customer-list {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .max-width-1920 {
        max-width: 1920px;
        margin: auto;
    }

    .customer-item {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-item img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }

    .brand-list {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: 40px auto;
        position: relative;
        padding: 0 40px;
    }

    .brand-list-item-title {
        padding: 10px 0;
        text-align: center;
    }

    .swiper-slide a {
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 1px #ccc solid;
        border-radius: 10px;
    }
}

@media (min-width: 1366px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 600px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 60px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 60px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 20px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .full-row {
        width: 100%;
        position: relative;
        padding: 100px 0;
    }

    .social-box {
        /*min-height: 400px;*/
    }

    .social-box h2 {
        font-size: 40px;
        text-align: center;
        font-family: Ethereal-Regular;
    }


    .process-box {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
    }

    .process-left {
        width: 450px;
        padding-right: 40px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .process-left-item {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        color: #333333;
        background: #ffffff;
    }

    .process-left-item-active {
        color: #333333;
        background: #ffffff;
        border-right: 8px solid #333333;
    }


    .process-right {
        flex: 1;
    }

    .process-left-item-line {
        position: absolute;
        top: 0;
        left: 15px;
        width: 2px;
        height: 100%;
        border-left: 2px dashed #eeeeee;
    }

    .process-left-item-line-active {
        /* border-left: 2px dashed #f18b28; */
        border: none;
    }

    .process-left-item-title {
        display: flex;
        justify-content: start;
        align-items: center;
        position: relative;
    }

    .process-left-item-icon {
        position: absolute;
        width: 13px;
        height: 13px;
        background: #f18b28;
        border-radius: 13px;
        z-index: 1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-left-item-icon-active {
        border: 3px solid #ffffff;
        width: 19px;
        height: 19px;
        border-radius: 50%;
        left: -3px;
    }

    .process-left-item-title-num {
        width: 50px;
        text-align: center;
        font-size: 24px;
        font-family: ProximaNova-Regular;
    }

    .process-left-item-title-text {
        font-size: 18px;
        flex: 1;
    }

    .process-right-item {
    }

    .process-right-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .process-right-row-img-1 {
        width: 700px;
        height: 400px;
        background: #dcdcdc;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-row-img-2 {
        width: 300px;
        height: 400px;
        background: #dcdcdc;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-right-row-img-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .process-right-title {
        flex: 1;
        display: flex;
        gap: 20px;
    }

    .process-right-title-num {
        font-size: 34px;
        font-family: Quicksand-Medium;
        background: #000;
        width: 50px;
        height: 50px;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .process-right-title-text {
        font-size: 34px;
        font-family: AvantGarde-Bold;
    }


    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .team-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(3, 1fr);
        gap: 70px;
    }

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

    .team-item-img {
        /* border: 35px solid #f9f9f9; */
        overflow: hidden;
        border-radius: 8px;
        background: #dcdcdc;
        width: 360px;
        height: 240px;
        margin: auto;
    }

    .team-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-title {
        font-size: 16px;
        font-weight: bold;
        margin: 10px auto 0;
        text-align: left;
        color: #333333;
        width: 360px;
    }

    .team-desc {
        text-align: left;
        color: #666666;
        width: 360px;
        margin: 10px auto 0;
    }

    .carousel-inner {
        height: 450px;
    }

    .carousel-item {
        height: 450px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px !important;
    }

    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
    }

    .aboutus-box-img {
        width: 600px;
        height: 400px;
        background: #dcdcdc;
        margin-right: 40px;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
    }

    .aboutus-box-context-content {
        margin-top: 40px;
        line-height: 30px;
    }

    .customer-list {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .max-width-1920 {
        max-width: 1920px;
        margin: auto;
    }

    .customer-item {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-item img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }

    .brand-list {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: 40px auto;
        position: relative;
        padding: 0 40px;
    }

    .brand-list-item-title {
        padding: 10px 0;
        text-align: center;
    }

    .swiper-slide a {
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 1px #ccc solid;
        border-radius: 10px;
    }
}

