/* inviewAnimate style */
.inview-animate_wrapper {
    transition-property: all;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.company-info_wrapper .inview-animate_wrapper{
    transition-duration: 1200ms;
}

.inview-animate_state-visible {
    opacity: 1;
    transform: translateY(0);
}

.inview-animate_state-hidden {
    opacity: 0;
    transform: translateY(2.5rem);
}


/* sectionTitle style */
.section-title_wrapper {
    color: var(--primaryColor);
}

.section-title_subtitle {
    margin: 0;
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
}

.section-title_title {
    margin: 0;
    font-size: var(--font-64);
    line-height: 120%;
    font-weight: 700;
}


/* secondaryBtn style */
.secondary-btn_wrapper {
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 9999px;
    background-color: var(--primaryColor);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.secondary-btn_wrapper:hover,
.secondary-btn_wrapper:active,
.secondary-btn_pair:hover .secondary-btn_wrapper,
.secondary-btn_pair:active .secondary-btn_wrapper,
.secondary-btn_pair:focus .secondary-btn_wrapper {
    background-color: var(--background);
    border-color: var(--primaryColor);
}

.secondary-btn_wrapper:focus {
    background-color: var(--primaryColor);
    border-color: var(--textColor);
}

.secondary-btn_icon {
    color: var(--background);
    transition: color 0.2s ease;
}

.footer_page_links .secondary-btn_wrapper{
    width: 20px;
    height: 20px;
}

.footer_page_links .secondary-btn_icon {
    width:12px;
    height:12px;
}

.secondary-btn_wrapper:hover .secondary-btn_icon,
.secondary-btn_wrapper:active .secondary-btn_icon,
.secondary-btn_pair:hover .secondary-btn_icon,
.secondary-btn_pair:active .secondary-btn_icon,
.secondary-btn_pair:focus .secondary-btn_icon {
    color: var(--primaryColor);
}


/* breadcrumbs style */
.breadcrumbs_wrapper {
    height: 40px;
    background-color: #F1F8FF;
    color: var(--textColor);
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
    margin:0 auto;
}

.breadcrumbs_inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.breadcrumbs_list {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--primaryColor);
}

.breadcrumbs_current {
   color: var(--textColor);
}

.breadcrumbs_link {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs_link:hover {
    text-decoration: underline;
}

.breadcrumbs_text,
.breadcrumbs_separator,
.breadcrumbs_current {
    margin: 0;
}


/* pageHero style */
/* .page-hero_wrapper {
    border: 1px solid var(--secondaryColor);
} */

.page-hero_wrapper_blue {
    color: var(--background);
    background: linear-gradient(to right, var(--primaryColor), #6dc7f9);
}

.page-hero_wrapper_white {
    color: var(--secondaryColor);
    background-color: var(--background);
    border-bottom: 1px solid var(--primaryColor);
}

.page-hero_wrapper_orange {
    color: var(--secondaryColor);
    background-color: var(--background);
}

.page-hero_content {
    position: relative;
    z-index: 5;
}

.page-hero_wrapper_has-image {
    height: 344px;
}

.page-hero_inner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    /* margin-right: 0; */
}

.page-hero_inner_has-image {
    height: 304px;
}

.page-hero_inner_plain {
    padding: 40px 0;
}

.page-hero_text {
    margin: 0;
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
}

.page-hero_title {
    margin: 0;
}

.page-hero_title_default {
    font-size: var(--font-72);
    line-height: 120%;
    font-weight: 700;
}

.page-hero_title_case-detail {
    font-size: var(--font-64);
    line-height: 120%;
    font-weight: 700;
}

.page-hero_image {
    width: 800px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
}

/* /css/usr/default/Case-51.css */

.case-card_wrapper {
    display: block;
}

.case-card_link {
    display: block;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    /* outline: 3px solid transparent; */
    transition: all 0.3s ease-in-out;
    /* transition:
        outline-width 0.2s ease,
        border-color 0.2s ease; */
}

.case-card_link:hover {
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.25);
    /* border-color: var(--secondaryColor); */
    /* outline: 3px solid var(--secondaryColor); */
}

.case-card_image {
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2 / 1;
    height: auto;
}

.case-card_body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    gap: 20px;
    padding: 10px 15px;
}

.case-card_content {
    display: block;
}

.case-card_company {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
}

.case-card_title {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-24);
    line-height: 160%;
    font-weight: 700;
}

.case-card_request {
    margin: 0;
    color: #191919;
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
}

