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

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

* {
 box-sizing: border-box;
}

body {
 margin: 0px;
 background-color: #fff;
}

img {
 max-width: 100%;
}

/**Typeo CSS End**/
.about-opt3, .about-opt3 * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 35px;
 --base-size: 18px;
 --black-clr: #000000;
 --white-clr: #ffffff;
 --bg-clr: #f5f9ff;
 --theme-clr: #072C5D;
}

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

.about-opt3 {
 width: 100%;
 font-size: var(--base-size)
 color:var(--black-clr);
 font-family: var(--base-fm);
 padding: 50px 0px;
 background-color: var(--bg-clr);
 text-align: center;
}

.about-opt3 h2 {
 font-size: var(--title-size);
 margin: 0px;
}

.about-opt-top {
 max-width: 590px;
 margin: auto;
 width: 100%;
}

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

.about-list .about-item {
 width: calc(33.33% - 30px);
 padding: 30px 15px;
 margin: 15px;
 background-color: var(--white-clr);
 border: #e9e9e9 1px solid;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 0 8px;
}

.about-list .about-item h3 {
 font-size: 22px;
 margin: 0;
}

.about-list .about-item .a-readmore {
 background-color: var(--theme-clr);
 color: var(--white-clr);
 text-decoration: none;
 padding: 10px 20px;
 display: inline-block;
 border: var(--theme-clr) 1px solid;
 transition: 0.5s all;
}

.about-list .about-item .a-readmore:hover {
 background-color: transparent;
 color: var(--theme-clr);
}

.about-list .about-item p {
 font-size: calc(var(--base-size) - 3px);
 line-height: 1.5;
}

@media(max-width:1200px) {
 .about-list {
  width: calc(100% + 20px);
  margin-left: -10px;
 }

 .about-list .about-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  padding: 15px;
 }

 .about-list .about-item h3 {
  font-size: 20px;
 }

 .about-opt3 h2 {
  font-size: calc(var(--title-size) - 6px);
 }

}

@media(max-width:767px) {
 .about-opt3 {
  padding: 40px 0px;
 }

 .about-list {
  width: 100%;
  margin-left: 0;
 }

 .about-list .about-item {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
 }

}

Related Web Elements