@media(max-width: 1920px){
    :root{
        --max-width: 1920px;
    }    
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    list-style: none;
}

html{
    scroll-behavior: smooth;
}

.page-title{
    padding: 15px 0px 15px 0px;
}

.page-title h1{
    font-size: 3.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    color: black;
    text-shadow: 2px 2px white;
}

.page-title h2{
    font-size: 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    color: black;
    text-shadow: 2px 2px white;
}

.page-title h3{
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    color: black;
    text-shadow: 2px 2px white;
}

.banner-img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
}

.banner-img div{
    width: 100%;
    display: flex;
    overflow: hidden;
}

.banner-img img{
    display: flex;
    width: 100%;
}

.about-section{
    margin: auto;
    max-width: var(--max-width);
}

.cp-about-div {
    margin-left: 56px;
    margin-right: 56px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.about-section .about-div {
    width: fit-content;
}

.about-section .about-div h2{
    margin-top: 40px;
    width: fit-content;
    text-shadow: 2px 2px #A58CD3;    
}


.book-init{
    position: relative;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: grid;
    grid-template-areas:
        "description-1 book-cover"
        "description-2 book-cover"
        "description-3 book-cover"
        "about book-cover";
    grid-template-columns: minmax(0, 75%) auto;
}

#description-1{
    grid-area: description-1;
}

.description-2{
    grid-area: description-2;
    margin-top: 20px; 
    font-family: Calibri; 
    font-weight: bold; 
    font-style: italic;
}

.description-3{
    grid-area: description-3;
    line-height: 1.5;
    margin-top: 10px;
}

.below-description{
    grid-area: about;
    margin-top: 10px;
}

.certify-carrier{
    display: grid;
    grid-template-areas:
        "MSMEinfo MSMEverify";
    grid-template-columns: minmax(0, 75%) auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.certified-about{
    margin-top: 20px;
    line-height: 1.5;
}

.description-4 {
    margin-top: 20px;
    text-align: justify;
    line-height: 1.5;
}

.book-cover {
    margin: 20px 0px 20px 100px;
    grid-area: book-cover;
    height: 230px;
    width: 180px;
    border: 1px solid black;
    box-shadow: 1px 1px 10px grey;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    text-decoration: none;
}



#cover-img{
    background-image: url('../images24/Final Company Profile - ARIHANT-1-1-overlay.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

#cover-img-2{
    grid-area: MSMEverify;
    background-image: url('../images24/certify_new_3.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

#cover-img-3{
    grid-area: MSMEverify;
    background-image: url('../whatsappSent/IMG/LEVEL_ARIHANT_FINAL-1.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

#carrier-holder{
    grid-area: MSMEinfo;
    text-align: justify;
}

.bottom-border-fe {
    position: absolute;
    margin-left: 10px;
    margin-top: 2px;
    background-color: black;
    box-shadow: 2px 2px #A58CD3;
    border-radius: 20px;
    font-size: calc(0.05vw + 2.4px);
    width: 86px;
}

@media(max-width: 600px){

    .description-3, .description-4, .certified-about{
        text-align: justify;
    }

    .certified-about{
        text-align: center;
    }

    .certify-carrier{
        grid-template-areas:
        "MSMEverify"
        "MSMEinfo";
        grid-template-columns: minmax(0, 100%) auto;
    }

    .about-div{
        justify-content: center;
        margin-left: 25%;
    }

    .description-2{
        margin-left: 14%;
    }

    #msmeHeader{
        margin-left: auto;
        margin-right: auto;
    }

    .book-init{
        grid-template-areas:
            "book-cover"
            "description-1"
            "description-2"
            "description-3"
            "about";
        grid-template-columns: minmax(0, 90%) auto;
    }

    .banner-img{
        aspect-ratio: 16 / 10;
    }

    .book-cover{
        margin: auto;
        margin-top: 30px;
    }

    #carrier-holder{
        max-width: 100%;
        line-height: 1.5;
    }
}