/* Social media section styles */

    .social_section
    {
        padding: 50px 10px;
        margin: auto;
        max-width: 1200px;
    }

    .social_wrapper
    {
        display: flex;
    }

    .social_section h4 
    {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        color: #6610f2;
    }

    .facebook_page_box
    {
        padding: 10px
    }

    .youtube_box
    {
        flex: 1;
        padding: 10px;
    }

    .whatsapp_button_container
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
    } 

    .whatsapp_button_container
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }

    .whatsapp_button
    {
        width: 100%;
        padding: 30px 20px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .whatsapp_box
    {
        margin: auto;
        max-width: 800px;
    }

    .whatsapp_button i
    {
        font-size: 30px;
        margin-right: 10px;

    }


    .youtube_btn_container
    {
        text-align: center;
        display: block;
        width: 100%;
    }



    /* ....................VIDEOS......................... */

		
	.video_wrap
	{
		flex-basis: 300px;
		flex-grow: 1;
		margin: 10px;
	}
		

    .video
    {
        width: 100%;
        max-width: 900px;
        
    }

    .video_container
    {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        position: relative;
        
    }
    
    .video_container iframe
    {
        
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        margin: auto;
    }
    
    
    .video_box
    {
        min-height: 20px;
        width: 100%;
        max-width:400px;
    }
		

    @media only screen and (max-width: 754px) 
    {
        .social_wrapper
        {
            flex-direction: column;
        }

        .facebook_page_box
        {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .whatsapp_button_container
        {
            grid-template-columns: 1fr;
            padding: 10px;
        }
    }