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: #ffffff;
}

/**Typeo CSS End**/
.testimonials-scn, .testimonials-scn * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 30px;
 --base-size: 20px;
 --white-clr: #ffffff;
 --theme-clr: #eb971c;
 --bg-clr: #efedeb;
}

/**Testimonial Section Start**/
.testimonials-scn {
 font-family: var(--base-fm);
 font-size: var(--base-size);
 padding: 60px 0px;
}

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

.testmls-list {
 width: 100%;
 max-width: 800px;
 margin: 40px auto;
}

.testmls-list .testmls-item {
 width: 100%;
 padding: 30px 40px 30px 40px;
 transition: 0.5s all;
 text-align: center;
}

.testmls-list .testmls-item img {
 max-width: 100%;
}

.testmls-img {
 width: 100px;
 height: 100px;
 display: block;
 overflow: hidden;
 border-radius: 100%;
 border: #ccc 4px solid;
 margin-bottom: 40px;
 margin-left: auto;
 margin-right: auto;
}

.testmls-img img {
 width: 100%;
 height: 100%;
 display: block;
}

.testmls-info {
 margin-top: 20px;
}

.testmls-info .t-name {
 display: inline-block;
 font-weight: 500;
 margin-bottom: 6px;
 font-size: 20px;
 color: var(--theme-clr);
 transition: 0.5s all;
}

.testimonials-scn h2 {
 text-align: center;
 margin: 0px;
 font-size: var(--title-size);
}

.testmls-list .testmls-item p {
 margin: 20px 0 0px 0;
 line-height: 1.4;
 position: relative;
}

.testmls-list .testmls-item .testmls-qoute {
 font-family: arial;
 font-size: 150px;
 font-weight: 700;
 line-height: 24px;
 display: inline-block;
 position: relative;
 margin-top: 20px;
 top: 40px;
}

.social-links {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin-top: 20px;
}

.social-links a {
 width: 34px;
 height: 34px;
 border: #000 1px solid;
 border-radius: 100%;
 margin: 0px 6px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 transition: 0.5s all;
}

.social-links a:hover {
 background-color: #000;
}

.social-links a:hover img {
 filter: brightness(0) invert(1);
}

@media(max-width:992px) {
 .testimonials-scn {
  padding: 40px 0px;
 }

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

 .testmls-list {
  width: 100%;
  margin: 0px;
  padding-top: 40px;
 }

}

Related Web Elements