Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to Footer Options
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
 box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 color: #444;
 box-sizing: border-box;
 margin: 0px;
}

ul,
li,
a {
 list-style: none;
 text-decoration: none;
 margin: 0px;
 padding: 0px;
}

img {
 max-width: 100%;
}

.container {
 max-width: 1280px;
 width: 100%;
 padding: 0px 15px;
 margin: auto;
}

.container-fluid {
 width: 100%;
 padding: 0px 30px;
}

/**Typeo CSS End**/

/***Footer section start***/
.footer-main {
 background-color: #000;
 color: #fff;
 width: 100%;
}

.ftr-top-inner {
 display: flex;
 flex-flow: row wrap;
 align-items: flex-start;
 width: calc(100% + 30px);
 padding-top: 40px;
 margin-left: -15px;
 padding-bottom: 30px;
}

.ftr-top-inner .ftr-item {
 width: 18%;
 padding: 0px 15px;
}

.ftr-top-inner .ftr-item:nth-child(1) {
 width: 32%;
}

.ftr-top-inner .ftr-item:nth-child(4) {
 width: 32%;
}

.ftr-top-inner .ftr-title {
 font-size: 22px;
 font-weight: 600;
 width: 100%;
 margin-bottom: 12px;
 display: inline-block;
}

.ftr-menu li {
 width: 100%;
 margin: 8px 0;
 font-size: 16px;
}

.ftr-menu li a {
 color: #fff;
}

.ftr-menu li a:before {
 content: '';
 width: 6px;
 height: 6px;
 border-right: #fff 1px solid;
 border-bottom: #fff 1px solid;
 display: inline-block;
 margin-right: 8px;
 position: relative;
 transform: rotate(-45deg);
top: -1px;
}

.ftr-menu li a:hover {
 text-decoration: underline;
}

.ftr-logo {
 max-width: 220px;
 margin-bottom: 20px;
}

.address {
 margin-bottom: 15px;
 display: flex;
}

.address i {
 width: 60px;
 margin-right: 5px;
 position: relative;
 top: 3px;
}

.address i img {
 filter: brightness(0) invert(1);
}

.social-media {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 margin: 20px 0px 10px 0px;
}

.social-media li {
 margin: 0px 5px;
}

.social-media li a {
 border-radius: 100%;
 width: 40px;
 height: 40px;
 background-color: #fff;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 transition: 0.5s all;
}

.social-media li a img {
 max-width: 18px;
}

.social-media li a:hover {
 opacity: 0.8;
}

.emailphone {
 display: flex;
 flex-direction: column;
}

.emailphone a {
 font-size: 18px;
 color: #fff;
 margin: 5px 0;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
}

.emailphone a:hover {
 text-decoration: underline;
}

.emailphone a i {
 max-width: 24px;
 margin-right: 8px;
 position: relative;
 top: 4px;
}

.emailphone a i img {
 filter: brightness(0) invert(1);
}

.newsletter-form {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 margin-top: 10px;
}

.newsletterxt {
 font-size: 18px;
}

.newsletter-form input[type="email"] {
 font-size: 15px;
 padding: 10px 15px;
 font-family: 'Poppins';
 outline: none;
 width: calc(100% - 130px);
 border: initial;
}

.newsletter-form input[type="submit"] {
 font-size: 16px;
 text-transform: uppercase;
 font-weight: 700;
 padding: 13px 16px 12px 16px;
 outline: none;
 background-color: #40C2E5;
 cursor: pointer;
 border: none;
 color: #ffffff;
}

.newsletter-form input[type="submit"]:hover {
 opacity: 0.9;
}

.copy-scn {
 border-top: #ccc 1px solid;
 width: 100%;
 padding: 10px 0;
}

.ftr-b-inner {
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 color: #fff;
}

.ftr-b-inner a {
 color: #fff;
 text-decoration: underline;
}

.ftr-b-inner a:hover {
 text-decoration: none;
}

.payment {
 display: flex;
 flex-flow: row wrap;
}

@media(max-width:992px) {
 .ftr-top-inner .ftr-item,
 .ftr-top-inner .ftr-item:nth-child(1),
 .ftr-top-inner .ftr-item:nth-child(4) {
  width: 50%;
  margin-bottom: 20px;
 }

 .ftr-top-inner .ftr-title {
  margin-bottom: 8px;
 }

}

@media(max-width:992px) {
 .ftr-top-inner {
  margin-bottom: 0px;
 }

 .address i {
  width: 40px;
 }

 .address i img {
  width: 28px;
 }

 .ftr-top-inner .ftr-item,
 .ftr-top-inner .ftr-item:nth-child(1),
 .ftr-top-inner .ftr-item:nth-child(4) {
  width: 100%;
  margin-bottom: 25px;
 }

 .ftr-b-inner {
  text-align: center;
  line-height: 1.3;
  justify-content: center;
 }

 .payment {
  margin-top: 12px;
 }

}

/***Footer section end***/
JS
var dynamicyear = new Date().getFullYear();
document.getElementById('year').innerHTML = dynamicyear;

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *