
/*  LIGHT MODE TEMPLATE:
    HIGHLIGHTS, BUTTONS, BACKGROUND COLOUR & SOCIAL MEDIA ICONS 

    To change from light mode to dark mode, simply replace "light-mode.css with back-mode.css"
    in line #43, in the index file, not here. */

    body {
        background-color: #F5F7F9;
    }
    
    .text-custom {
        color: rgb(61, 59, 60);
    }
    
    .rounded-circle {
        border: 2px solid rgb(255, 255, 255);
    }
    
    .first-title {
        color: rgb(61, 59, 60);
    }
    
    .header-name {
        color: rgb(61, 59, 60);
    }
    
    .copyright_content {
        color: rgb(61, 59, 60);
    }

    /* Cards colors --------------------------------------------------------------------------------*/

    .p-2 {
        box-shadow: 0 2px 3px rgb(3,27,78,10%);
        background-color: white;
        border: .5px solid #DFE3E9;
    }
    
    .img_blog {
        padding: 12px;
    }
    
    .rounded {
        border-radius: .25rem !important;
        border: .5px solid #DFE3E9;
    }
    
    /* Basic Icons Info -----------------------------------------------------------------------------------*/
    
    .about-social li a {
        align-items: center;
        color: rgb(61, 59, 60);
        background-color: #ffffff;
        display: inline-block;
        height: 42px;
        width: 42px;
        font-size: 20px;
        border-radius: 50%;
        border: .5px solid #DFE3E9;
        line-height: 38px;
        transition: all 0.5s;
        text-align: center;
        box-shadow: 2px 5px 8px rgba(0,0,0,30%);
    }
    
    .about-social li a:hover {
        color: white;
        background-color: #8d8d8d;
    }
    
    /* Button Colours & Info --------------------------------------------------------------------------------*/
    
    .btn-custom {
        padding: 12px;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.5s;
        letter-spacing: 0.6px;
        color: rgb(61, 59, 60);
        border: .5px solid #DFE3E9;
        background-color: #eaeef1;
        box-shadow: 0 2px 3px rgb(3,27,78,10%);
    }
    
    .btn-custom:hover,
    .btn-custom:focus,
    .btn-custom:active,
    .btn-custom.active,
    .btn-custom.focus,
    .btn-custom:active,
    .btn-custom:focus,
    .btn-custom:hover,
    .open > .dropdown-toggle.btn-custom {
        color: #ffffff;
        background-color: #8d8d8d;
        border: .5px solid #DFE3E9;
    }
