@charset "UTF-8";

#web-hero.title_wrapper{
    background-color: #0d2440;
}

#web-hero .title{
    color: #7fb3e8;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.18rem;
    margin-bottom: 1.25rem;
    text-align: left;
    white-space: nowrap;
}
#web-hero .title .title_sub{
    display: inline;
    margin-left: 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    color: #7fb3e8;
}

#web-hero .title_introduction{
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

#web-hero .title_text_bold{
    width: 100%;
    margin-top: 1.25rem;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.3;
    color: #fff;
}

#web-hero .title_text{
    color: #d7e6f5;
    font-size: 1rem;
    line-height: 1.8;
}

#web-hero .web_hero_tags{
    padding-top: 1.5rem;
    margin: 0;
}
#web-hero .web_hero_tags li{
    font-size: 0.85rem;
    color: #7fb3e8;
    padding-right: 1.1rem;
    padding-bottom: 0.5rem;
}

#web-hero .title_container{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 70%;
    max-width: none;
}
#web-hero .title_introduction{
    order: 1;
    width: 100%;
    margin: 0;
    text-align: left;
}
#web-hero .title_image{
    order: 2;
    display: block;
    position: static;
    width: 44%;
    max-width: 200px;
    margin: 0 auto;
}
#web-hero .title_image img{
    width: 100%;
    height: auto;
}

@media screen and (max-width:599px){
    #web-hero .title_image{
        display: none;
    }
    #web-hero .title{
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce){
    #web-hero .title_image{
        transition: none;
        animation: none;
    }
}

@media screen and (min-width:600px){
    #web-hero .title_container{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (min-width:1025px){
    #web-hero .title_container{
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 3rem;
        align-items: center;
    }
    #web-hero .title_introduction{
        grid-column: 1;
        grid-row: 1;
        padding: 3rem;
    }
    #web-hero .title_image{
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
}

.body_container_h2{
    color: #16407a;
}

.web_section_lead{
    padding-bottom: 1.5rem;
}

