@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;

}

html {
    overflow-x: hidden;
}

nav{
    border-bottom: 2px solid black;
}


.whatsapp-icon i {
    font-size: 3vmax;
    position: fixed;
    bottom: 6%;
    left: 2%;
    background-color: rgb(42, 164, 42);
    color: white;
    padding: 0.7%;
    border-radius: 50%;
    z-index: 9997;
}


.fullbox {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2%;
}

.leftsection {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.heading h4 {
    font-size: 2.5vmax;
    text-align: center;
    font-family: "jost",serif;
    margin-bottom: 5%;
    border-bottom: 2px solid black;
}

.paragraph p {
    font-size: 1.5vmax;
    text-align: center;
}

.paragraph p span {
    font-weight: 550;
}

.paragraph b {
    font-size: 1.5vmax;
}

.imgboxright {
    width: 25%;
}

.imgboxright img {
    width: 100%;
    border-radius: 20px;
}


.textleft p {
    text-align: left;
}


.last-para span {
    font-weight: 600;
}



/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .whatsapp-icon i {
        font-size: 5vmax;
    }

    .fullbox {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin-top: 2%;
    }

    .leftsection {
        width: 80%;
        height: 80%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .heading h4 {
        font-size: 2.5vmax;
        text-align: center;
        font-family: "jost",serif;
        margin-bottom: 5%;
        border-bottom: 2px solid black;
    }

    .paragraph p {
        font-size: 1.5vmax;
        text-align: center;
    }

    .imgboxright {
        width: 50%;
    }

    #reverse {
        flex-direction: column-reverse;
    }

    .textleft p {
        text-align: left;
    }


    .imgboxright {
        width: 50%;
    }
}