/* Banner Start */
.banner{
    position: relative;
    height: 87.7vh;
}
.banner .banner-layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 77, 118, 0.8);
}
.banner img{
    width: 100%;
    height: 100%;
    background-size: cover;
}
.banner-content{
    position: absolute;
    bottom: 4.2rem;
    left: 8%;
    color: #fff;
}
.banner-content h1{
    font-size: calc(3.5rem + 1vw);
    font-weight: 700;
    text-transform: uppercase;
}
.banner-content p{
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    max-width: 66%;
    margin-top: 1rem;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .banner-content h1{
        font-size: calc(3.8rem + 1vw);
    }
    .banner-content p{
        font-size: calc(0.55rem + 0.5vw);
    }
}

/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .banner-content h1{
        font-size: calc(4rem + 1vw);
    }
    .banner-content p{
        font-size: calc(0.6rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .banner{
        height: auto;
    }
    .banner-content{
        position: relative;
        bottom: 1rem;
        left: 1rem;
        padding-right: 1rem;
    }
    .banner-content h1{
        font-size: calc(1.3rem + 0.5vw);
        margin-top: -2.9rem;
    }
    .banner-content p{
        font-size: calc(0.7rem + 0.5vw);
        max-width: 100%;
        margin-top: 1rem;
        margin-bottom: 0;
    }
}
/* Banner End */

/* Products Tabbing Start */
.products-tabbing{
    padding: 4rem 8%;
    background-color: rgba(214, 214, 214, 0.5);
    background-image: url('../images/product-bg.png');
    background-size: cover;
    background-position: center;
}
.products-tab-head #nav-pills{
    display: flex;
    justify-content: center;
}
.products-tab-head button{
    background-color: transparent !important;
    color: #868686;
}
.products-tab-head button.active{
    color: #1c455f !important;
    position: relative;
}
.products-tab-head button.active::after{
    content: '';
    position: absolute;
    bottom: 1px;
    width: 50%;
    left: 25%;
    height: 4px;
    background-color: #1c455f;
    border-radius: 2px;
}
.products-tab-head button:hover{
    color: #6c6c6c;
}
.products-tab-head button h2{
    text-transform: uppercase;
    font-weight: 700;
    font-size: calc(1rem + 0.5vw);
}

