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**/
.mob-view {
 display: none;
}

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

.consultation-scn {
 width: 100%;
 display: block;
 padding: 50px 0;
}

.consultation-inner {
 display: block;
 width: 100%;
}

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

 .desk-view {
  display: none;
 }

 .mob-view {
  display: block;
 }

}

Related Web Elements