@charset "utf-8";
/* CSS Document */

.process_sec {
    width: 100%;
    clear: both;
    background: #E8F5FC;
    padding: 75px 0 100px;
}

.process_sec .headtitle3 {
    color: var(--bluebg)
}

ul.resp-tabs-list {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #BAE0F4;
    margin: 40px 0 0;
}

ul.resp-tabs-list li {
    text-align: center;
    padding: 0;
    margin: 0 45px;
    position: relative;
    z-index: 0;
    transition: all ease-out 0.3s !important;
    -webkit-transition: all ease-out 0.3s !important;
    -moz-transition: all ease-out 0.3s !important;
    -ms-transition: all ease-out 0.3s !important;
}

ul.resp-tabs-list li:after {
    content: '';
    position: absolute;
    z-index: 0;
    width: 0;
    background-color: #008bd1;
    height: 3px;
    bottom: -1px;
    left: 50%;
    margin: 0 0 0 -50%;

    transform: scaleX(0);
    transition: transform ease-out
}

ul.resp-tabs-list li.resp-tab-active:after,
ul.resp-tabs-list li:hover:after {
    width: 100%;
    transform: scaleX(1);
    transform-origin: 0% 50%;
    transition: transform 6s ease-in;
}

ul.resp-tabs-list .stpeno {
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    color: var(--bluebg)
}

ul.resp-tabs-list p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    color: var(--darkgrey);
}

.contenttabdiv {
    padding: 100px 10%;
    display: flex;
    flex-wrap: nowrap;

    -webkit-animation: 2s fadeEffect;
    -moz-animation: 2s fadeEffect;
    animation: 2s fadeEffect;
}

.steptitle {
    font-size: clamp(1.125rem, 0.9rem + 1.125vw, 2.25rem);
    font-weight: bold;
    color: var(--darkgrey);
    letter-spacing: 0.32px;
    line-height: 1.3;
    margin: 15px 0;
}

.tabcontent50 {
    width: 50%;
}

.tabcontent50 .btnbar {
    justify-content: flex-start;
    margin: 20px 0 0;
}

.resp-tabs-container .processtabcontent {
    display: none;
}

.resp-tabs-container .processtabcontent:first-child {
    display: block;
}

.process_sec .resp-tab-content .processtabcontent {
    -webkit-animation: 2s fadeEffect;
    -moz-animation: 2s fadeEffect;
    animation: 2s fadeEffect
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-moz-keyframes fadeEffect {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


/*----- MEDIA QUERIES  -----*/
@media(max-width:1900px) {}

@media(max-width:1440px) {

    .contenttabdiv {
        padding: 50px;
    }

    .process_sec {
        padding: 75px 0 30px;
    }

    .processtabcontent .tabcontent50:last-child {
        width: calc(100% - 400px);
        padding: 0 0 0 50px;
    }

    .processtabcontent .tabcontent50:last-child {
        width: calc(100% - 400px);
        margin-left: 50px;
    }

    ul.resp-tabs-list p br {
        display: none;
    }

    ul.resp-tabs-list li {
        margin: 0 20px;
    }

}

@media(max-width:1200px) {

    .process_sec {
        padding: 60px 0 30px;
    }

}

@media(max-width:992px) {

    .process_sec ul.resp-tabs-list {
        white-space: nowrap;
        flex-wrap: nowrap;
        max-width: 100vw;
        overflow-x: scroll;
        justify-content: flex-start;
        overflow-y: hidden;
    }

    .contenttabdiv {
        padding: 30px 10px;
    }

    .processtabcontent .tabcontent50:first-child {
        max-width: 250px;
    }

    .processtabcontent .tabcontent50:last-child {
        width: calc(100% - 250px);
        padding: 0;
    }

}

@media(max-width:768px) {

    .contenttabdiv {
        padding: 30px 10px;
        flex-wrap: wrap;
    }

    .processtabcontent .tabcontent50:first-child {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .processtabcontent .tabcontent50:last-child {
        width: 100%;
        padding: 0;
        margin: 0;
    }

}

@media(max-width:576px) {

    .processtabcontent .tabcontent50:last-child img {
        max-width: 40px;
    }

    .process_sec {
        padding: 30px 0 10px;
    }

    ul.resp-tabs-list p {
        font-size: 16px;
    }

}

@media(max-width:480px) {

    ul.resp-tabs-list .stpeno {
        font-size: 13px;
        font-weight: 500;
    }

    ul.resp-tabs-list p {
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.32px;
    }

}

@media(max-width:360px) {}