.products-tab-body{
    margin-top: 4rem;
}
.products-tab-body .product-card-row{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.55%;
}
.products-tab-body .product-card{
    width: 32.3%;
    text-decoration: none;
    background-color: #d6d6d6;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 5px 6px 6px;
    margin-bottom: 3rem;
}
.products-tab-body #products-by-type .product-card{
    width: 23.8%;
}
.products-tab-body .product-card:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.386) 5px 6px 6px;
}
.products-tab-body .product-card img{
    width: 100%;
    height: auto;
}
.products-tab-body .product-card .card-desc{
    padding: 0.8rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.products-tab-body #products-by-industry .product-card .card-desc{
    height: 200px;
}
.products-tab-body .product-card .card-desc h3{
    text-transform: uppercase;
    font-weight: 700;
    font-size: calc(0.8rem + 0.5vw);
    color: #1c455f;
}
.products-tab-body .product-card .card-desc p{
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    line-height: normal;
    color: #1c455f;
    margin: 0;
}
.products-tab-body .product-card .card-desc button{
    font-size: calc(0.38rem + 0.5vw);
    font-weight: 600;
    background-color: #1c455f;
    color: #fff;
    margin-top: 0.8rem;
    border: none;
    padding: 0.3rem 0.8rem;
    transition: all 0.2s ease-in-out;
    width: 100%;
}
.products-tab-body .product-card .card-desc button:hover{
    background-color: #103044;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .products-tabbing{
        padding: 4.5rem 8%;
    }
    .products-tab-head button h2{
        font-size: calc(1.2rem + 0.5vw);
    }
    .products-tab-body{
        margin-top: 4.5rem;
    }
    .products-tab-body .product-card{
        margin-bottom: 3.5rem;
    }
    .products-tab-body .product-card .card-desc{
        padding: 0.9rem;
        height: 280px;
    }
    .products-tab-body #products-by-industry .product-card .card-desc{
        height: 220px;
    }
    .products-tab-body .product-card .card-desc h3{
        font-size: calc(0.9rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc button{
        font-size: calc(0.4rem + 0.5vw);
        margin-top: 0.85rem;
        padding: 0.3rem 1rem;
    }
}
/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .products-tabbing{
        padding: 5rem 8%;
    }
    .products-tab-head button h2{
        font-size: calc(1.4rem + 0.5vw);
    }

    .products-tab-body{
        margin-top: 5rem;
    }
    .products-tab-body .product-card{
        margin-bottom: 3.8rem;
    }
    .products-tab-body .product-card .card-desc{
        padding: 1rem;
        height: 310px;
    }
    .products-tab-body #products-by-industry .product-card .card-desc{
        height: 240px;
    }
    .products-tab-body .product-card .card-desc h3{
        font-size: calc(1rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc p{
        font-size: calc(0.6rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc button{
        font-size: calc(0.45rem + 0.5vw);
        margin-top: 0.9rem;
        padding: 0.3rem 1rem;
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .products-tabbing{
        padding: 2rem 1rem 1rem 1rem;
    }
    .products-tab-head #nav-pills{
        display: flex;
        justify-content: center;
    }
    .products-tab-head button{
        padding: 0.2rem 0.7rem !important;
    }
    .products-tab-head button.active::after{
        bottom: 0;
        width: 40%;
        left: 30%;
        height: 2px;
    }
    .products-tab-head button h2{
        font-size: calc(0.63rem + 0.5vw);
    }

    .products-tab-body{
        margin-top: 2rem;
    }
    .products-tab-body .product-card-row{
        justify-content: space-between;
        gap: 0;
    }
    .products-tab-body .product-card{
        width: 48%;
        margin-bottom: 1rem;
    }
    .products-tab-body #products-by-type .product-card{
        width: 48%;
    }
    .products-tab-body .product-card .card-desc{
        padding: 0.5rem;
        height: 200px;
    }
    .products-tab-body #products-by-industry .product-card .card-desc{
        height: 200px;
    }
    .products-tab-body .product-card .card-desc h3{
        font-size: calc(0.7rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .products-tab-body .product-card .card-desc button{
        font-size: calc(0.43rem + 0.5vw);
    }
}
/* Products Tabbing End */

/* Products Read More Start */
.read-more-section {
    padding: 3rem 8%;
}
.read-more-title {
    font-size: calc(1.7rem + 0.5vw);
    font-weight: 700;
    color: #1c455f;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.read-more-content p {
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #555;
}
.extra-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 0.8rem;
    transition: max-height 0.3s ease;
}
.extra-content.show {
    max-height: 100vh;
}
.read-more-btn {
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    background-color: #1c455f;
    color: #fff;
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.read-more-btn:hover {
    background-color: #103044;
}

/* For 110% in 15 inch screens */
@media screen and (min-width: 1230px) and (max-width: 1399px){
    .read-more-section {
        padding: 3.5rem 8%;
    }
    .read-more-title {
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 1.3rem;
    }
    .read-more-content p {
        font-size: calc(0.6rem + 0.5vw);
        margin-bottom: 0.9rem;
    }
    .extra-content {
        margin-top: 0.9rem;
    }
    .read-more-btn {
        margin-top: 1.1rem;
        padding: 0.45rem 1.2rem;
        font-size: calc(0.6rem + 0.5vw);
    }
}
/* For 100% in 15 inch screens */
@media screen and (min-width: 1400px) {
    .read-more-section {
        padding: 4rem 8%;
    }
    .read-more-title {
        font-size: calc(1.9rem + 0.5vw);
        margin-bottom: 1.35rem;
    }
    .read-more-content p {
        font-size: calc(0.65rem + 0.5vw);
        margin-bottom: 0.95rem;
    }
    .extra-content {
        margin-top: 0.95rem;
    }
    .read-more-btn {
        margin-top: 1.2rem;
        padding: 0.45rem 1.2rem;
        font-size: calc(0.65rem + 0.5vw);
    }
}

/* For small screens */
@media screen and (max-width: 767px) {
    .read-more-section {
        padding: 1rem 1rem;
    }
    .read-more-title {
        font-size: calc(1rem + 0.5vw);
        margin-bottom: 0.7rem;
    }
    .read-more-content p {
        font-size: calc(0.7rem + 0.5vw);
        margin-bottom: 0.8rem;
    }
    .extra-content.show {
        max-height: 200vh;
    }
    .read-more-btn {
        margin-top: 0.7rem;
        padding: 0.3rem 1.2rem;
        font-size: calc(0.65rem + 0.5vw);
    }
}
/* Products Read More End */