* {
  outline: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
  border-radius: 0;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  border-radius: 0;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* ========================================================================= */
#privacypolicy {
  position: fixed;
  right: 5px;
  bottom: 0;
  background: #535C4F;
  color: #ECE6DF;
  border: 1px solid #ECE6DF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  width: 100%;
  max-width: 400px;
  font-size: 14px;
  line-height: 22px;
  opacity: 0;
  -webkit-transform: translate(0, 30px);
      -ms-transform: translate(0, 30px);
          transform: translate(0, 30px);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
#privacypolicy.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  pointer-events: auto;
}
#privacypolicy a {
  color: #ECE6DF;
  text-decoration: underline;
}
#privacypolicy .privacy-btn {
  background-image: url('../images/privacy-close.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  #privacypolicy {
    right: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 30px);
        -ms-transform: translate(-50%, 30px);
            transform: translate(-50%, 30px);
  }
  #privacypolicy.active {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: auto;
  }
}
/* CMS ========================================================================= */
.uniform__potty {
  position: absolute;
  left: -9999px;
}
/* ANIMATIONS ====================================================================== */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}
.fadeanimation {
  opacity: 0;
}
.fadeanimation.fadeIn {
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}
.fadeanimation.fadeIn.fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in-out forwards;
          animation: fadeInUp 1s ease-in-out forwards;
}
.fadeanimation.fadeIn.fadeInUp.delay03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.fadeanimation.fadeIn.fadeInUp.delay05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fadeanimation.fadeIn.fadeInUp.delay07 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.fadeanimation.fadeIn.fadeInUp.delay09 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.fadeanimation.fadeIn.fadeInUp.delay11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.fadeanimation.fadeInUp {
  -webkit-transform: translate(0, 30px);
      -ms-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadeanimation.delay03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.fadeanimation.delay05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fadeanimation.delay07 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.fadeanimation.delay09 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.fadeanimation.delay11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
/* STYLES ====================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-color: #535C4F;
  color: #ECE6DF;
  height: 100%;
  max-width: 3000px;
  margin: 0 auto;
  padding: 0;
  font-family: aaux-next, sans-serif;
  font-weight: 300;
  font-size: 18px;
  opacity: 0;
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
.logo {
  width: 100%;
  max-width: 280px;
}
img {
  display: inline-block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  font-family: freight-big-pro, serif;
  margin: 0 0 10px 0;
}
h1 {
  font-weight: 500;
  font-size: 81px;
  letter-spacing: 0;
  line-height: 1;
}
h3 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
p {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
a {
  color: #ECE6DF;
  text-decoration: none;
}
a:hover {
  color: #ECE6DF;
  text-decoration: underline;
}
#form-success {
  display: none;
}
#feedback.erroneous,
#feedback.error {
  padding: 10px;
  text-align: center;
  background-color: crimson;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form textarea {
  -webkit-appearance: none;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #ECE6DF;
  background-color: transparent;
  font-size: 11px;
  width: 100%;
}
#contact-form input[type=text]::-webkit-input-placeholder, #contact-form input[type=email]::-webkit-input-placeholder, #contact-form textarea::-webkit-input-placeholder {
  color: #ECE6DF;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-form input[type=text]::-moz-placeholder, #contact-form input[type=email]::-moz-placeholder, #contact-form textarea::-moz-placeholder {
  color: #ECE6DF;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-form input[type=text]:-ms-input-placeholder, #contact-form input[type=email]:-ms-input-placeholder, #contact-form textarea:-ms-input-placeholder {
  color: #ECE6DF;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-form input[type=text]::-ms-input-placeholder, #contact-form input[type=email]::-ms-input-placeholder, #contact-form textarea::-ms-input-placeholder {
  color: #ECE6DF;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-form input[type=text]::placeholder,
#contact-form input[type=email]::placeholder,
#contact-form textarea::placeholder {
  color: #ECE6DF;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
#contact-form .policy {
  margin-bottom: 25px;
}
#contact-form .policy label {
  position: relative;
  color: #ECE6DF;
  margin-left: 25px;
  text-transform: uppercase;
  font-size: 11px;
}
#contact-form .policy label a {
  color: #ECE6DF;
}
#contact-form .policy label a:hover {
  text-decoration: none;
}
#contact-form .policy:not(#IE8) label:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: -25px;
  top: 50%;
  border: 1px solid #ECE6DF;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#contact-form .policy:not(#IE8) input[type=checkbox] {
  display: none;
}
#contact-form .policy:not(#IE8) input[type=checkbox]:checked + label:before {
  content: "\2573";
  line-height: 1;
  font-size: 14px;
}
@media screen and (min-width: 0 \0) {
  #contact-form .policy:not(#IE8) input[type=checkbox]:checked + label:before {
    line-height: 8px;
  }
}
#contact-form .policy.error:not(#IE8) label:before {
  border: 1px solid crimson !important;
}
#contact-form .policy.error label {
  color: crimson;
}
#contact-form .policy.error label a {
  color: crimson;
}
#contact-form input[type=submit] {
  background: none;
  color: #ECE6DF;
  font: inherit;
  outline: inherit;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ECE6DF;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#contact-form input[type=submit]:hover {
  background-color: #ECE6DF;
  color: #fff;
}
#contact-form .error-text {
  color: crimson;
  margin: 10px 0;
}
#contact-form .form-group.error input,
#contact-form .form-group.error textarea {
  color: crimson !important;
  border-bottom: 1px solid crimson;
}
#contact-form .form-group.error input::-webkit-input-placeholder, #contact-form .form-group.error textarea::-webkit-input-placeholder {
  color: crimson !important;
}
#contact-form .form-group.error input::-moz-placeholder, #contact-form .form-group.error textarea::-moz-placeholder {
  color: crimson !important;
}
#contact-form .form-group.error input:-ms-input-placeholder, #contact-form .form-group.error textarea:-ms-input-placeholder {
  color: crimson !important;
}
#contact-form .form-group.error input::-ms-input-placeholder, #contact-form .form-group.error textarea::-ms-input-placeholder {
  color: crimson !important;
}
#contact-form .form-group.error input::placeholder,
#contact-form .form-group.error textarea::placeholder {
  color: crimson !important;
}
#feedback {
  display: none;
}
.plg-container {
  display: block;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 80px;
}
header {
  padding-top: 80px;
}
header .plg-header-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header nav ul li {
  display: inline-block;
  margin: 0 0 20px 0;
  padding: 0;
}
header nav ul li:last-child {
  margin: 0;
}
#plg-homesection1 {
  min-height: calc(100% - 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#plg-homesection1 .plg-h1-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item {
  width: 50%;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.text {
  padding-left: 150px;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote {
  font-size: 81px;
  font-family: freight-big-pro, serif;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote:before {
  content: '“';
  position: absolute;
  left: 0;
  top: 0;
  font-family: baskerville-urw, serif;
  font-size: 198px;
  font-weight: 400;
  -webkit-transform: translate(-70%, -60%);
      -ms-transform: translate(-70%, -60%);
          transform: translate(-70%, -60%);
  line-height: 1;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.text .txt {
  margin-top: 120px;
  width: 100%;
  max-width: 380px;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image .plg-h1-imagecontainer {
  padding-left: 120px;
  padding-right: 60px;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image .image:after {
  content: '';
  background-color: #ECE6DF;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: -1;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image ul {
  padding: 0;
  margin: 30px 0 0 0;
  list-style-type: none;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-family: freight-big-pro, serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 30px;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  height: 90%;
  width: 2px;
  background-color: #ECE6DF;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:last-child {
  margin: 0;
}
#plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:last-child:after {
  display: none;
}
#plg-homesection1 .plg-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
}
#plg-homesection1 .plg-scroll img {
  display: block;
  width: 25px;
  height: auto;
  margin: 20px auto 0;
}
#plg-homesection2 {
  background-color: #ECE6DF;
  color: #535C4F;
  padding: 64px 0 80px;
}
#plg-homesection2 h1 {
  margin-bottom: 60px;
}
#plg-homesection2 h3 {
  margin-bottom: 40px;
}
#plg-homesection2 .plg-h2-grid {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#plg-homesection2 .plg-h2-grid .plg-h2-item {
  width: calc(50% - 120px);
  margin: 120px 60px 0 60px;
}
#plg-homesection3 {
  padding: 80px 0;
}
#plg-homesection3 h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 40px;
}
#plg-homesection3 h2 {
  font-family: freight-big-pro, serif;
  font-size: 82px;
  line-height: 1;
  font-weight: 500;
}
#plg-homesection3 .plg-h3-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 120px);
  margin-left: -60px;
  margin-top: 100px;
}
#plg-homesection3 .plg-h3-grid .plg-h3-item {
  margin: 100px 60px 0 60px;
  width: calc(25% - 120px);
  text-align: center;
}
#plg-homesection3 .plg-h3-grid .plg-h3-item h3 {
  margin-bottom: 50px;
}
#plg-homesection4 {
  margin-top: 60px;
}
#plg-homesection4 .plg-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plg-homesection4 h3 {
  font-family: aaux-next, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 40px 0;
}
#plg-homesection4 .plg-h4-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item {
  margin-right: 30px;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item .icon {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item img {
  width: 37px;
  height: auto;
  display: block;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item img.icon-phone {
  width: 33px;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item a {
  margin-top: 32px;
  display: inline-block;
  border: 1px solid #ECE6DF;
  padding: 10px 35px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item a:hover {
  text-decoration: none;
  background-color: #ECE6DF;
  color: #535C4F;
}
#plg-homesection4 .plg-h4-grid .plg-h4-item:last-child {
  margin: 0;
}
footer {
  margin-top: 150px;
  padding-bottom: 50px;
  font-family: freight-big-pro, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}
footer .plg-f-footer {
  padding-top: 50px;
  border-top: 1px solid #ECE6DF;
  text-align: center;
}
footer .plg-f-footer a {
  text-decoration: none;
}
footer .plg-f-footer a:hover {
  text-decoration: underline;
}
footer .siteby {
  font-size: 16px;
}
#plg-textpage {
  margin-top: 100px;
}
/* MEDIA QUERY'S =============================================================== */
@media only screen and (max-width: 1600px) {
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text {
    padding-left: 100px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li {
    font-size: 16px;
    margin-right: 15px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:after {
    right: -12px;
  }
  #plg-homesection3 .plg-h3-grid .plg-h3-item {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(25% - 60px);
  }
}
@media only screen and (max-width: 1400px) {
  .logo {
    max-width: 240px;
  }
  h3 {
    font-size: 22px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text {
    width: 40%;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote {
    font-size: 65px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote:before {
    font-size: 158px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image {
    width: 60%;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image .plg-h1-imagecontainer {
    padding-left: 60px;
  }
  #plg-homesection2 h1 {
    font-size: 65px;
  }
  #plg-homesection3 h2 {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1250px) {
  #plg-homesection1 {
    min-height: calc(100% - 166px);
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text {
    padding-left: 40px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li {
    display: block;
    margin: 0;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:after {
    display: none;
  }
  #plg-homesection2 .plg-h2-grid {
    width: calc(100% + 120px);
    margin-left: -60px;
  }
  #plg-homesection3 .plg-h3-grid .plg-h3-item {
    margin-left: 60px;
    margin-right: 60px;
    width: calc(50% - 120px);
  }
}
@media only screen and (max-width: 1000px) {
  header {
    padding-top: 40px;
  }
  #plg-homesection1 {
    padding-bottom: 80px;
  }
  #plg-homesection1 .plg-h1-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text {
    margin-top: 120px;
    width: 100%;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text .txt {
    margin-top: 30px;
    max-width: unset;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote {
    font-size: 52px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote:before {
    font-size: 126px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image {
    margin-top: 120px;
    width: 100%;
    text-align: center;
    -webkit-box-align: center ;
        -ms-flex-align: center ;
            align-items: center ;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image .plg-h1-imagecontainer {
    padding-left: 30px;
    padding-right: 30px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image .image:after {
    top: -30px;
    right: -30px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul {
    margin-top: 60px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li {
    display: inline-block;
    margin-right: 15px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:after {
    display: block;
    right: -10px;
  }
  #plg-homesection1 .plg-scroll {
    left: unset;
    right: 20px;
    bottom: unset;
    top: 70vh;
  }
  #plg-homesection1 .plg-scroll span {
    -webkit-writing-mode: tb-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: tb-rl;
  }
  #plg-homesection2 h1 {
    font-size: 52px;
    margin: 0;
  }
  #plg-homesection2 .plg-h2-grid {
    width: 100%;
    margin: 0;
  }
  #plg-homesection2 .plg-h2-grid .plg-h2-item {
    width: 100%;
    margin: 60px 0 0 0;
  }
  #plg-homesection3 {
    padding-bottom: 40px;
  }
  #plg-homesection3 h2 {
    font-size: 52px;
  }
  #plg-homesection3 .plg-h3-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0;
  }
  #plg-homesection3 .plg-h3-grid .plg-h3-item {
    margin: 60px 0 0 0 ;
    width: 100%;
    text-align: left;
  }
  footer {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 680px) {
  header .plg-header-container {
    padding: 0 20px;
  }
  .plg-container {
    padding: 0 20px;
  }
  h3 {
    font-size: 18px;
  }
  #plg-homesection1 .plg-scroll {
    display: none;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text {
    padding: 0;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote {
    font-size: 42px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.text blockquote:before {
    left: 0;
    -webkit-transform: translate(0, -60%);
        -ms-transform: translate(0, -60%);
            transform: translate(0, -60%);
    font-size: 90px;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image .plg-h1-imagecontainer {
    padding-left: 0;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul {
    margin: 0 0 70px 0;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li {
    display: block;
  }
  #plg-homesection1 .plg-h1-grid .plg-h1-item.image ul li:after {
    display: none;
  }
  #plg-homesection2 h1 {
    font-size: 42px;
  }
  #plg-homesection3 h2 {
    font-size: 42px;
  }
  #plg-homesection4 .plg-h4-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item {
    margin: 50px 0 0 0;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item .icon {
    height: 35px;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item img.icon-phone {
    width: 30px;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item a {
    font-size: 14px;
    padding: 6px 25px;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item:last-child {
    margin: 50px 0 0 0;
  }
  #plg-homesection4 .plg-h4-grid .plg-h4-item:first-child {
    margin: 0;
  }
}
