@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&amp;display=swap");
/* Mixin */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  color: #54536C;
}

* {
  font-family: 'Lato', sans-serif;
}

*:focus, *:hover {
  outline: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', sans-serif;
  color: #1D1D1D;
  letter-spacing: .5px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
}

::-webkit-scrollbar {
  width: 10px;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.gradBtn {
  background: #EF3297;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#fad34f), to(#ef3297));
  background: linear-gradient(to right, #fad34f 0%, #ef3297 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fad34f', endColorstr='#ef3297',GradientType=1 );
  display: block;
  max-width: 380px;
  text-align: center;
  padding: 14px 20px;
  line-height: 28px;
  font-size: 1.125rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29);
}

.gradBtn:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.btnYellow {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/btn_bg.svg") center repeat-x;
  max-width: 320px;
  display: block;
  height: 56px;
  font-size: 1.3125rem;
  text-align: center;
  color: #1D1D1D;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 15px;
  text-decoration: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
}

.btnYellow:hover {
  text-decoration: none;
  color: #1D1D1D;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

header {
  padding: 24px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

header .hideOnScroll {
  display: block;
}

header .showOnScroll {
  display: none;
}

header.scrolled {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

header.scrolled .hideOnScroll {
  display: none;
}

header.scrolled .showOnScroll {
  display: block;
}

header.scrolled #menu > li a {
  color: #000;
}

header.scrolled #menu > li a.dropdown:after {
  content: url("https://www.picmaker.com/assets/images/certificatemaker/caret-scrolled.svg");
}

header .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navbar-brand {
  padding: 0px;
}

header .navbar-brand a {
  display: block;
}

header .navbar-toggler {
  display: none;
}

header nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header #menu {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header #menu > li {
  position: relative;
}

header #menu > li a {
  padding: 6px 15px;
  display: block;
  color: #fff;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 16px;
  white-space: nowrap;
  line-height: 20px;
}

header #menu > li a.dropdown {
  padding-right: 25px;
}

header #menu > li a.dropdown:after {
  content: url("https://www.picmaker.com/assets/images/certificatemaker/caret.svg");
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-20%) scaleY(-1);
  transform: translateY(-20%) scaleY(-1);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

header #menu > li a.signup {
  background: url(https://www.picmaker.com/assets/images/certificatemaker/button-signup.svg) center repeat-x;
  background-size: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  color: #000;
  margin-left: 10px;
  width: 105px;
  height: 32px;
}

header #menu > li:hover > a {
  text-decoration: underline;
}

header #menu > li:hover > a:after {
  -webkit-transform: translateY(-50%) scaleY(1);
  transform: translateY(-50%) scaleY(1);
}

header #menu > li:hover > a .dropdown-men a {
  text-decoration: none;
}

header #menu > li .dropdown-menu {
  opacity: 0;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin-top: 0px;
  border: 0px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header #menu > li .dropdown-menu a {
  color: #000;
}

header #menu > li .dropdown-menu a:hover {
  color: #F1821E;
  text-decoration: none;
}

header #menu > li:hover .dropdown-menu {
  opacity: 1;
  display: block;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
}

.mainBanner {
  position: relative;
  overflow: hidden;
  background: url("https://www.picmaker.com/assets/images/certificatemaker/Hero_BG.svg") center no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 650px;
}

.mainBanner .container {
  position: relative;
  z-index: 3;
}

.mainBanner h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 80px 0 20px;
  color: #fff;
  letter-spacing: 1px;
  max-width: 550px;
}

.mainBanner h1.f40 {
  font-size: 2.5rem;
}

.mainBanner p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #fff;
  max-width: 415px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
}

.mainBanner p .btn {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/btn_bg.svg") center repeat-x;
  max-width: 320px;
  display: block;
  height: 56px;
  font-size: 1.3125rem;
  color: #000;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
}

.mainBanner p .btn:hover {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
}

.mainBanner p small {
  font-size: 0.8125rem;
  display: block;
  max-width: 320px;
  text-align: center;
  opacity: 0.5;
}

.mainBanner .graphics {
  z-index: 0;
}

.mainBanner .graphics img {
  margin-right: -60px;
}

