57 lines
995 B
CSS
57 lines
995 B
CSS
.footer-top-section {
|
|
background: var(--color-light);
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.footer-top-logo {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-top-logo .footer-logo-company {
|
|
width: 158px;
|
|
height: 56px;
|
|
}
|
|
|
|
.footer-top-logo .footer-logo-company img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.social-icon-footer {
|
|
display: block;
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.social-icon-footer img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.social-footer-div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-call-content {
|
|
background: var(--bs-gray-300);
|
|
padding: 10px 6em 10px 10px;
|
|
border-radius: 8px;
|
|
margin-left: 3em;
|
|
position: relative;
|
|
}
|
|
|
|
.footer-call-content i {
|
|
font-size: 31px;
|
|
position: absolute;
|
|
right: 18px;
|
|
top: 50%;
|
|
transform: translate(0px, -50%);
|
|
background: var(--bs-blue);
|
|
padding: 10px;
|
|
border-radius: 50%;
|
|
color: var(--bs-gray-300);
|
|
} |