
/* this .css file contain styling property of thank_you.php file */

/* download division  */
.contact-section .download-div
{
    margin-top:2rem;
}

/* card-style */
.contact-section .download-div .card
{
    border-radius: 0px;
    
    
}

/* qr code content size */
/* .contact-section .download-div h5
{
    font-size: 1.5vw;  
} */


/* qr code image style */
.contact-section .download-div .qr_code_img
{
    /* border:2px solid black; */
    /* display: block; */
    /* width: 100%; */
    /* height: auto; */
    width:200px;
    height:auto;
    -o-object-fit: cover;
       object-fit: cover;
  
}


/* display card-body */
.contact-section .download-div .card-body
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}


/* playstore badge style */
.contact-section .download-div .playstore-badge
{
    /* border:2px solid black; */
    width:35%;
    height:auto;
    margin-left: -0.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    
}

/* qr-code-content style */
.contact-section .download-div .qr_code-content
{
    /* border:2px solid black; */
    margin-left:2rem;
    width: 100%;
}






/********************************* responsive code start *********************************************/

/* Custom, iPhone Retina  and  Extra Small Devices, Phones */ 
@media screen and (min-width:320px) and (max-width:767px)
{
    /* display contents of card in column order */
    .contact-section .download-div .card-body
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }  

    /* qr-code[images] width */
    .contact-section .download-div .qr_code_img,
    .contact-section .download-div .playstore-badge
    {
       width:  100%;
    }



    /* qr-code[images,content] position */
    .contact-section .download-div .qr_code_img,
    .contact-section .download-div .qr_code-content,
    .contact-section .download-div  .playstore-badge
    {
        
        display: block;
        margin-left: auto;
        margin-right: auto;
    }


    /* qr-code[content] size */
    .contact-section .download-div h5 
    {
        margin-top:1rem;
        font-size: 5vw;
     
    }

    /* qr-code[.playstore-badge] position */
    .contact-section .download-div .playstore-badge
    {
        margin-top:1rem;
        /* width:100%; */
       
        /* margin-left:-0.5rem; */
    }

    
}


/* Small Devices, Tablets  */
@media screen and (min-width:768px) and (max-width:991px)
{
  
    .contact-section .download-div h5 
    {
        /* border:1px solid black; */
        
        font-size: 2.2vw;
    }

    .contact-section .download-div .playstore-badge 
    {
        /* border:1px solid black; */
        /* width:50%; */
        /* margin-left: -0.5rem;  */
         width:50%;
       
    }
    
}


/* Medium Devices, Desktops  */
@media screen and (min-width:992px) and (max-width:1199px)
{
    .contact-section .download-div h5
    {
        /* border: 1px solid black; */
        font-size: 1.7vw;
    }

   
}




/********************************* responsive code end *********************************************/