*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.svg-top{
    margin-top: -2px;
}

.content{
    position: relative;   
}

/* home-section start */

.content .home-section{
    width: 100%;
    height: 100vh;

    background-color: #990069;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: flex-end; */
    align-items: center;

    position: relative;
}

.content .home-section .heading{
    font-size: 60px;
    color: #fff;
    text-shadow: 5px 15px 14px #000000;
    user-select: none;
    z-index: 2;
    margin-top: 50px;


    /* border: 1px solid red; */
}

.content .home-section .contact-image{

    /*width: 300px;*/
    /*height: 300px;*/
    
    width: 220px;
    height: 220px;
    
    margin-top: 50px;

    /* width: 20%;
    height: 20vw; */

    position: relative;
    
    /* border: 1px solid red; */
    
}

.content .home-section .contact-image img{

    width: 100%;
    height: 100%;

    position: absolute;

    object-fit: cover;
    /* object-position: center 30%; */

    border-radius: 50%;

    
    border: 1px solid green;
    
}

/* home-section end */

/* contact-cards-section start */

.content .questions-cards-section{
    width: 100%;
    /* height: 100vh; */
    
    /* background: linear-gradient(to bottom, #8039f1, #740099); */
    background-color: #ead8ff;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


    position: relative;

    /* border: 1px solid red; */
}

.content .questions-cards-section .heading{
    /* color: #fff; */
    color: #000;
    text-align: center;
    
    margin-bottom: 50px;

    text-shadow: 5px 15px 14px #000000;
}







.content .questions{

    /* height: 40%; */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 50px;

    overflow: hidden;

    /* border: 1px solid red; */
}

.content .questions .box{
    width: 95%;

    padding: 20px;

    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);

    border-radius: 8px;
    
    margin-top: 25px;
    margin-bottom: 25px;

    background-color: #8039f1;

}

.content .questions .box h2{
    color: #fff;
    margin-bottom: 20px;
    
    text-shadow: 5px 15px 14px #000000;
}

.content .questions .box p{
    /* color: #676767; */
    color: #fff;
    /* color: #363636; */
    font-size: 15px;
    word-spacing: 3px;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 25px;
}



.content .more-questions-section{
    width: 100%;
    /* height: 100vh; */

    min-height: 120vh;
    
    /* background: linear-gradient(to bottom, #8039f1, #740099); */
    /* background: linear-gradient(to bottom, #009905, #f1e239); */

    /*background: linear-gradient(to bottom, #990000, #7c39f1);*/
    background: linear-gradient(to bottom, #740099, #7c39f1);

    /* background-color: #ead8ff; */
    
    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; */


    position: relative;

    /* border: 1px solid red; */
}

.content .more-questions-section .heading{
    color: #fff;
    text-align: center;

    /* margin-bottom: 50px; */

    padding: 50px;


    overflow: hidden;
}

.content .more-questions-section .heading h1{
    margin-top: 100px;

    
    text-shadow: 5px 15px 14px #000000;
}

.content .more-questions-section .heading p{
    color: #fff;
    text-align: center;

    margin-top: 50px;
    margin-bottom: 100px;

    /* text-shadow: 5px 15px 14px #000000; */


    /* color: #2a2a2a; */
    font-size: 20px;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 25px;
}


@media only screen and (max-width: 800px) 
{
    .content .home-section .contact-image {
        width: 200px;
        height: 200px;
    }

    .content .home-section .heading {
        font-size: 40px;
    }

    .content .more-questions-section .heading{
        padding: 20px;
    }
}