/*---------- Footer CSS Start Here  ----------*/
.site-footer {
    padding: 80px 0 0   ;
}
.site-footer .footerRow {
    display: grid;
    grid-template-columns: 38% 1fr 1fr;
    padding-bottom: 80px;
}
.footerMenu{
    width: fit-content;
    margin: 0 auto;
}
.footerMenu .menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 30px;
}
.site-footer .footerRow .logoSocialIonsWrap .textwidget p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.715;
    font-family: var(--fontPoppins);
    font-weight: 400;
    margin: 25px 0 20px;
}
.site-footer .footerRow #menu-social-media-menu {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
#menu-social-media-menu li a {
    width: 53px;
    height: 53px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.5s ease;
}
#menu-social-media-menu li a:hover{
    background-color: #fff;
    color: var(--primaryColor);
}
.footerColumn .footerHeading {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 60px;
}
.footerMenu ul#menu-footer-menu li a {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    transition: 0.3s ease;
}
.footerMenu ul#menu-footer-menu li a:hover{
    opacity: 0.8;
    text-decoration: underline;
}
.footerAddress .textwidget p:not(:last-child) {
    margin-bottom: 20px;
}
.footerAddress .textwidget p a {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    grid-gap: 20px;
    color: #fff;
    align-items: flex-start;
    line-height: 24px;
    transition: 0.3s ease;
}
.footerAddress .textwidget p a:hover{
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}
.footerAddress .textwidget p:first-child a img {
    padding-top: 5px;
}
.site-footer .copyrightWrapper {
    background-color: #770758;
    text-align: center;
    padding: 16px 0;
}
.site-footer .copyrightWrapper .CopyrightContent p {
    color: #FFFFFF;
    opacity: 0.55;
    font-size: 15px;
    font-weight: 400;
}
.footerAddressWrapper {
    display: flex;
    grid-gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.footerAddressWrapper span.footer-address {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 24px;
    transition: 0.3s ease;
}
/*---------- Footer CSS Close Here  ----------*/
/*---------- Footer Responsive CSS Start Here  ----------*/
@media (max-width:1199px){
    .site-footer .footerRow {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width:991px){
    .site-footer .footerRow {
        grid-template-columns: 1fr;
        grid-gap: 30px 0;
    }
    .footerMenu {
        width: 100%;
        margin: 0;
    }
    .footerAddress .textwidget p a, .footerAddressWrapper {
        grid-gap: 10px;
    }
    .footerMenu .menu {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px 0;
    }
    .footerColumn .footerHeading {
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .footerMenu ul#menu-footer-menu li a {
        line-height: 1.2;
    }
}
@media (max-width:575px){
    .footerAddress .textwidget p a br {
        display: none;
    }
    .footerMenu .menu {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer .copyrightWrapper .CopyrightContent p {
        font-size: 14px;
    }
}
/*---------- Footer Responsive CSS Close Here  ----------*/
/*---------- Scroll To Top Section Start  ----------*/
.scrollTopButton {
    background-color: var(--primaryColor);
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    font-size: 26px;
    position: fixed;
    z-index: 999;
    bottom: 30px;
    right: 30px;
    transition: all 0.7s ease-in-out;
    cursor: pointer;
    opacity: 0;
}
.scrollTopButton.show{
    opacity: 1;
}
.scrollTopButton svg {
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.scrollTopButton:hover svg {
    color: var(--primaryColor);
}
.scrollTopButton:hover {
    border-color: var(--primaryColor);
    background-color: #fff;
}
@media (max-width:991px){
    .scrollTopButton {
        width: 40px;
        height: 40px;
        font-size: 20px;
        right: 10px;
    }
}
/*---------- Scroll To Top Section Close  ----------*/