/**
 * Colors
 */
/**
 * Body
 */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
}

.wrapper {
  overflow: hidden;
}

/**
 * Typography
 */
body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fjalla One", sans-serif;
  color: #000;
}

a {
  color: #333;
  text-decoration: underline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00fc99), to(#00fc99));
  background-image: linear-gradient(#00fc99, #00fc99);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 0;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
a:hover {
  color: #000;
  background-size: 100% 100%;
}

/**
 * Bg colors
 */
.s-bg-alt {
  background-color: #e6e9e9;
}

/**
 * Buttons
 */
.btn-primary {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #000;
  border-color: #000;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  font-size: 18px;
  padding: 12px 40px;
}
.btn-primary:active, .btn-primary:hover, .btn-primary:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #333;
  border-color: #333;
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #333;
  border-color: #333;
}

/**
 * Sections
 */
.s-section {
  padding: 96px 0;
}

.pp-text-uppercase {
  text-transform: uppercase;
}

.pp-title-mb {
  margin-bottom: 40px;
}

.pp-unordered-list {
  padding: 0;
  list-style-type: none;
  margin-bottom: 4px;
}
.pp-unordered-list li {
  position: relative;
  padding-left: 33px;
  margin-bottom: 12px;
}
.pp-unordered-list li:before {
  content: "";
  width: 23px;
  height: 9px;
  background-color: #050302;
  position: absolute;
  top: 10px;
  left: 0;
}

.pp-img-shadow {
  -webkit-box-shadow: 4px 4px 0px 0px rgb(0, 0, 0);
          box-shadow: 4px 4px 0px 0px rgb(0, 0, 0);
}

.pp-mt-5 {
  margin-top: -5px;
}

.pp-max-width {
  max-width: 600px;
  margin: 0 auto;
}

.underline-1 {
  position: relative;
}
.underline-1:before {
  content: "";
  background: url("../img/underline-1.svg") no-repeat 0 0;
  height: 4px;
  width: 230px;
  position: absolute;
  left: 50%;
  bottom: -3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.underline-2 {
  position: relative;
}
.underline-2:before {
  content: "";
  background: url("../img/underline-2.svg") no-repeat 0 0;
  height: 8px;
  width: 136px;
  position: absolute;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 992px) {
  .s-01 {
    background: url("../img/contact-form-after.svg") no-repeat 100% 120%;
    background-size: 317px 425px;
  }
}

.three-vert-dots > .container {
  height: 1px;
  position: relative;
}
.three-vert-dots > .container:after {
  content: "";
  background: url("../img/about-three-dots.svg") no-repeat 0 0;
  background-size: 33px 139px;
  position: absolute;
  width: 33px;
  height: 139px;
  position: absolute;
  left: 16px;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}