@charset "UTF-8";
/* FOOTER  */

.at-site-footer {
    width: 100%;
	margin-top: 5em;
}

.at-site-footer .footer-wrap {
    width: 100%;
    min-height: 7rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
    row-gap: 2rem;
}

.at-site-footer .site-info {
    text-align: center;
    flex-basis: 100%;
}

.at-site-footer .site-info span {
    font-size: calc(14px + 6 * (100vw - 1024px) / (1920 - 1024));
}

.at-site-footer .footer-wrap ul {
    display: flex;
    gap: 1rem;
}

/* -----  */
.at-site-footer ul {
    height: 100%;
    width: fit-content;
}

.at-site-footer ul li a svg {
    vertical-align: bottom;
}

.at-site-footer .contacts ul li {
    margin-right: 1.5rem;
}

.at-site-footer .contacts ul li a {
    font-family: 'Microsoft YaHei UI', sans-serif;
/*     font-size: calc(13px + 11 * (100vw - 1024px) / (1920 - 1024)); */
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    vertical-align: bottom;
}

.at-site-footer .contacts ul li a:hover {
    text-decoration: underline 1px dotted #0076AA;
}

.at-site-footer .contacts ul li a svg path {
    transition-duration: .5s;
}

.at-site-footer .contacts ul li a:hover svg path {
    stroke: #0076AA;
    transition-duration: .5s;
}

.at-site-footer .social ul li a svg {
    width: 45px;
    height: 45px;
}

.at-site-footer .social ul li a svg circle {
    transition-duration: .5s;
}

.at-site-footer .social ul li a:hover svg circle {
    opacity: .5;
    transition-duration: .5s;
}

@media (max-width: 1023px) {
    .at-site-footer .contacts ul {
        flex-direction: column;
    }
	
	aside .social {
		display: none;
	}
}

@media (min-width:513px) and (max-width:1023px) {
    .contacts ul li a {
        font-size: 16px;
    }
}

@media (max-width: 512px) {
	.at-site-footer {
		margin-top: 4rem;
	}
	
	.at-site-footer .footer-wrap {
		flex-direction: column;
	}
	
	.at-site-footer .footer-wrap>div {
		flex-basis: 100%;
	}
	
    .at-site-footer .site-info {
        text-align: center;
        margin-top: 0;
    }

    .at-site-footer div.contacts ul {
        flex-direction: column;
    }

    .at-site-footer .contacts ul li a svg {
        margin-right: .5rem;
    }

    .at-site-footer .social ul {
        justify-content: center;
        margin-top: .5rem;
        gap: 1em;
    }

    .at-site-footer .contacts ul li {
        margin-bottom: 0;
    }

    .at-site-footer .contacts ul li a {
        font-size: 16px;
    }

    .at-site-footer div.site-info span {
        font-size: 14px;
    }
    
}