2021-05-25 21:40:27 +00:00
|
|
|
.footer-container {
|
2021-06-23 01:16:09 +00:00
|
|
|
background-color: var(--primary);
|
2021-05-25 21:40:27 +00:00
|
|
|
padding: 4rem 0 2rem 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-subscription {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
padding: 24px;
|
2021-06-23 01:16:09 +00:00
|
|
|
color: var(--secondary);
|
2021-05-25 21:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-subscription > p {
|
|
|
|
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
|
|
|
|
"Lucida Sans", Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-subscription-heading {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-subscription-text {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-input {
|
|
|
|
padding: 8px 20px;
|
|
|
|
border-radius: 2px;
|
|
|
|
margin-right: 10px;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
font-size: 18px;
|
|
|
|
margin-bottom: 16px;
|
2021-06-23 01:16:09 +00:00
|
|
|
border: 1px solid var(--secondary);
|
2021-05-25 21:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-links {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1000px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-items {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
margin: 16px;
|
|
|
|
text-align: left;
|
|
|
|
width: 160px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-items h2 {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-items > h2 {
|
2021-06-23 01:16:09 +00:00
|
|
|
color: var(--secondary);
|
2021-05-25 21:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-items a {
|
2021-06-23 01:16:09 +00:00
|
|
|
color: var(--secondary);
|
2021-05-25 21:40:27 +00:00
|
|
|
text-decoration: none;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-items a:hover {
|
|
|
|
color: #e9e9e9;
|
|
|
|
transition: 0.3s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-email-form h2 {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-input::placeholder {
|
|
|
|
color: #b1b1b1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Social Icons */
|
|
|
|
.social-icon-link {
|
2021-06-23 01:16:09 +00:00
|
|
|
color: var(--forth);
|
2021-05-25 21:40:27 +00:00
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-media {
|
|
|
|
max-width: 1000px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-media-wrap {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
width: 99%;
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: 40px auto 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-icons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
width: 240px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-logo {
|
2021-06-23 01:16:09 +00:00
|
|
|
color: var(--forth);
|
2021-05-25 21:40:27 +00:00
|
|
|
justify-self: start;
|
|
|
|
margin-left: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 2rem;
|
|
|
|
display: flex;
|
|
|
|
align-self: center;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 820px) {
|
|
|
|
.footer-links {
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-link-wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-media-wrap {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|