﻿.TwoBtnRow {
    display: flex;
    gap: 1.5em;
    align-items: center;
}

.footerbody {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 0.3em;
    /*color:var(--primary-color);*/
    color: #ccc;
    font-weight: normal;
    margin: 1em 0;
}

    .footerbody div.powered {
        margin-top: 0.5em;
        width: 100%;
        text-align: right;
    }

        .footerbody div.powered img{
            height:2.4em;
            width:auto;
        }

        .logoAndSS {
            display: flex;
            align-items:center;
            justify-content: space-between;
            padding-bottom:1em;
        }

.Cpyright {
    text-align: right;
    color: #777;
    font-size: 0.8em;
    margin-bottom: 0.5em;
}

.footerLogo {
    cursor: pointer;
}

.footerLogo img {
    height:4em;
    width: auto;
}

.plainfooterLogo{

}

    .plainfooterLogo img {
        height: 4em;
        width: auto;
        margin-top: 0.5em;
    }

.footerContacts {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    line-height: 1.2;
    color: rgba(255,255,255,0.8);
}

    .footerContacts div h3 {
        font-weight: 700;
        color: rgb(255,255,255,1);
    }

    .footerContacts div p {
        font-size: 0.9em;
        line-height: 1.2;
        color: rgba(255,255,255,0.8);
    }

    .footerContacts div ul {
        padding: 0;
        list-style-type: none;
    }

        .footerContacts div ul li a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9em;
            line-height: 1.2;
            color: rgba(255,255,255,0.8);
            transition: all 0.5s ease-in-out;
        }

            .footerContacts div ul li a:hover {
                color: rgba(255,255,255,1);
                font-weight: 500;
                cursor: pointer;
            }

.footerMembership{
    padding:1em 0;
}

.footerMembership div.title h3 {
    font-size: 0.85em;
    font-weight: 700;
    color:#fff;
    margin-bottom:0.5em;
}

.lightText{
    color:#555;
}

.socialmedia li {
    display: inline-block;
    margin-right: 0.3em;
    transition: color 0.25s ease-in-out;
    cursor: pointer;
}

    .socialmedia li:last-child {
        margin-right: 0;
    }

    .socialmedia li i {       
        font-size: 1.6em;
        color: rgba(255,255,255,0.85);
    }

        .socialmedia li i:hover {
            color: rgba(255,255,255,1);
        }    

.Copyright {  
    text-align: center;
    padding: 0.3em 0;
}

.CopyrightText {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-weight:normal;
    font-size: 0.9em;
}

.CopyrightText div:last-child{
    text-align:right;
}

@media only screen and (max-width:640px) {
    .footerLogo img {
        height: 3.5em;
        width: auto;
    }
    .footerContacts {
        display: grid;
        gap: 1em;
        align-items: start;
        margin: 0;
        padding: 0;
        text-align: left;
        font-size:8.5pt;
    }
    
    .socialmedia li i {
        font-size: 1em;
    }

    .CopyrightText {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

        .CopyrightText div:last-child {
            text-align: left;
        }
}