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

Back to Web elements
Preview Source Code
Download
HTML
CSS
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

* {
 box-sizing: border-box;
}

body {
 margin: 0px;
}

.text-center {
 text-align: center;
}

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

/**Typeo CSS End**/
.col3-scn, .col3-scn * {
 --bg-clr: #0e0b2a;
 --page-width: 1280px;
 --base-clr: #444444;
 --base-fm: 'Nunito', sans-serif;
 --base-fs: 18px;
 --title-fs: 40px;
 --title-sub-fs: 25px;
 --white-clr: #ffffff;
 --black-clr: #000000;
 --theme-clr: #1fa8ff;
}

.col3-scn {
 background-color: var(--bg-clr);
 width: 100%;
 padding: 60px 0px;
 font-family: var(--base-fm);
 font-size: var(--base-fs);
 color: var(--white-clr);
}

.col3-scn h2 {
 margin: 0px;
 font-size: var(--title-fs);
}

.col3-list {
 display: flex;
 flex-flow: row wrap;
 width: calc(100% + 30px);
 margin-left: -15px;
 margin-top: 60px;
}

.col3-list .col3-item {
 width: 33.33%;
 padding: 15px;
 text-align: center;
}

.col3-list .col3-item .col3-item-inner {
 border: #fff 1px solid;
 padding: 0px 25px 25px 25px;
 min-height: 265px;
 border-radius: 4px;
 box-shadow: -17px 42px 54px 0 rgba(4, 1, 49, .21);
}

.col3-list .col3-item h3 {
 margin: 0px;
 font-size: var(--title-sub-fs);
}

.col3-list .col3-item p {
 margin-bottom: 0px;
 margin-top: 10px;
}

.col3-list .col3-item .col3-icon {
 width: 100px;
 height: 100px;
 overflow: hidden;
 border-radius: 100%;
 border: 1px solid var(--white-clr);
 align-items: center;
 margin-top: -50px;
 margin-bottom: 20px;
 background-color: var(--bg-clr);
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin-left: auto;
 margin-right: auto;
}

.col3-list .col3-item .col3-icon img {
 height: 54px;
 width: auto;
 display: block;
 max-width: 100%;
}

@media(max-width:1279px) {
 .col3-scn {
  padding: 40px 0px;
  font-size: calc(var(--base-fs) - 2px);
 }

 .col3-scn h2 {
  font-size: calc(var(--title-fs) - 4px);
 }

 .col3-list {
  width: calc(100% + 16px);
  margin-left: -8px;
 }

 .col3-list .col3-item {
  padding: 8px;
 }

 .col3-list .col3-item .col3-item-inner {
  padding: 15px;
 }

}

@media(max-width:767px) {
 .col3-scn {
  padding: 30px 0px;
 }

 .col3-scn h2 {
  font-size: calc(var(--title-fs) - 8px);
 }

 .col3-list .col3-item {
  width: 100%;
  margin: 20px 0px;
 }

 .col3-list .col3-item .col3-icon {
  width: 70px;
  height: 70px;
  margin-top: -50px;
  margin-bottom: 10px;
 }

 .col3-list .col3-item .col3-icon img {
  height: 40px;
 }

 .col3-list .col3-item .col3-item-inner {
  min-height: inherit;
 }

 .col3-list .col3-item h3 {
  font-size: calc(var(--title-sub-fs) - 4px);
 }

}

Related Web Elements