body,
dl, dt, dd, ul, li, input, form, a, p, textarea, button, label, tr, td, th,
p{
    font-family: 'Poppins', Arial, sans-serif;;
    font-size: 16px;
}
a {
    color: #ED7D31;
}
.pagebanner {
    height: 600px;
}
.pagebanner-title{
    display: none;
}
.pagebanner .pagebanner-title-h1 {
    font-size: 45px;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    margin-bottom: 0px;
    margin-top: 60px;
    font-family: 'Calibri-Bold';
}
.pagebanner .bannerinfo{
    display: block !important;
}
.bannerinfo,
.bannerinfo p{
    text-align: left;
    width: 75%;
    margin-bottom: 25px;
}
@media screen and (max-width: 768px){
    .bannerinfo,
    .bannerinfo p{
        width: 100%;
        margin-bottom: 25px;
    }
}
.bannerinfo .to_inquiry {
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    display: inline-block;
    border-radius: 100px;
    line-height: 16px;
    background: #ED7D31;
    flex-shrink: 0;
}

.service-content-column{
    flex-direction: column;
}

:root {
    --w: #ffffff;
    --b: #006;
    --b1: #1d294c;
    --g: #a7c44c;
    --g1: #f0f0f0;
    --g2: #cccccc;
    --g4: #dfe3e6;
    --t: all 0.5s ease-in-out;
    --r: relative;
    --f: 'poppins', Arial, Helvetica, Verdana, Tahoma, sans-serif;
}

.tabs {
    width: 100%;
    margin-bottom: 10px
}

.tabs .content {
    position: var(--r);
    z-index: 1;
    min-height: 180px
}

.tabs .content section.content-current {
    display: block;
    opacity: 1
}

.tabs .content section {
    display: none;
    opacity: 0;
    padding: 30px 0 15px;
    transition: var(--t);
}

.tabs .nav-card {
    position: sticky;
    top: 90px;
    background: var(--w);
    z-index: 2;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--g2);
}

@media screen and (max-width: 992px){
    .tabs .nav-card {
        top: 125px;
    }
}

.tabs .nav-card li {
    float: left;
    text-align: center;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    border: none;
    background: var(--w);
    border-top: 1px solid var(--g2);
    border-left: 1px solid var(--g2)
}
@media screen and (min-width: 992px){
    .tabs .nav-card li {
        width: 160px;
    }
}

.tabs .nav-card li:first-child {
    border-top-left-radius: 10px
}

.tabs .nav-card li:last-child {
    border-top-right-radius: 10px;
    border-right: 1px solid var(--g2)
}

.tabs .nav-card li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 17px;
    font-weight: bold;
    color: var(--b1);
    padding: 0 10px;
    transition: var(--t);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 992px){
    .tabs .nav-card li a {
        font-size: 13px;
        padding: 5px 8px;
    }
    .sticky-btn a{
        padding: 10px;
        font-size: 13px;
    }
}

.tabs .nav-card li:hover,.tabs nav .tab-current {
    background: var(--g1)
}

.tabs .nav-card .tab-current a {
    position: var(--r);
    color: #ED7D31;
    z-index: 2
}

.tabs .nav-card ul:after {
    display: table;
    content: " "
}

.tabs .nav-card ul:after {
    clear: both
}

.content h2{
    margin: 60px 0 50px 0;
}

.content h3{
    margin: 30px 0 30px 0;
}

.tabs .content .img-box{
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    border: 3px solid #ED7D31;
}

.tabs .content .img-box img{
    object-fit: cover;
}

.d-flex{
    display: flex;
}
@media screen and (max-width: 992px){
    .d-flex{
        display: block;
    }
}

.align-items-center{
    align-items: center;
}

.justify-content-center{
    justify-content: center;
}

.card-info-1 {
    background: #041e33;
    color: #fff;
    padding: 20px 20px 0;
    border-radius: 20px;
    margin: 80px 0;
}