.case-card_footer_with-category {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.case-card_footer_plain {
    display: flex;
    justify-content: flex-end;
}

.case-card_badge {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 16px;
    border: 1px solid var(--secondaryColor);
}

.case-card_badge_text {
    margin: 0;
    color: var(--textColor);
    font-size: var(--font-12);
    line-height: 160%;
    font-weight: 500;
}


/* solutionCaption style */
.solution-caption_wrapper {
    max-width: 1200px;
    margin: 0 auto 20px;
}

.solution-caption_card_link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.solution-caption_card {
    position: relative;
    border: 1px solid #989898;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,;
}

.solution-caption_card_link:hover .solution-caption_card,.case-card_wrapper:hover{
    box-shadow:0 0 0 4px #005EA5;
    border:unset;
}

.solution-caption_image {
    position: relative;
    z-index: -1;
}


.solution-caption_overlay {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    color: var(--background);
}

.solution-caption_heading_band {
    display: flex;
    align-items: center;
    width: 567px;
    height: 88px;
    padding-left: 20px;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(to right, var(--primaryColor), #6dc7f9);
}

.solution-caption_heading {
    margin: 0;
    font-size: var(--font-32);
    line-height: 120%;
    font-weight: 700;
}

.solution-caption_card_button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.solution-caption_detail_wrap {
    margin-top: 20px;
}

.solution-caption_detail{
    margin: 0;
    line-height: 160%;
    font-weight: 800;
    color: var(--secondaryColor);
    font-size: var(--font-24);
}
.solution-caption_explain{
  margin-top: 5px;
}

.solution-caption_footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.solution-caption_footer_text {
    margin: 0;
    font-size: var(--font-16);
    line-height: 160%;
    font-weight: 500;
}

.solution-caption_footer_link {
    display: flex;
    justify-content: flex-end;
    height: 40px;
    text-decoration: none;
}

.solution-caption_footer_link_inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-caption_footer_link_text {
    margin: 0;
    color: var(--secondaryColor);
    font-size: var(--font-20);
    line-height: 160%;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.solution-caption_footer_link:hover .solution-caption_footer_link_text {
    border-bottom-color: var(--primaryColor);
}


/* scrollBtn style */
.scroll-btn_wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 9999px;
    background-color: var(--primaryColor);
    color: var(--background);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        opacity 0.3s ease;
}

.scroll-btn_wrapper:active {
    background-color: var(--background);
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.scroll-btn_wrapper.is-show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-36);
    color: inherit;
}

.scroll-btn_icon_svg {
    display: block;
}


.scroll-btn_text {
    margin: 0;
    color: inherit;
    font-size: var(--font-11);
    line-height: 100%;
    font-weight: 500;
}

.brank {
    display: none;
}

@media screen and (max-width: 1280px) {
    .page-hero_inner_plain{
        padding:40px;
    }
    .breadcrumbs_wrapper{
        padding-left:15px;
    }
}

@media screen and (min-width: 768px) {
    .scroll-btn_wrapper:hover {
        background-color: var(--background);
        border-color: var(--primaryColor);
        color: var(--primaryColor);
    }
    .scroll-btn_wrapper:hover .scroll-btn_icon {
        color: var(--primaryColor);
    }
}

@media screen and (max-width: 768px) {
    /* font size */
    .breadcrumbs_wrapper {
        height: 24px;   
    }
    .breadcrumbs_wrapper .breadcrumbs_list {
        font-size: var(--font-12);
    }

    .page-hero_text,
    .case-card_company,
    .solution-caption_explain,
    .case-card_request{
        font-size: var(--font-14);
    }

    .solution-caption_detail{
        font-size: var(--font-20);
    }

    .section-title_subtitle {
        font-size: var(--font-16);
    }

    .case-card_title {
        font-size: var(--font-20);
    }

    .section-title_title {
        font-size: var(--font-32);
    }

    .page-hero_title_default,
    .page-hero_title_case-detail {
        font-size: var(--font-34);
    }

    /* page hero style */
    .page-hero_inner_plain {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-hero_wrapper_has-image {
        min-height: 204px;
        height: 0;
    }

    .page-hero_inner_has-image {
        min-height: 180px;
        height: 0;
        padding: 0 0 20px 15px;
        align-items: flex-end;
    }

    .page-hero_image {
        min-width: 200px;
        width: auto;
        margin-top: 0;
    }

    /* secondary btn style */
    .secondary-btn_wrapper {
        width: 24px !important;
        height: 24px !important;
    }

    .secondary-btn_icon {
        width: 14px;
    }

    /* scroll btn style */
    .scroll-btn_wrapper {
        right: 0px;
        bottom: 30px;
        border-radius: 20px 0 0 20px;
        transform: translateX(100%);
        transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
    }

    .scroll-btn_wrapper.is-show {
        transform: translateX(0);
    }

    /* section style */
    .solution-caption_wrapper {
        margin: 0 auto 5px;
    }

    .solution-caption_detail_wrap {
        margin-top: 10px;
    }

    .solution-caption_heading_band {
        padding-left: 5px;
        height: 40px;
    }

    /* case style */
    .case-card_body {
        min-height: 100px;
    }

    .brank {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .page-hero_image {
        min-width: auto;
        width: 300px;
    }
}