Footer
This commit is contained in:
@@ -10962,65 +10962,96 @@ header#header {
|
||||
footer#footer {
|
||||
&.c-footer {
|
||||
margin-top: 30px;
|
||||
padding-top: 44px;
|
||||
padding-bottom: 44px;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
background: #1e2832;
|
||||
|
||||
.footer-wrapper {
|
||||
.c-row {
|
||||
&-1 {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
// &-1 {
|
||||
// padding-bottom: 20px;
|
||||
// margin-bottom: 20px;
|
||||
// border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
// display: flex;
|
||||
// flex-direction: row;
|
||||
// align-items: center;
|
||||
// justify-content: space-between;
|
||||
|
||||
h5 {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
line-height: 1;
|
||||
letter-spacing: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
// h5 {
|
||||
// color: #ffffff;
|
||||
// font-family: $font3;
|
||||
// font-weight: 400;
|
||||
// font-size: 32px;
|
||||
// line-height: 1;
|
||||
// letter-spacing: 5px;
|
||||
// text-transform: uppercase;
|
||||
// }
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
// a {
|
||||
// color: #ffffff;
|
||||
// font-family: $font3;
|
||||
// font-weight: 400;
|
||||
// font-size: 16px;
|
||||
// line-height: 1;
|
||||
// letter-spacing: 2px;
|
||||
// text-transform: uppercase;
|
||||
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
column-gap: 15px;
|
||||
padding: 15px 20px 13px;
|
||||
border: 1px solid #fff;
|
||||
border-radius: 30px;
|
||||
// display: inline-flex;
|
||||
// flex-direction: row;
|
||||
// align-items: center;
|
||||
// column-gap: 15px;
|
||||
// padding: 15px 20px 13px;
|
||||
// border: 1px solid #fff;
|
||||
// border-radius: 30px;
|
||||
|
||||
img {
|
||||
margin-top: -3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// img {
|
||||
// margin-top: -3px;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
&-2 {
|
||||
padding-bottom: 20px;
|
||||
column-gap: 40px;
|
||||
|
||||
padding-top: 20px;
|
||||
border-top: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
padding-bottom: 30px;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: solid 1px rgba(255, 255, 255, 0.2);
|
||||
|
||||
@include respond-above(sm) {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 230px 230px 1fr;
|
||||
}
|
||||
@include respond-below(md) {
|
||||
grid-template-columns: 1fr 135px 135px 1fr;
|
||||
column-gap: 20px;
|
||||
}
|
||||
@include respond-below(sm) {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
row-gap: 40px;
|
||||
}
|
||||
@include respond-between(xxs, xs) {
|
||||
column-gap: 40px;
|
||||
row-gap: 60px;
|
||||
}
|
||||
|
||||
.c-col {
|
||||
&-1 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 30px;
|
||||
|
||||
@include respond-between(xs, sm) {
|
||||
width: 100%;
|
||||
}
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
> img {
|
||||
width: 100%;
|
||||
max-width: 110px;
|
||||
@@ -11044,6 +11075,83 @@ footer#footer {
|
||||
column-gap: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
&-2 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 3;
|
||||
}
|
||||
}
|
||||
|
||||
&-3 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
|
||||
&-4 {
|
||||
@include respond-between(xxs, xs) {
|
||||
order: 4;
|
||||
}
|
||||
}
|
||||
|
||||
&-2,
|
||||
&-3,
|
||||
&-4 {
|
||||
@include respond-between(xs, sm) {
|
||||
width: calc(100% / 3 - (20px - (20px / 3)));
|
||||
}
|
||||
}
|
||||
|
||||
@include respond-between(xxs, xs) {
|
||||
width: calc(100% / 2 - (40px - (40px / 2)));
|
||||
}
|
||||
|
||||
@include respond-below(xxs) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-box {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
h6 {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 1.3;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
row-gap: 15px;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
line-height: 0.7;
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
font-family: $font3;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
letter-spacing: 1px;
|
||||
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
column-gap: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&-3 {
|
||||
|
||||
Reference in New Issue
Block a user