.mainBanner .graphics img.no-margin {
  margin-right: 0px;
}

.mainBanner .flex {
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.templategid {
  background-color: #FAFAFA;
  padding: 100px 0;
}

.templategid h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}

.templategid h2 + p {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.7;
  max-width: 600px;
  margin: auto;
}

.templategid h2.col8 {
  max-width: 850px;
  margin: auto;
  margin-bottom: 15px;
}

.templategid .staticollage {
  margin-top: 35px;
}

.templategid .staticollage img {
  width: 100%;
  height: auto;
}

.templategid .staticgrid {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.templategid .staticgrid .item {
  width: calc(31.33% - 0px);
  position: relative;
  overflow: hidden;
  margin: 1%;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.templategid .staticgrid .item img {
  width: 100%;
  height: auto;
}

.templategid .staticgrid .item:hover img {
  opacity: 0.5;
}

.templategid .staticgrid .item figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2em 0.4em 0.2em;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  text-decoration: none;
}

.templategid .staticgrid .item figcaption a {
  font-size: 1rem;
  text-decoration: none;
  color: #1D1D1D;
  display: inline-block;
  padding: 8px 15px;
  background: url(https://www.picmaker.com/assets/images/certificatemaker/button-signup.svg) center repeat-x;
  background-size: 100%;
  width: 105px;
  height: 32px;
  font-weight: 600;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-align: center;
}

.templategid .staticgrid .item:hover figcaption {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.templategid .tmpgrid {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.templategid .tmpgrid .item1 {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 68%;
}

.templategid .tmpgrid .item1 .list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.templategid .tmpgrid .item1 .list:nth-child(2) {
  margin-top: 30px;
}

.templategid .tmpgrid .item1 .vertical {
  width: 20%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.templategid .tmpgrid .item1 .horizontal {
  width: 75%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.templategid .tmpgrid .item2 {
  width: 28%;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.templategid p .btnYellow {
  margin: 40px auto 0 auto;
}

.features {
  padding: 60px 0 20px;
}

.features h2 {
  font-size: 2.25rem;
  text-align: center;
  margin: 0px auto;
  max-width: 650px;
  line-height: 1.3;
}

.features h2 + p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.3;
  max-width: 750px;
  margin: auto;
  margin-top: 20px;
  color: #1D1D1D;
}

.features h2.col8 {
  max-width: 620px;
  margin: auto;
  margin-bottom: 15px;
}

.features .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 70px;
}

.features .flex img {
  width: 31.33%;
  margin: 1%;
}

.features ul {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.features ul li {
  width: 45%;
  padding: 50px 0;
}

.features ul:nth-child(even) li:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.features ul:nth-child(even) li:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.features ul:nth-child(even) li:last-child .img {
  margin: 0 0 0 -20px;
}

.features .img {
  position: relative;
  text-align: center;
  margin-right: -20px;
}

.features .img img {
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.features .desc {
  padding-right: 60px;
}

.features .desc h4 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1D1D1D;
}

.features .desc p {
  font-size: 1.125rem;
  line-height: 1.6;
  padding-right: 20px;
}

.ctaFull {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/cta_bg.svg") center;
  background-size: cover;
  padding: 120px 0;
}

.ctaFull.ctasecond {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/ctatwo.svg") center;
  background-size: cover;
}

.ctaFull h4 {
  font-size: 2.25rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  max-width: 560px;
  margin: 0 auto 25px;
}

.ctaFull h4.col10 {
  max-width: 850px;
}

.ctaFull h4.fw {
  max-width: 100%;
}

.ctaFull p {
  text-align: center;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  max-width: 850px;
}

.ctaFull p.col10 {
  max-width: 650px;
}

.ctaFull p.mb30 {
  margin-bottom: 30px;
}

.ctaFull p.mt-15 {
  margin-top: -15px;
}

.ctaFull p small {
  font-size: 0.8125rem;
  opacity: 0.5;
}

.ctaFull p a {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/btn_bg.svg") center repeat-x;
  height: 56px;
  font-size: 1.3125rem;
  color: #1D1D1D;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 20px;
  min-width: 320px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

.ctaFull p a:hover {
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
}

.reasons {
  padding: 100px 0;
}

.reasons h5 {
  font-size: 2.25rem;
  line-height: 1.4;
  text-align: center;
  color: #1D1D1D;
  max-width: 550px;
  margin: 0 auto;
}

.reasons h5 + p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #54536C;
  text-align: center;
  margin: 15px auto 70px;
  max-width: 780px;
}

.reasons .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reasons .desktopSlider {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 35%;
  border-left: 1px solid #DFDFE4;
}

.reasons .desktopSlider .cust-nav {
  position: relative;
  padding: 20px 0 20px 20px;
  cursor: pointer;
}

.reasons .desktopSlider .cust-nav:before {
  content: '';
  border: 0px;
  width: 6px;
  height: 0%;
  left: -3.5px;
  top: 0px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background: #f67062;
  background: linear-gradient(135deg, #f67062 0%, #fc5296 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f67062', endColorstr='#fc5296',GradientType=1 );
  position: absolute;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

.reasons .desktopSlider .cust-nav .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9B9B9B;
  margin: 7px 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

.reasons .desktopSlider .cust-nav .title + p {
  font-size: 1rem;
  margin: 7px 0;
  color: #54536C;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  height: 0px;
  overflow: hidden;
  line-height: 1.4;
}

.reasons .desktopSlider .cust-nav.active:before {
  height: 100%;
  bottom: 0;
}

.reasons .desktopSlider .cust-nav.active .title {
  color: #1D1D1D;
}

.reasons .desktopSlider .cust-nav.active .title + p {
  height: 96px;
}

.reasons .mobileSlider {
  margin-left: auto;
  width: 670px;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reasons .mobileSlider .title {
  display: none;
}

.reasons .mobileSlider p {
  display: none;
}

.reasons .mobileSlider .item img {
  margin: 30px 0;
  max-width: 100%;
  height: auto;
}

.production {
  padding: 100px 0;
}

.production h5 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
}

.production h5 + p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto 40px;
}

.production h5 + p.col10 {
  max-width: 860px;
}

.production .flex {
  background: #FFEDF3 url("https://www.picmaker.com/assets/images/certificatemaker/porduction_bg.svg") center bottom no-repeat;
  background-size: 100% auto;
  padding: 80px 30px 30px;
}

.production .flex ul {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.production .flex ul li {
  width: 33%;
  margin: 10px 0px 50px 0px;
  padding: 0 40px;
}

.production .flex ul li .icon {
  margin-bottom: 20px;
  min-height: 46px;
}

.production .flex ul li .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 20px;
}

.production .flex ul li p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #54536C;
  margin-bottom: 10px;
  max-width: 240px;
}

.production .flex ul li .lists {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.production .flex ul li .lists li {
  width: 100%;
  padding: 0px 0px 0px 20px;
  margin: 2px 0;
  line-height: 1.4;
  font-size: 1.125rem;
  color: #54536C;
  position: relative;
}

.production .flex ul li .lists li::after {
  content: '';
  width: 10px;
  height: 10px;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#E76489), color-stop(21%, #D974AE), color-stop(42%, #CD81CE), color-stop(63%, #C48BE5), color-stop(83%, #BF91F2), to(#BD93F7)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(0deg, #E76489 0%, #D974AE 21%, #CD81CE 42%, #C48BE5 63%, #BF91F2 83%, #BD93F7 100%) 0% 0% no-repeat padding-box;
  display: inline-block;
  top: 8px;
  position: absolute;
  left: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.how {
  background: #FAFAFA;
  padding: 100px 0;
}

.how h4 {
  font-size: 2.25rem;
  line-height: 1.4;
  text-align: center;
  color: #1D1D1D;
  max-width: 900px;
  margin: 0 auto;
}

.how h4 + p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #54536C;
  text-align: center;
  max-width: 600px;
  margin: 15px auto 45px;
}

.how .pillar {
  text-align: center;
  margin-top: 60px;
}

.how .pillar .count {
  background: #F2F2F2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.1875rem;
  font-family: 'DM Serif Display', sans-serif;
  margin-bottom: 30px;
}

.how .pillar .title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 10px;
}

.how .pillar p {
  font-size: 1.125rem;
  line-height: 1.4;
  max-width: 240px;
  margin: 0 auto;
}

.testimonials {
  background: #FCFCFC;
  padding: 70px 0;
}

.testimonials h6 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
}

.testimonials h6 + p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 40px;
}

.testimonials .owl-item {
  padding: 10px;
}

.testimonials .inner {
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  padding: 60px 20px;
}

.testimonials .inner .proPic {
  text-align: center;
}

.testimonials .inner .proPic img {
  max-width: 100px;
  width: auto;
  height: auto;
  margin: 0 auto 30px;
}

.testimonials .inner blockquote {
  background: url("https://www.picmaker.com/assets/images/certificatemaker/quote.svg") center bottom no-repeat;
  padding-bottom: 75px;
}

.testimonials .inner blockquote p {
  font-size: 1.0625rem;
  line-height: 1.7;
  text-align: center;
  padding: 0 20px;
  color: #54536C;
}

.testimonials .inner .clientName {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  color: #54536C;
}

.testimonials .inner .designation {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #54536C;
  text-align: center;
}

.testimonials .owl-nav {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .owl-nav button {
  width: 38px;
  height: 38px;
  margin: 30px 10px 0;
  background: #EFEFEF url("https://www.picmaker.com/assets/images/certificatemaker/next.svg") center no-repeat !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

.testimonials .owl-nav button span {
  display: none;
}

.testimonials .owl-nav button:focus {
  outline: 0;
}

.testimonials .owl-nav button:hover {
  background: #aaa url("https://www.picmaker.com/assets/images/certificatemaker/next.svg") center no-repeat !important;
}

.testimonials .owl-nav button.owl-prev {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}

.faqs {
  background: #FFF3F8;
  padding: 100px 0;
}

.faqs h6 {
  font-size: 1.5rem;
  text-align: left;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: 'Lato', sans-serif;
  color: #54536C;
}

.faqs h6 + p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 40px;
}

.faqs .card {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 0px;
  background: none;
  border-bottom: 1px solid #FFE2EE !important;
}

.faqs .card .card-header {
  border: 0px;
  margin-bottom: 0px;
  background: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: #54536C;
  padding: 40px 20px 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  background: #FFE8F2;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}

.faqs .card .card-header:after {
  content: url("https://www.picmaker.com/assets/images/certificatemaker/collapse.svg");
}

.faqs .card .card-header.collapsed {
  font-weight: 400;
  background: none;
  padding: 40px 20px;
}

.faqs .card .card-header.collapsed:after {
  content: url("https://www.picmaker.com/assets/images/certificatemaker/expand.svg");
}

.faqs .card-body {
  padding: 20px 20px 40px;
  background: #FFE8F2;
  font-size: 1.125rem;
}

.faqs .card-body p {
  font-size: 1.125rem;
  line-height: 1.4;
}

footer {
  padding: 80px 0;
  background: #212121;
}

footer h6 {
  color: #F86A6E;
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}

footer h6.txtwht {
  font-size: 1.25rem;
  color: #fff;
}

footer ul li a {
  display: inline-block;
  color: #AFAFAF;
  padding: 8px 0;
  line-height: 1.2;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

footer ul li a:hover {
  color: #fff;
  text-decoration: none;
  padding-left: 10px;
}

footer .showMore {
  padding: 40px 0 70px;
  text-align: center;
}

footer .showMore span {
  margin-left: 5px;
}

footer .showMore a {
  text-decoration: underline;
}

footer .showMore a svg path {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

footer .showMore a:hover {
  padding-left: 0;
}

footer .showMore a:hover svg path {
  stroke: #fff;
}

footer .address .comp {
  font-size: 1.125rem;
  color: #AFAFAF;
  line-height: 1.4;
  margin-bottom: 5px;
}

footer .address .comp span {
  color: #F1821E;
  font-weight: 700;
}

footer .address p {
  font-size: 0.9375rem;
  color: #AFAFAF;
  line-height: 1.7;
  margin-bottom: 10px;
}

footer .address p a {
  color: #AFAFAF;
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

footer .address p a:hover {
  color: #fff;
}

footer .address .social {
  margin: 0px 0 0 -10px;
  padding-top: 10px;
}

footer .address .social a {
  padding: 10px 10px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  opacity: .5;
}

footer .address .social a:hover {
  opacity: 1;
}

footer .logo {
  text-align: center;
  padding: 70px 0 30px;
}

footer .slogan {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

footer .slogan span {
  color: #F1821E;
}

footer .copyright {
  font-size: 1rem;
  color: #AFAFAF;
  text-align: center;
  line-height: 1.5;
}

footer .copyright a {
  color: #F76B6B;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

footer .copyright a:hover {
  color: #fff;
  text-decoration: none;
}

footer .company {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 650px;
}

footer .company li a {
  font-size: 1rem;
  line-height: 1.2;
  color: #1A1A1A;
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

footer .company li a:hover {
  color: #F1821E;
  text-decoration: none;
}

@media screen and (max-width: 1199px) {
  .mainBanner h1 {
    font-size: 1.875rem;
  }
  .mainBanner h1.f40 {
    font-size: 1.875rem;
  }
  .features ul li {
    width: 45%;
  }
  .features ul li .img img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .features ul li:first-child {
    width: 50%;
  }
  .how .pillar {
    margin-top: 40px;
  }
  .how .pillar .title {
    font-size: 1.25rem;
  }
  .reasons .desktopSlider {
    width: 380px;
  }
  .reasons .desktopSlider .cust-nav {
    padding: 10px 0 10px 15px;
  }
  .reasons .desktopSlider .cust-nav .title {
    font-size: 1.25rem;
  }
  .reasons .desktopSlider .cust-nav .title + p {
    font-size: 1rem;
  }
  .reasons .mobileSlider {
    width: 560px;
  }
  .reasons .mobileSlider .item img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .reasons .mobileSlider .owl-item {
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  .reasons .mobileSlider .owl-item.active {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .templategid .tmpgrid {
    padding: 50px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .templategid .tmpgrid .item1 {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 70%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .templategid .tmpgrid .item1 .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .templategid .tmpgrid .item1 .list:nth-child(2) {
    margin-top: 10px;
  }
  .templategid .tmpgrid .item1 .vertical {
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .templategid .tmpgrid .item1 .horizontal {
    width: 75%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .templategid .tmpgrid .item2 {
    width: 28%;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .templategid .tmpgrid img {
    width: 94%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 992px) {
  .mainBanner {
    height: auto;
    min-height: auto;
  }
  .mainBanner .flex {
    height: auto;
    padding: 150px 0 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainBanner .flex .text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 1;
  }
  .mainBanner h1 {
    margin: 0px auto;
    max-width: 800px;
    text-align: center;
  }
  .mainBanner h1 br {
    display: none;
  }
  .mainBanner p {
    margin: 20px auto;
    max-width: 750px;
    text-align: center;
  }
  .mainBanner p .btn {
    margin: 0 auto;
  }
  .mainBanner p small {
    max-width: 100%;
  }
  .mainBanner .graphics {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 2;
  }
  .mainBanner .graphics img {
    margin: 0px 0 30px;
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .features {
    padding: 70px 0 50px;
  }
  .features h2 {
    font-size: 1.75rem;
  }
  .features .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .features .desc h4 {
    font-size: 1.5rem;
  }
  .features .desc h4 br {
    display: none;
  }
  .features .desc p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .features ul li {
    padding: 40px 0;
  }
  .how {
    padding: 90px 0;
  }
  .how h4 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .how h4 + p {
    max-width: inherit;
  }
  .reasons {
    padding: 90px 0;
  }
  .reasons h5 {
    font-size: 1.75rem;
    max-width: 620px;
  }
  .reasons .desktopSlider {
    display: none !important;
  }
  .reasons .mobileSlider {
    width: 100%;
    display: block;
  }
  .reasons .mobileSlider .item img {
    width: 80%;
    margin: 0 10% 40px;
  }
  .reasons .mobileSlider .title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #54536C;
    margin-bottom: 15px;
  }
  .reasons .mobileSlider p {
    display: block;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5;
    color: #54536C;
    margin-bottom: 15px;
  }
  .reasons .owl-nav {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reasons .owl-nav button {
    width: 38px;
    height: 38px;
    margin: 30px 10px 0;
    background: #EFEFEF url("https://www.picmaker.com/assets/images/certificatemaker/next.svg") center no-repeat !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  .reasons .owl-nav button span {
    display: none;
  }
  .reasons .owl-nav button:focus {
    outline: 0;
  }
  .reasons .owl-nav button:hover {
    background: #aaa url("https://www.picmaker.com/assets/images/certificatemaker/next.svg") center no-repeat !important;
  }
  .reasons .owl-nav button.owl-prev {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
  }
  .templategid {
    padding: 60px 0;
  }
  .templategid h2 {
    font-size: 1.75rem;
  }
  .templategid h2 + p {
    font-size: 1.125rem;
  }
  .templategid h2.col8 {
    max-width: 650px;
    margin: auto;
    margin-bottom: 15px;
  }
  .testimonials .inner blockquote p {
    padding: 0 20px;
  }
  .ctaFull {
    padding: 75px 0;
  }
  .ctaFull h4 {
    font-size: 1.875rem;
  }
  .ctaFull h4 br {
    display: none;
  }
  .faqs {
    padding: 90px 0;
  }
  .faqs h6 {
    font-size: 1.375rem;
  }
  .faqs h6 + p {
    font-size: 1.0625rem;
  }
  .faqs .card .card-header {
    font-size: 1.0625rem;
    padding: 40px 20px 0;
  }
  .production {
    padding: 90px 0;
  }
  .production h5 {
    font-size: 1.75rem;
  }
  .production h5 + p {
    font-size: 1.125rem;
    margin: 0 auto 40px;
  }
  .production .flex ul li {
    width: 50%;
    margin: 10px 0px 30px 0px;
  }
  .production .flex ul li .title {
    font-size: 1.3125rem;
  }
  .production .flex ul li p {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .btnYellow,
  .gradBtn {
    font-size: 1.0625rem;
    max-width: 290px;
    height: 46px;
    line-height: 46px;
    padding: 0;
  }
  header .navbar-toggler {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border: 0px;
    margin-right: -7px;
  }
  header .navbar-toggler:hover, header .navbar-toggler:focus {
    outline: 0px;
  }
  header .navbar-toggler span {
    position: absolute;
    width: 24px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    background: none;
    display: block;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  header .navbar-toggler span:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 0px;
    left: 50%;
    position: absolute;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  header .navbar-toggler span:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-top: 0px;
    left: 50%;
    position: absolute;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  header .navbar-toggler.collapsed span {
    background: #fff;
  }
  header .navbar-toggler.collapsed span:before {
    margin-top: -8px;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  header .navbar-toggler.collapsed span:after {
    margin-top: 10px;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  header #menu {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    left: 0px;
    top: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 90px 20px 20px;
    height: 100vh;
    width: 240px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
  }
  header #menu li {
    width: 100%;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  }
  header #menu li:last-of-type {
    border-bottom: 0px;
    padding: 20px 0 0;
  }
  header #menu li .dropdown-menu {
    position: static;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    background: none;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    padding: 0 0 10px 20px;
    margin-top: -15px;
  }
  header #menu li .dropdown-menu a {
    color: #fff;
  }
  header #menu li a {
    padding: 20px 0px;
  }
  header #menu li a:hover {
    color: #F1821E;
    text-decoration: none;
  }
  header #menu li a.signup {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }
  header #menu li a.signup:hover {
    color: #000;
    text-decoration: underline;
  }
  header #menu li a.dropdown:after {
    display: none;
  }
  header #menu.show {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
  }
  header.scrolled .navbar-toggler.collapsed span {
    background: #000;
  }
  header.scrolled .navbar-toggler.collapsed span:after, header.scrolled .navbar-toggler.collapsed span:before {
    background: #000;
  }
  header.scrolled .navbar-toggler span {
    background: none;
  }
  header.scrolled .navbar-toggler span:after, header.scrolled .navbar-toggler span:before {
    background: #000;
  }
  header.scrolled #menu > li a {
    color: #fff;
  }
  .mainBanner p .btn {
    font-size: 1.0625rem;
    max-width: 250px;
    height: 46px;
    line-height: 46px;
    padding: 0;
  }
  .features {
    padding: 60px 0 0;
  }
  .features h2 {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
  .features h2 + p {
    font-size: 1rem;
    max-width: 100%;
    margin: auto;
  }
  .features .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .features .flex img {
    width: 94%;
    margin: 1.5% 3%;
  }
  .features .img {
    margin-right: 0;
  }
  .features ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .features ul:nth-child(even) li:last-child .img {
    margin: 0px;
  }
  .features ul li {
    width: 100% !important;
    padding: 20px 0;
  }
  .features ul li:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features ul li .desc {
    padding-right: 0px;
  }
  .features ul li .desc h4 {
    text-align: center;
  }
  .features ul li .desc p {
    text-align: center;
  }
  .ctaFull {
    padding: 50px 0;
  }
  .ctaFull h4 {
    font-size: 1.625rem;
  }
  .ctaFull p a {
    font-size: 1.0625rem;
    min-width: 250px;
    height: 46px;
    line-height: 46px;
    padding: 0;
  }
  .templategid {
    padding: 60px 0;
  }
  .templategid h2 {
    font-size: 1.625rem;
  }
  .templategid h2 + p {
    font-size: 1.125rem;
  }
  .templategid h2.col8 {
    max-width: 100%;
  }
  .templategid .staticgrid {
    margin-top: 30px;
  }
  .templategid .staticgrid .item {
    width: calc(48% - 0px);
    margin: 1%;
  }
  .production {
    padding: 60px 0 0;
  }
  .production h5 {
    font-size: 1.625rem;
  }
  .production h5 + p {
    font-size: 1.125rem;
    margin: 0 auto 40px;
  }
  .production .flex {
    padding: 10px 40px 60px;
    margin-bottom: 40px;
  }
  .production .flex ul li {
    width: 100%;
    border-bottom: 1px solid #FFE2EA;
    margin: 0px;
    padding: 40px 0 20px;
  }
  .production .flex ul li:last-of-type {
    border: 0px;
  }
  .production .flex ul li .title {
    font-size: 1.125rem;
  }
  .production .flex ul li p {
    font-size: 1rem;
  }
  .reasons {
    padding: 60px 0;
  }
  .reasons h5 {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
  .reasons .mobileSlider .title {
    font-size: 1.3125rem;
  }
  .reasons .mobileSlider p {
    font-size: 1rem;
  }
  .testimonials h6 {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
  .how {
    padding: 60px 0;
  }
  .how h4 {
    font-size: 1.625rem;
    margin-bottom: 10px;
  }
  .how h4 + p {
    max-width: inherit;
  }
  .how .pillar {
    background: #fff;
    padding: 30px 15px;
    width: 96%;
    margin: 3%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
  }
  .how .pillar p {
    max-width: 100%;
  }
  .faqs {
    padding: 60px 0;
  }
  .faqs h6 {
    font-size: 1.25rem;
  }
  .faqs h6 + p {
    font-size: 1rem;
  }
  .faqs .card .card-header {
    font-size: 1.0625rem;
    padding: 30px 15px 0;
  }
  .faqs .card-body {
    padding: 15px 15px 30px;
    background: #FFE8F2;
    font-size: 1rem;
  }
  .faqs .card-body p {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  footer ul {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  footer .showMore {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 579px) {
  .templategid .tmpgrid {
    padding: 50px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .templategid .tmpgrid .item1 {
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .templategid .tmpgrid .item1 .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
  .templategid .tmpgrid .item1 .list:nth-child(2) {
    margin-top: 10px;
  }
  .templategid .tmpgrid .item1 .vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .templategid .tmpgrid .item1 .horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .templategid .tmpgrid .item2 {
    width: 100%;
    margin-top: 25px;
  }
  .templategid .staticgrid {
    margin-top: 30px;
  }
  .templategid .staticgrid .item {
    width: calc(94% - 0px);
    margin: 10px 3%;
  }
  footer {
    padding: 50px 0 30px;
  }
  footer .slogan {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=mainstyle.css.map */
