2022-08-30 01:47:13 +03:00

133 lines
2.7 KiB
CSS

footer {
background: #EDEFF5;
padding: 45px 0;
box-sizing: border-box;
}
@media all and (max-width: 1600px) and (min-width: 1280px) {
footer {
padding: 25px 0;
}
}
@media all and (max-width: 768px) {
footer {
margin-top: 40px;
pading: 25px 0;
}
}
footer .container {
display: flex;
justify-content: space-between;
align-items: flex-start;
background: transparent;
padding-bottom: 0;
padding-top: 30px !important;
}
@media all and (max-width: 1279px) {
footer .container {
padding: 0;
flex-wrap: wrap;
}
}
footer .column {
width: 270px;
box-sizing: border-box;
}
@media all and (max-width: 1279px) {
footer .column {
width: 33.333%;
}
footer .column:last-child {
width: 100%;
display: flex;
flex-wrap: wrap;
}
footer .column:last-child > div,
footer .column:last-child > p {
width: 33.333%;
margin-top: 35px;
padding-right: 30px;
box-sizing: border-box;
margin-bottom: 0 !important;
}
}
@media all and (max-width: 768px) {
footer .column {
width: 100%;
margin-bottom: 16px;
}
footer .column:last-child > div,
footer .column:last-child > p {
width: 100%;
margin-top: 15px;
padding-right: 0;
}
}
footer .column:not(:last-child) {
padding-right: 15px;
}
footer .column li:not(:last-child) {
margin-bottom: 13px;
}
@media all and (max-width: 768px) {
footer .column li:not(:last-child) {
margin-bottom: 8px;
}
}
footer .column li a {
color: #000;
}
footer .column p {
color: #8E94A7;
line-height: 32px;
}
footer .column a[href^="tel"] {
display: inline-block;
font-size: 16px;
line-height: 32px;
color: #000;
padding-left: 40px;
background: url("/assets/images/icons/icon-phone.svg") no-repeat left center;
}
@media all and (max-width: 1600px) {
footer .column a[href^="tel"] {
font-size: 13px;
background-size: 24px;
padding-left: 37px;
}
}
footer .column a[href^="mailto"] {
display: inline-block;
font-size: 16px;
line-height: 24px;
color: #000;
padding-left: 40px;
background: url("/assets/images/icons/icon-mail.svg") no-repeat left center;
}
@media all and (max-width: 1600px) {
footer .column a[href^="mailto"] {
font-size: 13px;
background-size: 24px;
padding-left: 37px;
}
}
footer .column div:nth-child(1),
footer .column div:nth-child(2),
footer .column div.socials {
margin-bottom: 40px;
}
@media all and (max-width: 1600px) and (min-width: 1280px) {
footer .column div:nth-child(1),
footer .column div:nth-child(2),
footer .column div.socials {
margin-bottom: 20px;
}
}
footer .column div a {
line-height: 32px;
}
@media all and (max-width: 1279px) {
footer .column div a {
line-height: 1.45;
}
}