    .MainSection {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100%;
        padding-bottom: 50px;
    }
    
    .line-heading {
        font-family: sans-serif;
        color: #195171;
        font-weight: 600;
        line-height: 1.1;
        display: flex;
        align-items: center;
        /* width: 80%; */
        margin: 10px 0 40px 0;
        white-space: nowrap;
        font-size: 2.3rem;
        /* text-shadow: 1px 1px 1px rgb(0, 0, 0); */
    }
    
    h3.large-heading {
        font-family: sans-serif;
        margin: 0 0 0 10%;
        font-size: 52px;
        line-height: 1.1;
        letter-spacing: -.045em;
        color: #FACE41;
        text-shadow: 1px 1px 1px rgb(0 0 0);
        padding-bottom: 50px;
    }
    
    .FAQimg {
        width: 150px;
        margin-bottom: -15px;
    }
    
    .accordion {
        height: 60px;
        width: 65%;
        margin-top: 20px;
        background-color: #195171;
        color: #ffffff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 14px;
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    }
    
    .title {
        font-weight: 900;
        font-size: 20px;
    }
    
    .show {
        /* display: flex;
        align-items: center;
        justify-content: center; */
        font-size: 40px;
        cursor: pointer;
        color: #ffffff;
    }
    
    .info {
        height: 0;
        width: 64.8%;
        background-color: transparent;
        color: #000;
        display: flex;
        align-items: center;
        padding: 0 14px;
        position: relative;
        overflow: hidden;
        border: 0;
        transition: height .4s;
    }
    
    .info p {
        padding: 30px;
        font-size: 20px;
    }
    
    .info.reveal {
        min-height: 150px;
        border: 1px solid #195171;
        border-radius: 0 0 10px 10px;
        transition: height .4s;
    }
    
    .accordion.radius {
        border-radius: 10px 10px 0 0;
    }
    @media (max-width: 600px) {
        .title {
            font-weight: 500;
            font-size: 18px;
        }
        .info p {
            padding: 30px;
            font-size: 16px;
            text-align: justify;
        }  
        .line-heading {
            font-size: 1.8rem;
          
        }
    }


    @media (max-width: 400px) {
        .title {
            font-weight: 500;
            font-size: 16px;
        }
        .info p {
            padding: 20px;
            font-size: 14px;
            text-align: justify;
        }  
        .line-heading {
            font-size: 1.4rem;
          
        }
    }

    @media (max-width: 340px) {
        .title {
            font-weight: 500;
            font-size: 14px;
        }
        .info p {
            padding: 20px;
            font-size: 12px;
            text-align: justify;
        }  
        .line-heading {
            margin-top: 10px;
            font-size: 1rem;
          
        }
    }
    
