* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost';
}

.super-container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

header {
    display: flex;
    flex-direction: column;
}

header .header-info {
    background-color: #E53636;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header .header-info .text {
    width: fit-content;
    text-align: center;
    font-size: 11px;
    color: white;
}

header .nav-container {
    background-color: #003A5F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .nav-container .sup-info {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

header .nav-container .sup-info .link-list {
    /* width: 100%; */
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 80px;
    justify-content: center;
    margin: auto;
}

header .nav-container .sup-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

header .nav-container .search-container {
    background-color: white;
    width: 100%;
}

header .nav-container .search-container .search-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 30px;
    width: 80%;
    margin: 15px auto;
    align-items: center;
    justify-content: center;
}

header .nav-container .search-container .search-bar .search {
    /* background-color: rgba(88, 46, 46, 0.2); */
    border-radius: 9px;
    height: 55px;
    width: 100%;
    height: 100%;
    max-width: 505px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
}

header .nav-container .search-container .search-bar .search h1 {
    color: #003A5F;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

header .nav-container .search-container .search-bar .search input {
    width: calc(100% - 17px);
    max-width: 488px;
    height: 40px;
    border: 1px solid rgba(88, 46, 46, 0.5);
    padding-left: 20px;
    border-radius: 8px;
    outline: none;
    color: black;
}

header .nav-container .search-container .search-bar .search input::placeholder {
    color: #666666;
}

header .nav-container .search-container .search-bar .search button {
    position: absolute;
    top: 76%;
    transform: translateY(-50%);
    right: 25px;
    background: none;
    color: #E53636;
    border: none;
    border-left: 2px solid #E53636;
    padding-left: 10px;
    cursor: pointer;
}

header .nav-container .search-container .search-bar .action-list {
    display: grid;
    grid-template-columns: auto;
    row-gap: 10px;
}

header .nav-container .search-container .search-bar .action-list .responsive-button {
    display: none;
}

header .nav-container .search-container .search-bar .action-list a {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: black;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    gap: 5px;
    text-transform: uppercase;
    text-align: center;
}
header .nav-container .search-container .search-bar .action-list a.contact {
    font-size: 20px;
}


header .nav-container .search-container .search-bar .action-list a .counter {
    position: absolute;
    top: -5px;
    right: -13px;
    background-color: black;
    color: white;
    font-size: 11px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

header .nav-container nav {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

header .nav-container nav .dropdown-btn {
    background-color: #E53636;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 214px;
    height: 48px;
    border-radius: 7px 7px 0 0;
    font-size: 11px;
    font-weight: 600;
}

header .nav-container nav .dropdown-btn span {
    margin: 0 15px;
}

header .nav-container nav .nav-elements {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    column-gap: 25px;
    font-size: 13px;
}

header .nav-container nav .nav-elements a {
    color: white;
    text-decoration: none;

}

.responsive-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: end;
}

.responsive-menu .content {
    height: 100%;
    padding-top: 50px;
    width: 350px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    color: #003A5F;
}

.responsive-menu .content > button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.responsive-menu .content h2 {
    font-size: 30px;
    font-weight: 800;
}

.responsive-menu .content .nav-elements {
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.responsive-menu .content .nav-elements a {
    font-size: 22px;
    text-decoration: none;
    color: #003A5F;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
}

.responsive-menu .content .action-list {
    display: grid;
    grid-template-columns: auto;
    row-gap: 30px;
}
.responsive-menu .content .action-list a {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: #003A5F;
    font-size: 12px;
    text-decoration: none;
    font-weight: 700;
    gap: 5px;
    text-transform: uppercase;
}

.responsive-menu .content .action-list a .counter {
    position: absolute;
    top: -8px;
    right: -13px;
    background-color: #003A5F;
    color: white;
    font-size: 11px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@keyframes slideR2L {
    0% {
        right: -600px;
    }
    100% {
        right: 0px;
    }
}
.slideLeft {
    animation-name: slideR2L;
    animation-duration: .5s;
    animation-timing-function: ease-in;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut {
    animation-name: fadeOut;
    animation-duration: .5s;
    animation-timing-function: ease-out;
}

footer {
    background-color: #1F2B31;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .newsletter {
    width: auto;
    margin: 30px auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .newsletter .label {
    font-size: 23px;
    font-weight: 700;
    color: white;
    text-align: center;
}

footer .newsletter form {
    display: flex;
}

footer .newsletter form input {
    width: 533px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 40px;
    font-size: 23px;
    border-radius: 12px 0 0 12px;
}

footer .newsletter form input::placeholder {
    color: #BFBFBF;
}

footer .newsletter form button {
    font-size: 21px;
    font-weight: 700;
    width: 193px;
    height: 50px;
    background: none;
    background-color: #BE5354;
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    text-transform: uppercase;
}

footer .banner-container {
    background-color: #E7E9EA;
    width: 100%;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

footer .banner-container .banner-content {
    display: grid;
    width: auto;
    grid-template-columns: repeat(4, auto);
    gap: 70px;
}

footer .banner-container .banner-content .content {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

footer .supinfo {
    display: grid;
    grid-template-columns: repeat(4, auto);
    margin: 25px auto;
    width: 80%;
    color: white;
    column-gap: 80px;
    font-size: 15px;
    font-weight: 300;
}

footer .supinfo h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer .supinfo ul {
    margin-left: 45px;
}

footer .supinfo .payment .image {
    margin-top: 20px;
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
}

footer .credits {
    background-color: white;
    height: 67px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .credits a {
    color: black;
    text-decoration: none;
}

@media (max-width: 1300px) {

    header .nav-container .sup-info {
        width: 95%;
    }

    header .nav-container .search-container .search-bar {
        width: 95%;
    }

    header .nav-container nav {
        width: 95%;
    }

    footer .newsletter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    footer .newsletter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    footer .newsletter form {
        display: flex;
        width: 100%;
        padding: 0 20px;
        justify-content: center;
        align-items: center;
    }

    footer .newsletter form input {
        width: 100%;
        max-width: 533px;
    }

    footer .supinfo {
        width: 95%;
    }

    footer .banner-container {
        height: 108px;
    }
    footer .banner-container .banner-content {
        gap: 50px;
    }

    footer .banner-container .banner-content .content {
        font-size: 11px;
    }
}

@media (max-width: 1090px) {

    header .nav-container .search-container .search-bar .action-list {
        grid-template-columns: auto;
    }

    header .nav-container .search-container .search-bar .action-list a {
        display: none;
    }
    header .nav-container .search-container .search-bar .action-list a.responsive-button {
        display: flex;
        background-color: #003A5F;
        color: white;
        padding: 20px;
        border-radius: 50%;
        cursor: pointer;
    }
    header .nav-container nav {
        display: none;
    }
}

@media (max-width: 1000px) {
    footer .banner-container {
        display: none;
    }
    footer .supinfo {
        column-gap: 40px;
    }
}

@media (max-width: 850px) {
    footer .supinfo {
        padding: 0 30px;
        column-gap: none;
        row-gap: 50px;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    header .header-info {
        display: none;
    }
    header .nav-container .sup-info > div {
        display: none;
    }
    header .nav-container .sup-info .link-list {
        display: grid;
        grid-template-columns: auto auto auto;
        width: 100%;
        justify-content: space-around;
        font-size: 16px;
    }
    header .nav-container .search-container .search-bar .logo img {
        text-align: center;
        width: 80px;
        height: auto;
    }
    header .nav-container .search-container .search-bar .search h1 {
        font-size: 25px;
    }
    header .nav-container .search-container .search-bar .search button {
        position: absolute;
        top: 76%;
        transform: translateY(-50%);
        right: 25px;
        background: none;
        color: #E53636;
        border: none;
        border-left: 2px solid #E53636;
        padding-left: 10px;
        cursor: pointer;
    }
    footer .newsletter form {
        display: flex;
        width: 100%;
        padding: 0;
    }
    footer .newsletter form input {
        font-size: 15px;
    }
    footer .newsletter form button {
        font-size: 13px;
    }
    footer .supinfo {
        padding: 0 30px;
        column-gap: none;
        row-gap: 50px;
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    header .nav-container .search-container .search-bar .search > input, header .nav-container .search-container .search-bar .search > button {
        display: none;
    }
    header .nav-container .search-container .search-bar .search > h1 {
        font-size: 20px;
    }

    header .nav-container .search-container .search-bar .action-list a.responsive-button {
        display: flex;
        background-color: #003A5F;
        color: white;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
    }
}
.slider {
    height: auto;
    /* max-height: 550px; */
    width: 100%;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    width: 100vw;
    height: 500px;
    position: relative;
}

.swiper-slide .text {
    position: absolute;
    top: 45%;
    left: 7%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: white;
    text-align: start;
}

.swiper-slide .text .line {
    height: 2px;
    background-color: white;
    width: 50px;
    margin-bottom: 15px;
}

.swiper-slide .text h1 {
    font-size: 36px;
    font-weight: 700;
}

.swiper-slide .text p {
    font-size: 17px;
    font-weight: 300;
    width: 700px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oki-banner {
    height: 94px;
    background-color: #F5F5F5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oki-banner p {
    width: fit-content;
    display: flex;
    align-items: center;
    font-size: 31px;
    font-weight: bold;
}

.oki-banner p img {
    margin: 0 20px;
}

.expertise {
    display: grid;
    grid-template-columns: repeat(4, auto);
    width: 80%;
    gap: 70px;
    text-align: center;
    margin: 30px auto;
}

.expertise .content h3 {
    color: #E53636;
    font-size: 32px;
}

.expertise .content p {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
}

.pub-container {
    display: flex;
    flex-direction: column;
    color: white;
}

.pub-container .pub-red {
    display: flex;
    background-color: #E53636;
    height: 430px;
    padding-right: 20px;
    align-items: center;
    justify-content: space-around;
}

.pub-container .pub-red .content.text {
    width: 45%;
    margin-left: 30px;
}
.pub-container .pub .content.text h1 {
    font-size: 61px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 65px;
}

.pub-container .pub .content.text .line {
    height: 8px;
    width: auto;
    max-width: 293px;
    background-color: white;
    margin-bottom: 20px;
}

.pub-container .pub-red .content.text ul {
    list-style: square;
    font-size: 20px;
    font-weight: 300;
    margin-left: 20px;
}

.pub-container .pub-red .content.video {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}

.pub-container .pub-red .content.video iframe {
    width: 100%;
    max-width: 610px;
    height: 182px;
}

.pub-container .pub-red .content.video .top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pub-container .pub-red .content.video .top iframe {
    max-width: 295px;
}

.pub-container .pub-blue {
    background-color: #0A5B78;
    height: 462px;
    display: flex;
    align-items: center;
}

.pub-container .pub-blue img {
    width: 629px;
    height: 100%;
    margin: 0;
}

.pub-container .pub-blue .content.text {
    width: 45%;
    margin-left: 60px;
}

.pub-container .pub-blue .content.text h1 {
    font-size: 43px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 48px;
}

.pub-container .pub-blue .content.text p {
    margin-top: 13px;
    font-size: 18px;
    font-weight: 300;
}

.printing-solution {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.printing-solution h1 {
    margin: 30px auto;
    font-size: 61px;
    text-align: center;
}

.printing-solution .sliced {
    display: flex;
    width: 100%;
    height: 330px;
    color: white;
    margin: auto;
    position: relative;
}

.printing-solution .sliced .red {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background-color: #E53636;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    width: 30%;
    height: 100%;
}

.printing-solution .sliced .red p {
    margin: auto;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    padding-right: 60px;
    padding-left: 30px;
    line-height: 30px;
}

.printing-solution .sliced .blue {
    clip-path: polygon(24.4% 0, 100% 0, 100% 100%, 32% 100%);
    background-color: #0181D1;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 100%;
}

.printing-solution .sliced .blue .content {
    position: relative;
    height: 100%;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.printing-solution .sliced .blue .content h4 {
    font-size: 20px;
    font-weight: 500;
}

.printing-solution .sliced .blue .content div {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: start;
}

.printing-category {
    width: 95%;
    display: flex;
    margin: auto;
    flex-direction: column;
}

.printing-category .title {
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.printing-category .title h1 {
    font-size: 35px;
}

.printing-category .title p {
    font-size: 20px;
    margin-top: 30px;
}

.printing-category .category {
    display: grid;
    height: 551px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}

.printing-category .category a {
    text-decoration: none;
    position: relative;
    display: flex;
    width: 100%;
    max-width: 412px;
    color: white;
    cursor: pointer;
}

.printing-category .category a img {
    width: 100%;
    max-width: 412px;
}

.printing-category .category a .label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    font-weight: 700;
    background-color: #0461C6;
}

.printing-category .category .column {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: space-around;
}

.isalex-banner {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0461C6;
    background-color: #E7E9EA;
    margin: 40px 0;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
}

.isalex-about {
    width: 75%;
    margin: auto;
    margin-bottom: 40px;
    font-size: 14px;
    text-align: justify;
}

.isalex-about .text-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.isalex-about .text-image .text {
    width: 100%;
    text-align: center;
}

.isalex-about .text-image .text h1 {
    margin-bottom: 30px;
}

.isalex-about .text-image .text video {
    width: 100%;
    height: auto;
}
/*
.isalex-about .text-image .images, .isalex-about .text-image .images > div{
    display: flex;
    gap: 15px;
}

.isalex-about .text-image .images > div {
    flex-direction: column;
}

.isalex-about .text-image .images img {
    width: 100%;
    max-width: 281px;
}

.isalex-about > p {
    margin-top: 20px;
} */

@media (max-width: 1300px) {

    .isalex-about {
        width: 85%;
    }

    .isalex-about .text-image {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
}

@media (max-width: 1100px) {
    .swiper-slide .text h1 {
        font-size: 25px;
        font-weight: 700;
    }

    .swiper-slide .text p {
        font-size: 15px;
        font-weight: 300;
        width: 400px;
    }

    .expertise {
        width: 90%;
    }

    .expertise .content h3 {
        font-size: 28px;
    }

    .expertise .content p {
        font-size: 13px;
        line-height: 18px;
    }

    .pub-container .pub-red {
        padding-right: 0;
    }

    .pub-container .pub-red .content.text {
        width: 48%;
        margin-left: 20px;
    }
    .pub-container .pub .content.text h1 {
        font-size: 40px;
        line-height: 43px;
    }

    .pub-container .pub .content.text .line {
        height: 5px;
        max-width: 193px;
        margin-bottom: 20px;
    }

    .pub-container .pub-red .content.text ul {
        font-size: 16px;
    }

    .pub-container .pub-red .content.video {
        width: 45%;
    }


    .pub-container .pub-blue {
        height: fit-content;
    }

    .pub-container .pub-blue img {
        max-width: 629px;
        width: 50%;
        height: auto;
        margin: 0;
        object-fit: cover;
    }

    .pub-container .pub-blue .content.text {
        width: 50%;
        margin-left: 30px;
        padding: 30px 0;
    }

    .pub-container .pub-blue .content.text h1 {
        font-size: 35px;
    }

    .pub-container .pub-blue .content.text p {
        font-size: 16px;
    }


    .printing-solution h1 {
        font-size: 50px;
    }

    .printing-solution .sliced .red p {
        font-size: 16px;
        text-transform: uppercase;
        line-height: 22px;
    }

    .printing-solution .sliced .blue .content h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .printing-solution .sliced .blue .content div {
        display: flex;
        align-items: center;
        gap: 30px;
        font-size: 16px;
        font-weight: 300;
        margin-top: 30px;
        text-align: start;
    }


    .printing-category .title h1 {
        font-size: 30px;
    }

    .printing-category .title p {
        font-size: 18px;
        margin-top: 15px;
    }

    .printing-category .category {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .printing-category .category .column.c1 {
        height: 100%;
        gap: 30px;
    }
    .printing-category .category .column.c2 {
        display: flex;
        flex-direction: row;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: space-around;
        gap: 30px;
    }

    .isalex-banner {
        font-size: 24px;
    }

    .isalex-about {
        width: 95%;
    }
}

@media (max-width: 970px) {
    .printing-solution h1 {
        font-size: 40px;
    }

    .printing-solution .sliced .red p {
        font-size: 14px;
        text-transform: uppercase;
        line-height: 20px;
    }

    .printing-solution .sliced .blue .content div {
        gap: 10px;
        margin-top: 10px;
    }

    .printing-solution .sliced .blue .content div img {
        width: 250px;
        height: auto;
    }

    .isalex-banner {
        font-size: 20px;
    }
}

@media (max-width: 950px) {
    .isalex-about .text-image {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }
    .isalex-about .text-image .text {
        width: 100%;
    }
}

@media (max-width: 917px) {
    .printing-category .category .column.c2 {
        flex-wrap: wrap;
    }
}

@media (max-width: 850px) {
    .slider {
        display: none;
    }
    .oki-banner p {
        font-size: 25px;
    }
    .oki-banner p img {
        width: 150px;
        height: auto;
    }

    .expertise {
        gap: 20px;
    }

    .pub-container .pub-red {
        flex-direction: column;
        background-color: #E53636;
        height: fit-content;
        padding: 30px 10px;
        align-items: center;
        justify-content: space-around;
        gap: 40px;
    }

    .pub-container .pub-red .content.text {
        width: 90%;
        margin-left: 0;
    }

    .pub-container .pub .content.text h1 {
        font-size: 40px;
        line-height: 43px;
    }

    .pub-container .pub .content.text .line {
        height: 5px;
        max-width: 193px;
        margin-bottom: 20px;
    }

    .pub-container .pub-red .content.video {
        width: 90%;
    }

    .pub-container .pub-red .content.video iframe {
        width: 100%;
        max-width: none;
        height: 200px;
    }

    .pub-container .pub-red .content.video .top iframe {
        max-width: none;
    }

    .pub-container .pub-blue img {
        display: none;
    }

    .pub-container .pub-blue .content.text {
        width: 90%;
        margin: 0 auto;
        padding: 30px 0;
    }

    .pub-container .pub-blue .content.text h1 {
        font-size: 30px;
    }

    .pub-container .pub-blue .content.text p {
        font-size: 16px;
    }

    .printing-solution .sliced {
        height: 600px;
        flex-direction: column;
    }

    .printing-solution .sliced .red {
        clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
        width: 100%;
        height: 30%;
        justify-content: center;
    }

    .printing-solution .sliced .red p {
        margin: auto;
        font-weight: 600;
        font-size: 20px;
        padding-right: 0;
        padding-left: 0;
        line-height: 30px;
        max-width: 90%;
    }

    .printing-solution .sliced .blue {
        clip-path: polygon(0 32%, 100% 24.4%, 100% 100%, 0% 100%);
        display: flex;
        align-items: end;
        justify-content: center;
    }

    .printing-solution .sliced .blue .content {
        position: relative;
        height: 100%;
        width: 90%;
        padding-right: 0px;
        padding-top: 150px;
    }
}

@media (max-width: 780px) {
    .expertise {
        grid-template-columns: auto auto;
        grid-template-rows: auto;
    }

    .expertise .content h3 {
        color: #E53636;
        font-size: 32px;
    }

    .expertise .content p {
        font-size: 15px;
        font-weight: 600;
        line-height: 20px;
    }


    .pub-container .pub-red .content.video iframe {
        width: 100%;
        max-width: none;
        height: 200px;
    }

    .pub-container .pub-red .content.video .top {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .pub-container .pub-red .content.video .top iframe {
        max-width: none;
    }
}

@media (max-width: 650px) {
    .oki-banner p {
        font-size: 16px;
    }
    .oki-banner p img {
        width: 80px;
    }

    .printing-solution .sliced .red {
        padding-top: 0;
    }

    .printing-solution .sliced .red p {
        padding-top: 0;
        margin-top: 30px;
        font-size: 16px;
    }

    .printing-solution .sliced .blue .content div img {
        width: 200px;
    }

    .isalex-about .text-image .images {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width: 520px) {
    .oki-banner p {
        font-size: 12px;
    }
    .oki-banner p img {
        width: 60px;
    }
}

@media (max-width: 520px) {
    .printing-solution .sliced .blue .content div {
        flex-direction: column;
        width: 100% !important;
    }
    .printing-solution .sliced .blue .content div iframe {
        display: none;
    }
}

@media (max-width: 500px) {
    .printing-solution .sliced .red p {
        margin-top: 10px;
        font-size: 14px;
    }
    .printing-solution .sliced .blue .content div iframe {
        display: none;
    }
}

@media (max-width: 450px) {
    .expertise {
        grid-template-columns: auto;
    }
    .printing-category .category a {
        font-size: 14px;
    }
    .isalex-banner {
        font-size: 18px;
    }

}
