* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

:root {
    --main-colour: #f2f1f0;
    --font-style1: Outfit;
    --font-style2: Poppins;
    --font-style3: Roboto;
    --font-style4: Montserrat;
    --section-width: min(1650px, 90%);
    --text-color: #666666;
    --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    --header-color: #333333;
}

body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.blasting-bg {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('./INTEGRATED-COATINGS/ICL-Images/blasting-bg.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
}

/* SECTION 1 */




.blasting-section1,
.blasting-section2 {
    border: 1px solid #e5e5e5;
    padding: 2rem;
}

.blasting-gridboxes {
    /* border: 2px solid red; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

.sec1-gridbox {
    /* border: 2px solid black; */
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.18);

}

.page2-gridbox {
    border: 2px solid black;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.gridboximg img {
    height: 70%;
    width: 100%;
    object-fit: cover;
    padding: 20px;
}

.gridboximg {
    overflow: hidden;
    height: 110vh;
}

.page2-img {
    height: auto;
}

.gridboxtexts {
    line-height: 2rem;
    padding: 2rem 1rem 1rem 1rem;
    background-color: #fdfdfd;
    border-top: 0.2px solid #d0d0d0;
}

.gridboxtexts h3 {
    font-family: var(--font-style4);
    font-size: 18px;
    font-weight: 700;
    color: var(--header-color);
}

.gridboxtexts p {
    font-family: var(--font-style4);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}


.button {
    /* border: 2px solid black; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 3rem;
}

.button button {
    cursor: pointer;
    border-radius: 50%;
    border: none;
    color: #004aad;
    background-color: transparent;
    font-size: 18px;
}

.button span {
    border: 2px solid #004aad;
    padding: .6rem;
    border-radius: 50%;
    font-weight: 400;
    cursor: pointer;

}

.initial {
    background-color: #004aad;
    color: white;
}


/* PAGINATION SYSTEM */

#page1,
#page2 {
    transition: all 0.7s ease-in-out;
    opacity: 1;
    transform: translateX(0);
    width: 100%;
    flex: 4;
}

.page-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    height: 0;
    overflow: hidden;
}

.page-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
    width: 100%;
    height: auto;
}

.page-container {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    padding: 3rem 2rem;
}




.blasting-filter {
    height: 100%;
    width: 100%;
    flex: 1;
    text-transform: capitalize;
    font-family: var(--font-style3);
    padding: 2rem 0 4rem 2rem;
    background-color: #f5f5f5;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.18);

}


.blasting-filter h2 {
    font-size: 20px;
    font-weight: 700;
}

.blasting-filter h3 {
    color: #004AAD;
    font-size: 18px;
    font-weight: 500;
    padding: 1rem 0;
}

.blasting-filter ul {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding-top: 1rem;
}

.blasting-filter li {
    display: flex;
    gap: 10px;
    list-style: none;
    cursor: pointer;

}

.blasting-filter li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #64504f;
}

.blasting-filter li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 0.3s ease;
}
.blasting-filter ul li i {
  color: #777777;
  transition: color 0.18s, transform 0.12s;
}

.blasting-filter li.active a,
.blasting-filter li:hover a {
    color: #0558c5;
}

.blasting-filter li.active i,
.blasting-filter li:hover i {
    background-color: #0558c5;
    color: rgb(169, 162, 240);
    border-radius: 50%;
}

/* helper for JS-applied active icon */
.blasting-filter li i.active-icon {
    background-color: #0558c5;
    border-radius: 50%;
    transform: translateX(2px);
}

.abrv-header h3 {
    text-align: center;
    font-size: 26px;
    font-family: var(--font-style3);
    font-weight: 700;
    text-transform: capitalize;
    color: #333333;
    padding: 1rem;
}

.abrv-header {
    background-color: #f2f4f5;
}








@media only screen and (max-width:1025px) {
    .blasting-main{
        flex-direction: column;
    }
    .blasting-gridboxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .gridboximg {
        height: auto;
    }

    .blasting-filter {
        flex: 1.8;
    }
}

@media only screen and (max-width: 920px) {
    .blasting-gridboxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .blasting-filter {
        flex: 2;
    }
   
}

@media only screen and (max-width: 780px) {
    .blasting-gridboxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .blasting-filter {
        flex: 2;
    }
}

@media only screen and (max-width: 580px) {

    .blasting-gridboxes {
        padding: 0;
    }

    .section9-boxes{
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }
    .section9-logoimg{
        height: auto;
    }
    .section10-all{
        gap: 0;
    }
    .section10boxes{
        padding: 0 .5rem;
    }
}