.card-info-1 .item-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.card-info-1 .item-icon {
    width: 150px;
    height: 150px;
    border: 3px solid #ff6b35;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.card-info-1 .item-icon img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.card-info-1 .item-title {
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.item-description {
    color: #fff;
    line-height: 1.5;
}

.card-info-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

@media screen and (max-width: 992px){
    .card-info-2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.card-info-2 .card-info-item {
    padding: 20px;
    margin-bottom: 30px;
    height: inherit;
    border-radius: 8px;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

.card-info-2 .card-info-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.card-info-2 .card-info-item .card-content {
    display: flex;
    align-items: flex-start;
}

.card-info-2 .card-info-item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.card-info-2 .card-info-content {
    flex: 1;
    text-align: left;
}

.card-info-2 .card-info-title {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.card-info-2 .card-info-description {
    color: #666;
    margin: 0;
}

.card-info-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}

@media screen and (max-width: 992px){
    .card-info-3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.card-info-3 .card-info-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #c7cbd7;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.card-info-3 .card-info-item:hover {
    border: 1px solid #ff6b35;
}
.card-info-3 .card-info-content{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.card-info-3 .card-info-content h5{
    font-size: 20px;
}

.table-responsive{
    margin-bottom: 70px;
}

.card-info-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
@media screen and (max-width: 768px){
    .card-info-4 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.card-info-4 .card-info-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #c7cbd7;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.card-info-4 .card-info-item:hover {
    border: 1px solid #ff6b35;
}
.card-info-4 .card-info-content{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.card-info-4 .card-info-content h5{
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.workflow-container {
    display: flex;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 90px;
}

.workflow-container .workflow-steps {
    background: #041e33;
    width: 40%;
    padding: 2%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.workflow-container .step-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1%;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
}

.workflow-container .step-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.workflow-container .step-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.workflow-container .step-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e67e22;
    background: #34495e;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.workflow-container .step-item.active .step-circle {
    background: #e67e22;
}

.workflow-container .step-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.workflow-container .step-content {
    flex: 1;
}

.workflow-container .step-title {
    color: #bdc3c7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.workflow-container .step-item.active .step-title {
    color: #e67e22;
}

.workflow-container .step-subtitle {
    color: #9ba6af;
    font-size: 15px;
}

@media screen and (max-width: 992px){
    .workflow-container .step-subtitle {
        display: none;
    }
}

.workflow-container .workflow-line {
    position: absolute;
    left: 7%;
    top: 45px;
    width: 2px;
    height: calc(100% - 90px);
    background: #34495e;
}

.workflow-container .workflow-content {
    flex: 1;
    padding: 5%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.workflow-container .all-steps-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workflow-container .step-detail {
    flex: 1;
    margin-bottom: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px){
    .workflow-container .step-detail{
        padding: 10px;
    }
}

.workflow-container .step-detail.active {
    border-color: #e67e22;
}

.workflow-container .step-item:last-child {
    margin-bottom: 0;
}

.workflow-container .step-detail:last-child {
    margin-bottom: 0;
}

.workflow-container .content-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.workflow-container .content-number {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}


.workflow-container .step-detail.active .content-number {
    background: #e67e22;
    color: #ffffff;
}

@media screen and (max-width: 992px){
    .workflow-container .step-icon,
    .workflow-container .content-number,
    .workflow-container .step-detail.active .content-number{
        display: none;
    }
}

.workflow-container .content-text {
    flex: 1;
}

.workflow-container .content-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.workflow-container .content-description {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 14px;
}

.workflow-container .icon-check::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-1.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.workflow-container .icon-dna::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-2.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.workflow-container .icon-flask::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-3.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.workflow-container .icon-chart::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-4.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.workflow-container .icon-gear::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-5.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.workflow-container .icon-report::before {
    content: '';
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-workflow-6.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.img-table-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 0;
}
@media screen and (max-width: 768px){
    .img-table-content {
        display: block;
    }
}

.img-table-content .image-section {
    flex: 0.3;
    max-width: 40%;
}

.img-table-content .image-container {
    position: relative;
    border-radius: 8px;
    padding: 20px;
    padding-bottom: 0;
    overflow: hidden;
    height: 550px;
}

.img-table-content .image-slide {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-table-content .image-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.img-table-content .image-slide img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 15px;
}

.table-section {
    flex: 0.7;
    max-width: 70%;
}

.table-section h3 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
}

.comparison-table {
    border: none;
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.comparison-table th:first-child {
    background-color: #ddd;
}

.comparison-table th:nth-child(2) {
    background-color: #e67e22;
    color: white;
}
.simple-table th {
    background-color: #ddd !important;
    color: #333 !important;
}

.comparison-table th:nth-child(3) {
    background-color: #ddd;

}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    vertical-align: top;
}

.comparison-table tr:last-child,
.comparison-table tr:last-child td {
    border-bottom: none;
}

.img-table-content .progress-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    top: -20px;
}

.img-table-content .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s ease;
}

.img-table-content .progress-dot.active {
    background-color: #fd7e14;
}

@media (max-width: 768px) {
    .img-table-content .img-table-content {
        flex-direction: column;
    }

    .img-table-content .image-section, .table-section {
        max-width: 100%;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}
.ul-check li{
    list-style: none !important;
    padding-left: 15px;
}
.ul-check li:before{
    content: "\e98d";
    font-family: icomoon;
    color: #fd7e14;
    position: absolute;
    left: 2px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-item .faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-item .faq-question:hover {
    background: #e9ecef;
}

.faq-item .faq-toggle {
    color: #fd7e14;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item .faq-toggle.expanded {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 20px;
    background: white;
    display: none;
    border-top: 1px solid #e0e0e0;
}
.left-line{
    height: 100%;
    position: relative;
    padding-left: 20px;
}
.left-line:before{
    content: "";
    width: 3px;
    height: inherit;
    background: #fd7e14;
    position: absolute;
    left: 5px;
}
.microscope{
    position: relative;
    padding-left: 20px;
}
.microscope:before{
    content: '';
    position: absolute;
    top: -2px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-image: url(../images/immunopeptidome-profiling-17.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px;
}

.sticky-btn {
    top: -100px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-btn.show {
    top: 30px;
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn a {
    display: inline-block;
    background: #ED7D31;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.sticky-btn a:hover {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .sticky-btn.show,
    .sticky-btn {
        display: none !important;
        opacity: 0;
    }
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
    transition: color 0.2s ease;
    opacity: 0.5;
}

.close:hover {
    color: #ED7D31;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .inquiry.inquiry-modal {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        background-color: #ED7D31;
        color: #fff;
        padding: 12px 20px;
        border-radius: 50px;
        font-size: 16px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

@media screen and (min-width: 769px) {
    .inquiry.inquiry-modal {
        display: none;
    }
}