.page-section{
    position: relative;
    min-height: 85vh;
    margin: 90px auto;
    padding: 0 4rem;
}

.page-section .header-text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.header-text-area h1{
    font-size: min(6vw,85px);
    font-weight: 600;
    color: #0E2368;
}

.header-text-area p{
    color: #0E2368;
    width: 95%;
    text-align: justify;
    font-size: 18px;
}

.page-section .header-img-area{
    text-align: end;
}

.page-section .header-img-area img{
    width: 96%;
    height: 100%;
}

.page-section .second_p{
    display: none;
}

.page-section .card-section{
    position: relative;
    margin-top: 7rem;
}

.page-section .card-section .row{
    row-gap: 65px;
}

.card-section .card{
    position: relative;
    padding: 30px;
    /* max-width: 350px; */
    height: 100%;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    transition: .5s;
    border: 3px solid #b3b3b3;
}

.card-section .card:hover{
    border: 3px solid #f7672c;
}

.card .card-icon{
    position: relative;
    width: 100%;
    transition: 0.9s ease-out;
}

.card-icon img{
    position: absolute;
    width: auto;
    height: 116px;
    margin: 0 0 0 -12px;
}

.card-icon .img-1{
    transition: opacity 0.5s ease-out;
}

.card-icon .img-2{
    opacity: 0;
    transition: opacity 0.9s ease-out;
}

.card .technologies-card-title{
    position: relative;
    width: 100%;
    min-height: 227px;
    padding-top: 140px;
}

.technologies-card-title h4{
    font-size: 23px;
    font-weight: bold;
    color: #0E2368;
}

.technologies-card-footer{
    width: 100%;
    position: relative;
    margin-top: 8px;
}

.technologies-card-footer a{
    color: #0E2368;
    text-decoration: underline;
    transition: .5s;
}

.technologies-card-footer a:hover{
    text-decoration: underline;
    letter-spacing: 1px;
    color: #0E2368;
}

.tech-header{
    position: relative;
    width: 100%;
    height: 18vw;
    background-color: #0E2368;
    display: flex;
    justify-content: center;
}

.tech-header .header-img-box{
    position: absolute;
    top: 6vw;
    height: 24vw;
}

.tech-header .header-img-box img{
    width: auto;
    height: 100%;
}

.technology-page {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 100px;
    width: 70%;
    max-width: 1645px;
    margin: 15vw auto;
}

.technology-page .title {
    text-align: center;
    font-weight: 600;
    color: #0E2368;
}

.technology-page .text {
    color: #606060;
    text-align: justify;
    font-size: 20px;
    line-height: 40px;
}


/* career page css */
.page-section .header-area{
    flex-wrap: nowrap;
}
.page-section .career-title{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.page-section .career-title h1{
    font-size: 5em;
    font-weight: 700;
    color: #0E2368;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

.page-section .header-img-area .career-img{
    height: 38vh;
    width: auto;
}

.job-list{
    position: relative;
    margin: 170px auto;
}

.job-list .lbody{
    width: 100%;
    position: relative;
}

.lbody .list-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.lbody .list-item .list-item-title span{
    color: #0E2368;
    font-size: 24px;
}

.lbody .list-item .list-item-btn{
    display: flex;
    position: relative;
}

.lbody .list-item .list-item-btn a{
    text-align: center;
    flex-shrink: 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    background-color: #f7672c;
    border: 1px solid #f7672c;
    padding: 9px 32px;
    transition: 0.5s;
}

.lbody .list-item .list-item-btn a:hover{
    background-color: #FFF;
    border: 1px solid #f7672c;
    color: #f7672c;
    transition: 0.5s;
}

.lbody .line{
    width: 100%;
    height: 2px;
    background-color: #B7B7B7;
    margin: 30px 0 60px;
}

/* MEDIA */

@media (min-width: 1170px) and (max-width:1240px){
    .card-section .col-xl-3 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width:1024px){
    .tech-header{
        height: 20vw;
    }
    .tech-header .header-img-box {
        height: 26vw;
    }
    .technology-page{
        row-gap: 50px;
    }
    .technology-page .title{
        font-size: 34px;
    }
    .technology-page .text{
        line-height: 30px;
        font-size: 18px;
    }
}

@media (max-width:700px) {
    .technology-page{
        width: 80%;
    }
    .technology-page .title{
        font-size: 27px;
    }
}

@media (max-width:635px){
    .tech-header{
        height: 32vw;
    }
    .tech-header .header-img-box {
        height: 33vw;
        top: 14vw;
    }
    .technology-page{
        row-gap: 25px;
        margin: 22vw auto;
    }
}