#site-footer{
    margin: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.site-footer{
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #1E21371A;

    .main-footer{
        .footer-column-wrap{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 30px;
            .footer-column{
                margin-bottom: 30px;
                form div.gform_body.gform-body .gform_fields .gfield .ginput_container input{
                    color: #9FA2B9;
                    border-bottom: 1px solid #1E2137;
                }
            }
            .column-heading{
                position: relative;
                font-size: 20px;
                color: #fff;
                padding-bottom: 12px;
                margin-bottom: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .column-content{
                font-size: 16px;
                font-weight: 400;
                line-height: 1.75em;
                color: #9FA2B9;
                h1,h2,h3,h4,h5,h6{
                    color: #fff;
                }
                h6{
                    font-family: $didact-gothic-font;
                    font-weight: 400;
                    position: relative;
                    margin-bottom: 5px;
                    font-size: 16px;
                }
                b{
                    color: $primary-color;
                    font-weight: 400;
                }
                p{
                    color: inherit;
                    margin-bottom: 0;
                }
                div.gform_wrapper{
                    form{
                        div.gform_body.gform-body .gform_fields .gfield .ginput_container input{
                            background-color: transparent;
                        }
                    }
                }
            }
        }
    }

    .sub-footer{
        padding: 30px 0 10px 0;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        .row{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 30px;
            .col{
                margin-bottom: 20px;
            }
        }
        .copyright{
            color: #9FA2B9;
            font-size: 14px;
            margin-top: 7px;
        }
        .social-list{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
        }
        .links{
            text-align: right;
            .link{
                color: #9FA2B9;
                display: inline-block;
                margin-left: 5px;
                font-size: 14px;
                margin-top: 7px;
                &:hover{
                  color: $primary-color;
                }
            }
        }
    }

    @media screen and (max-width: $break-md) {
        .main-footer{
            .footer-column-wrap{
                grid-template-columns: 1fr;
                grid-gap: 0;
            }
        }
        .sub-footer{
            .row{
                grid-template-columns: 1fr;
                grid-gap: 0;
            }
            .social-list{
                justify-content: flex-start;
            }
            .links{
                text-align: left;
                .link{
                    margin-top: 0;
                    margin-left: 0;
                    margin-right: 5px;
                }
            }
        }
    }

}


.progress-wrap{
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    &.active-progress {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    &::after{
        content: '\e648';
        font-family: 'themify';
        text-align: center;
        line-height: 40px;
        font-size: 12px;
        font-weight: 700;
        color: $primary-color;
        position: absolute;
        left: 0;
        top: 0;
        height: 40px;
        width: 40px;
        cursor: pointer;
        display: block;
        z-index: 1;
        -webkit-transition: all 400ms linear;
        -o-transition: all 400ms linear;
        transition: all 400ms linear;
    }
    svg.progress-circle{
        path{
            fill: none;
            stroke: $primary-color;
            stroke-width: 2;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-transition: all 400ms linear;
            -o-transition: all 400ms linear;
            transition: all 400ms linear;
        }
    }
}
