.banner-left h1{
    font-size: 26px;
}

.banner-left h5{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
    opacity: 0.9;
}

.banner-left p{
    font-size: 15px;
    opacity: 0.8;
}

.banner-right{
    width: 50%;
}

.banner-left{
    width: 50%;
}





/* service-intro-section */
.service-intro-section{
    padding: 100px 0;
}

.intro-title{
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 80px;
    text-align: center;
}

.intro-content{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 50px;
}

.intro-item{
    background-color: var(--section-bg);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* min-height: 530px; */
    box-sizing: border-box;
    /* min-height: 450px;
    height: 100%; */
    padding: 40px;
}

.intro-item:not(.intro-item-2):not(.intro-item-3):not(.intro-item-6):not(.intro-item-7){
    padding: 40px;
}

.intro-item-btn{
    margin-top: 40px;
}

.intro-item .primary-btn{
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
}

.intro-item img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    /* object-fit: cover;
    position: relative;
    margin-top: -60px; */
}

.intro-item h3{
    font-size: 25px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.intro-item p{
    font-size: 15px;
    font-family: var(--family-font-secondary);
    text-align: left;
    color: #1a1a1a;
    opacity: 0.9;
    margin-bottom: 8px;
}

.intro-item ul{
    padding-left: 20px;
}

.intro-item ul li{
    list-style: disc;
    font-size: 14px;
    font-family: var(--family-font-secondary);
    text-align: left;
    color: #1a1a1a;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* .intro-item-2{
    background-color: rgb(30,35,39);
    align-items: center;
}
.intro-item-3{
    background-color: #bfbfc0;
    align-items: center;
}
.intro-item-6{
    align-items: center;
    background-color: #3bb8c4;
}
.intro-item-7{
    align-items: center;
    background-color: #dededf;
} */

/* @media screen and (max-width: 1669px) {
    .intro-item img{
        width: 125%;
    }
}

@media screen and (max-width: 1559px) {
    .intro-item img{
        width: 115%;
    }

    .intro-item{
        min-height: 100%;
    }
} */




/* industries-section */
.industries-section{
    background-color: #fff;
    padding-bottom: 100px;
}


/* contact-section */
.contact-section{
    background-color: var(--section-bg);
    padding: 100px 0;
}
.contact-content{
    /* box-shadow: 0 0 2px rgba(29, 45, 94, 0.1); */
    box-shadow: none;
}

@media screen and (max-width: 992px) {

    .service-intro-section{
        padding: 0;
        opacity: 1;
    }

    .intro-title{
        font-size: 32px;
        margin-bottom: 10px;
    }

    .intro-item{
        padding: 20px;
        opacity: 1;
    }
    .intro-item:not(.intro-item-2):not(.intro-item-3):not(.intro-item-6):not(.intro-item-7){
        padding: 20px;
    }

    .intro-item img{
        height: auto;
    }
    .intro-content{
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .industries-section{
        padding: 30px 0;
    }

    .intro-item-btn{
        margin-top: 20px;
    }

    .intro-item:nth-child(1){
        order: 1;
    }
    .intro-item:nth-child(2){
        order: 0;
    }
    .intro-item:nth-child(3){
        order: 2;
    }
    .intro-item:nth-child(4){
        order: 3;
    }
    .intro-item:nth-child(5){
        order: 5;
    }
    .intro-item:nth-child(6){
        order: 4;
    }
    .intro-item:nth-child(7){
        order: 6;
    }
    .intro-item:nth-child(8){
        order: 7;
    }
    .intro-item:nth-child(9){
        order: 9;
    }
    .intro-item:nth-child(10){
        order: 8;
    }
    .intro-item:nth-child(11){
        order: 10;
    }
    .intro-item:nth-child(12){
        order: 11;
    }
    .intro-item:nth-child(13){
        order: 13;
    }
    .intro-item:nth-child(14){
        order: 12;
    }
    .intro-item:nth-child(15){
        order: 14;
    }
    .intro-item:nth-child(16){
        order: 15;
    }

    .intro-item h3{
        margin-bottom: 10px;
    }
}