.service_list_wrapper {
    background-color: #fff;
    padding-top: 6rem;
}
.service_list_wrapper .service_cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    padding: 1rem 0 3rem 0;
    margin: 0;
}
.service_list_wrapper .service_tile {
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(20, 60, 100, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service_list_wrapper .service_tile:hover {
    transform: translateY(-4px);
    border-color: #c7dff5;
    box-shadow: 0 14px 32px rgba(20, 60, 100, 0.12);
}
.service_list_wrapper .img_container {
    width: 100%;
    height: 160px;
    background: #f6f9fc;
    overflow: hidden;
}
.service_list_wrapper .img_container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}
.service_list_wrapper .service_tile:hover .img_container img {
    transform: scale(1.05);
}
.service_list_wrapper .service_title {
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #16407a;
    margin: 0;
    padding: 1.2rem 1.2rem 0.5rem 1.2rem;
}
.service_list_wrapper .service_text {
    flex: 1 0 auto;
    display: block;
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: #555;
    margin: 0;
    letter-spacing: 0;
    font-size: 0.88rem;
    line-height: 1.7;
}
.web_carousel_controls {
    display: none;
}
@media screen and (min-width:1025px) {
    .service_list_wrapper .service_cards {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 5.25rem) / 4);
        grid-template-rows: 1fr;
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 1rem 0 1.5rem 0;
        scrollbar-width: none;
    }
    .service_list_wrapper .service_cards::-webkit-scrollbar {
        display: none;
    }
    .service_list_wrapper .service_tile {
        scroll-snap-align: start;
    }
    .web_carousel_controls {
        display: flex;
        justify-content: flex-end;
        gap: 0.75rem;
        margin: 0 0 3rem 0;
    }
    .web_carousel_button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.85rem;
        height: 2.85rem;
        border: 2px solid #16407a;
        border-radius: 50%;
        background-color: #fff;
        color: #16407a;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(22, 64, 122, 0.16);
        transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    }
    .web_carousel_button:hover {
        background-color: #16407a;
        color: #fff;
    }
    .web_carousel_button:disabled {
        opacity: 0.55;
        cursor: default;
        pointer-events: none;
    }
}
@media screen and (min-width:600px) and (max-width:1024px) {
    .service_list_wrapper .service_cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
@media screen and (max-width:599px) {
    .service_list_wrapper {
        padding-top: 3rem;
    }
    .service_list_wrapper .service_cards {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 84vw;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .service_list_wrapper .service_cards::-webkit-scrollbar {
        display: none;
    }
    .service_list_wrapper .service_tile {
        scroll-snap-align: start;
    }
    .service_list_wrapper .img_container {
        height: 150px;
    }
}

.web_layer_stack{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 3rem 0;
    align-items: stretch;
}
.web_layer{
    background-color: #fff;
    border-left: 4px solid #16407a;
    padding: 1.5rem;
    box-sizing: border-box;
}
.web_layer_icon{
    float: left;
    margin-right: 0.6rem;
    color: #195ca5;
    font-size: 1.4rem;
    line-height: 1.5;
}
.web_layer_title{
    display: block;
    margin: 0 0 0.5rem 0;
    color: #16407a;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
}
.web_layer_text{
    clear: left;
    display: block;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}
@media screen and (max-width:1024px){
    .web_layer_stack{
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
        gap: 1.25rem;
    }
}
@media screen and (max-width:599px){
    .web_layer_stack{
        grid-template-columns: 1fr;
        padding: 0.5rem 0 2rem 0;
        gap: 1rem;
    }
    .web_layer{
        padding: 1.2rem;
    }
    .web_layer_title{
        font-size: 0.95rem;
    }
    .web_layer_text{
        font-size: 0.85rem;
    }
}

.web_flow_5step{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 1rem 0 3rem 0;
    margin-bottom: 0;
    align-items: start;
}
.web_flow_step{
    text-align: center;
    padding: 0 0.25rem;
}
.web_flow_icon{
    margin: 0 auto 1rem auto;
    width: 72px;
    height: 72px;
}
.web_flow_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.web_flow_num{
    font-size: 1rem;
    color: #16407a;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
}
.web_flow_name{
    font-size: 1rem;
    font-weight: bold;
    color: #16407a;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}
.web_flow_text{
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
@media screen and (max-width:1024px){
    .web_flow_5step{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}
@media screen and (max-width:599px){
    .web_flow_5step{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .web_flow_step{
        padding: 0;
    }
}

.web_results.case_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: normal;
    align-items: stretch;
}
.web_results .case{
    width: auto;
    margin: 0;
    padding: 0 0 1.75rem 0;
    background-color: #fff;
    border: 1px solid #e6edf5;
    border-radius: 0.9rem;
    box-shadow: 0 6px 18px rgba(20, 60, 100, 0.05);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.web_results .case:hover{
    transform: translateY(-4px);
    border-color: #c7dff5;
    box-shadow: 0 14px 32px rgba(20, 60, 100, 0.12);
}
.web_results .case .img_container{
    width: 100%;
    height: 160px;
    background-color: #f6f9fc;
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.web_results .case .img_container img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}
.web_results .case:hover .img_container img{
    transform: scale(1.05);
}
.web_results .case h3{
    font-size: 1.15rem;
    letter-spacing: 0.02rem;
    line-height: 1.5em;
    font-weight: bold;
    color: #16407a;
    margin: 0 1.75rem 0.6rem 1.75rem;
}
.web_results .case_text{
    background: none;
    padding: 0;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
}
.web_results .case_text_ul{
    width: auto;
    background: none;
    padding: 0.75rem 0 0 0;
    margin: 0.5rem 1.75rem 0 1.75rem;
    border-top: 1px solid #ebf3fb;
}
.web_results .case_text_ul li{
    font-size: 0.85rem;
    color: #0d2440;
    padding-bottom: 0;
}
.web_results .case_text_ul li .fa-check{
    color: #0d2440;
}
@media screen and (min-width:1025px) {
    .web_results.case_container {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 3rem) / 3);
        grid-template-rows: 1fr;
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 1.5rem;
        scrollbar-width: none;
    }
    .web_results.case_container::after {
        display: none;
    }
    .web_results.case_container::-webkit-scrollbar {
        display: none;
    }
    .web_results .case {
        scroll-snap-align: start;
    }
}
@media screen and (max-width:1024px){
    .web_results.case_container{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:599px){
    .web_results.case_container{
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 84vw;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .web_results.case_container::-webkit-scrollbar{
        display: none;
    }
    .web_results .case{
        scroll-snap-align: start;
    }
    .web_results .case{
        padding: 0 0 1.25rem 0;
    }
    .web_results .case .img_container{
        height: 140px;
        margin-bottom: 1rem;
    }
    .web_results .case h3{
        font-size: 1.05rem;
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
    .web_results .case_text,
    .web_results .case_text_ul{
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
}

.web_pricing .solution_box_text dt{
    font-size: 1rem;
    color: #333;
}
.web_pricing .solution_box_text dd{
    font-size: 1.4rem;
    font-weight: bold;
    color: #195ca5;
}

.web_feature_grid .solution_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-content: normal;
    align-items: stretch;
}
.web_feature_grid .solution_box{
    width: auto;
    padding: 1.5rem;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    background-color: #fff;
    box-sizing: border-box;
}
.web_feature_grid .solution_box_text dt{
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
}
@media screen and (max-width:1024px){
    .web_feature_grid .solution_container{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:599px){
    .web_feature_grid .solution_container{
        grid-template-columns: 1fr;
    }
}
