@font-face {
  font-family: 'icomoon';
  src:  url(/fonts/icomoon.eot?57a9e811193bb9f736eb07bfe5147baa);
  src:  url(/fonts/icomoon.eot?57a9e811193bb9f736eb07bfe5147baa#iefix) format('embedded-opentype'),
    url(/fonts/icomoon.ttf?707e08241c1e40e95b2eeeff93c878ae) format('truetype'),
    url(/fonts/icomoon.woff?b6f9def5e895df3f19f279bcae841652) format('woff'),
    url(/fonts/icomoon.svg?6251de78da9e85d18c13cbc23b35b4c9#icomoon) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-eye:before {
  content: "\E915";
}
.icon-user:before {
  content: "\E914";
}
.icon-plus:before {
  content: "\E912";
}
.icon-tag:before {
  content: "\E913";
}
.icon-call:before {
  content: "\E910";
}
.icon-frame-expand:before {
  content: "\E911";
}
.icon-arrow-down:before {
  content: "\E900";
}
.icon-arrow-left:before {
  content: "\E901";
}
.icon-arrow-right:before {
  content: "\E902";
}
.icon-arrow-up:before {
  content: "\E903";
}
.icon-chevron-down:before {
  content: "\E904";
}
.icon-chevron-left:before {
  content: "\E905";
}
.icon-chevron-right:before {
  content: "\E906";
}
.icon-chevron-up:before {
  content: "\E907";
}
.icon-cross:before {
  content: "\E908";
}
.icon-download:before {
  content: "\E909";
}
.icon-earth:before {
  content: "\E90A";
}
.icon-envelope:before {
  content: "\E90B";
}
.icon-magnifier:before {
  content: "\E90C";
}
.icon-marker:before {
  content: "\E90D";
}
.icon-phone:before {
  content: "\E90E";
}
.icon-smartphone:before {
  content: "\E90F";
}
.icon-call2:before {
  content: "\E942";
}
.icon-facebook:before {
  content: "\EA90";
}
.icon-instagram:before {
  content: "\EA92";
}
.icon-youtube:before {
  content: "\EA9D";
}
.icon-linkedin:before {
  content: "\EACA";
}
.icon-pinterest:before {
  content: "\EAD2";
}
.icon-play:before {
  content: "\EA1C";
}
@font-face {
  font-family: "Roboto-Thin";
  src: url("/fonts/Roboto/Roboto-Thin.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Light";
  src: url("/fonts/Roboto/Roboto-Light.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("/fonts/Roboto/Roboto-Regular.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Medium";
  src: url("/fonts/Roboto/Roboto-Medium.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("/fonts/Roboto/Roboto-Bold.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.buttonOuter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.button {
  height: 50px;
  width: auto;
  padding: 0 26px;
  background-color: #ea6151;
  border: 1px solid #ea6151;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  font-family: "Roboto-Regular";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #fff;
  color: #181617;
}

.button--secondary {
  border-color: #fff;
  background-color: #fff;
  color: #ea6151;
}

.button--secondary:hover {
  border-color: #ea6151;
  background-color: #fff;
  color: #181617;
}

.button--tertiary {
  border-color: #ea6151;
  background-color: #181617;
  color: #ea6151;
}

.button--tertiary:hover {
  border-color: #fff;
  background-color: #181617;
  color: #fff;
}

.button.inactive {
  opacity: .6;
  pointer-events: none;
  cursor: not-allowed;
  color: #ea6151;
}

.button.inactive .spinner {
  height: 30px;
  width: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.8);
  -webkit-animation: rotation 0.6s infinite linear 0.25s;
          animation: rotation 0.6s infinite linear 0.25s;
  opacity: 0;
  display: block;
  position: absolute;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button:disabled {
  opacity: .6;
  pointer-events: none;
  cursor: not-allowed;
}

.button .spinner {
  display: none;
}

.centeredButton {
  margin: auto;
}

.plainButton {
  font-size: 15px;
  line-height: 18px;
  color: #ea6151;
  font-family: "Roboto-Bold";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes rotation {
  from {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    opacity: 1;
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    opacity: 1;
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@media (hover: none), (hover: on-demand) {
  .button:hover {
    background-color: #ea6151;
    color: #fff;
  }

  .button:hover.inactive {
    color: #ea6151;
  }
}

.inputWithButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .inputWithButton {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100%;
    max-width: 300px;
  }
}

.inputWithButton .formInput {
  height: 50px;
  outline: none;
  color: #181617;
  font-size: 15px;
  line-height: 22px;
  font-family: "Roboto-Light";
  min-width: 350px;
  border: none;
  padding: 0 16px;
  border-radius: 3px 0 0 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .inputWithButton .formInput {
    min-width: 0;
    width: 100%;
    border-radius: 3px;
  }
}

.inputWithButton .button {
  border-radius: 0 3px 3px 0;
}

@media only screen and (max-width: 767px) {
  .inputWithButton .button {
    border-radius: 3px;
    margin-top: 20px;
    width: 100%;
  }
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

form .selectWithIcon span {
  color: #181617;
  font-size: 12px;
  line-height: 0;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

@media only screen and (max-width: 767px) {
  form .inlineInputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

form .inlineInputs .inputContainer:first-child {
  padding-right: 12px;
}

@media only screen and (max-width: 767px) {
  form .inlineInputs .inputContainer:first-child {
    padding-right: 0;
  }
}

form .inlineInputs .inputContainer:last-child {
  padding-left: 12px;
}

@media only screen and (max-width: 767px) {
  form .inlineInputs .inputContainer:last-child {
    padding-left: 0;
  }
}

form .inputContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 15px 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  form .inputContainer {
    margin: 10px 0;
  }
}

form .inputContainer.withToggle .formInput {
  padding-right: 64px;
}

form .inputContainer.large {
  margin: 30px 0;
}

@media only screen and (max-width: 767px) {
  form .inputContainer.large {
    margin: 20px 0;
  }
}

form .inputContainer .togglePassword {
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  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: 24px;
  line-height: 1;
  color: #181617;
  opacity: .4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  form .inputContainer .togglePassword:hover {
    opacity: 1;
  }
}

form .inputContainer .togglePassword.active {
  opacity: 1;
}

form .inputContainer label {
  cursor: pointer;
  font-family: "Roboto-Regular";
  font-size: 15px;
  margin-bottom: 8px;
}

form .inputContainer label i {
  color: #ea6151;
  margin-left: 4px;
  font-style: normal;
}

form .inputContainer textarea.formInput {
  height: 200px;
  resize: none;
  padding: 16px;
}

form .inputContainer select.formInput {
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

form .inputContainer .formInput {
  height: 50px;
  outline: none;
  color: #181617;
  font-size: 15px;
  line-height: 22px;
  font-family: "Roboto-Light";
  width: 100%;
  border: 1px solid #a1a1a1;
  padding: 0 16px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

form .inputContainer .formInput:focus {
  border-color: #181617;
}

form .inputContainer .withError {
  color: #ea6151;
  font-size: 12px;
  position: absolute;
  bottom: -4px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

form .buttonOuter {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  form .buttonOuter {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  form .buttonOuter .button {
    width: 100%;
  }
}

.searchForm {
  width: 100%;
}

.searchForm .searchInput {
  width: 100%;
}

.searchForm .searchInput input {
  height: 50px;
  outline: none;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Roboto-Regular";
  width: 100%;
  border: none;
  border-bottom: 1px solid #a1a1a1;
  padding: 0 16px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.searchForm .searchInput button {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 22px;
  line-height: 0;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.checkbox__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 0;
  padding: 0;
  z-index: 1;
  cursor: pointer;
  margin: 0;
  overflow: visible;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  pointer-events: none;
}

.checkbox__input:checked ~ .checkbox__symbol {
  background-color: #ea6151;
}

.checkbox__input:checked ~ .checkbox__symbol:after {
  opacity: 1;
}

.checkbox__input:disabled {
  pointer-events: none;
}

.checkbox__input:disabled ~ .checkbox__symbol,
.checkbox__input:disabled ~ .checkbox__label {
  pointer-events: none;
  opacity: .5;
}

.checkbox__symbol {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: 1px solid #ea6151;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition-property: border-color, background-color;
  transition-property: border-color, background-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.checkbox--standard .checkbox__symbol {
  border-color: #a1a1a1;
}

.checkbox--standard input:checked + .checkbox__symbol {
  border-color: #ea6151;
}

.checkbox__symbol:after {
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 9px;
  width: 4px;
  opacity: 0;
  margin-top: -4px;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.checkbox__label {
  padding-left: 8px;
  display: inline-block;
  cursor: pointer;
  margin-top: 2px;
  color: #fff;
  line-height: 1.6;
}

.checkbox__label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.checkbox--standard .checkbox__label {
  color: #74716c;
}

.checkbox__label a {
  position: relative;
}

.formLink {
  color: #74716c;
  text-decoration: underline;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (hover: hover) and (pointer: fine) {
  .formLink:hover {
    color: #181617;
  }
}

.backDrop {
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.box {
  position: fixed;
  width: 40%;
  height: auto;
  left: 50%;
  top: 50%;
  z-index: 60;
  display: none;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .box {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .box {
    width: 60%;
  }
}

.box--full {
  width: calc(90% - 80px);
  max-width: 900px;
  height: 100%;
  max-height: calc(90% - 80px);
}

@media only screen and (max-width: 767px) {
  .box--full {
    width: 100%;
    max-width: calc(100% - 48px);
    max-height: calc(100% - 128px);
  }
}

.box__content {
  background-color: #fff;
  border-radius: 3px;
  overflow: auto;
  height: 100%;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .box__content {
    padding: 16px;
  }
}

.boxClose {
  font-size: 32px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  opacity: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 15px;
  top: 15px;
  color: #fff;
  cursor: pointer;
  z-index: 60;
}

.socialIcons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  gap: 32px;
}

.socialIcons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.socialIcons li a {
  color: #fff;
  font-size: 20px;
  line-height: 0;
  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;
  text-align: center;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .socialIcons li a:hover {
    color: #ea6151;
  }
}

.gdprPopup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 30;
  background-color: #181617;
  padding: 40px 24px;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gdprPopup.active {
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.gdprPopup .gdprPopupContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
  margin: auto;
}

.gdprPopup .gdprPopupContentBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.gdprPopup .gdprPopupContentCol {
  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;
  text-align: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .gdprPopup .gdprPopupContent .button {
    width: 100%;
  }
}

.gdprPopup .gdprPopupContent .gdprText {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-right: 8px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .gdprPopup .gdprPopupContent .gdprText {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.gdprPopup .gdprPopupContent .gdprMore {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.gdprPopup .gdprPopupContent .gdprMore:hover {
  color: #ea6151;
}

#stars {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-user-select: none;
  -webkit-user-select: none;
}

#stars .star {
  margin-right: 6px;
  cursor: pointer;
}

#stars .star .fa {
  font-size: 40px;
  color: #ccc;
}

@media only screen and (max-width: 767px) {
  #stars .star .fa {
    font-size: 30px;
  }
}

#stars .star.hover .fa {
  color: #FFCC36;
}

#stars .star.selected .fa {
  color: #FF912C;
}

header {
  position: fixed;
  width: 100%;
  height: 94px;
  left: 0;
  top: 0;
  background-color: #181617;
  z-index: 30;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  header {
    height: 74px;
    padding: 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    height: 84px;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  header.hiddenHeader {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

header.sticky {
  -webkit-box-shadow: 0px -10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -10px 10px 10px rgba(0, 0, 0, 0.2);
}

header .mainNavigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  header .mainNavigation {
    padding: 0 !important;
  }
}

header .mainNavigation .logoParent {
  width: auto;
  height: 44px;
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .logoParent {
    height: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .mainNavigation .logoParent {
    height: 34px;
  }
}

header .mainNavigation .logoParent img {
  width: auto;
  height: 100%;
}

header .mainNavigation .navigationContent {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .mainNavigation .navigationContent .navigationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: 40px;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .navigationContent .navigationList {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .mainNavigation .navigationContent .navigationList {
    margin-inline: 12px;
  }
}

header .mainNavigation .navigationContent .navigationList li {
  margin: 0 14px;
  padding: 8px 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .mainNavigation .navigationContent .navigationList li {
    margin: 0 8px;
  }
}

header .mainNavigation .navigationContent .navigationList li a {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-family: "Roboto-Light";
  position: relative;
}

header .mainNavigation .navigationContent .navigationList li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -8px;
  background-color: #fff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  header .mainNavigation .navigationContent .navigationList li a:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

header .mainNavigation .navigationContent .navigationList li a.active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

header .mainNavigation .navigationContent .rightMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .navigationContent .rightMenu {
    margin-right: 28px;
  }
}

header .mainNavigation .navigationContent .rightMenu li {
  margin: 0 12px;
  line-height: 0;
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .navigationContent .rightMenu li {
    margin: 0 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header .mainNavigation .navigationContent .rightMenu li {
    margin: 0 8px;
  }
}

header .mainNavigation .navigationContent .rightMenu li.withLang {
  position: relative;
}

header .mainNavigation .navigationContent .rightMenu li.withLang a {
  position: relative;
}

header .mainNavigation .navigationContent .rightMenu li.withLang a .currentLang {
  color: #ea6151;
  font-size: 12px;
  font-family: "Roboto-Light";
  line-height: 0;
  width: 22px;
  height: 22px;
  background-color: #181617;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  border-radius: 100%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .navigationContent .rightMenu li.withLang a .currentLang {
    font-size: 10px;
    width: 20px;
    height: 20px;
  }
}

header .mainNavigation .navigationContent .rightMenu li.withLang:hover .languagesMenu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

header .mainNavigation .navigationContent .rightMenu li.withLang .languagesMenu {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background-color: #181617;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transform: translate(-25%, 100%);
  transform: translate(-25%, 100%);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mainNavigation .navigationContent .rightMenu li.withLang .languagesMenu li {
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 0 6px;
}

header .mainNavigation .navigationContent .rightMenu li.withLang .languagesMenu li:last-child {
  border-bottom: none;
}

header .mainNavigation .navigationContent .rightMenu li.withLang .languagesMenu li a {
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 22px;
  padding: 10px 12px;
}

@media (hover: hover) and (pointer: fine) {
  header .mainNavigation .navigationContent .rightMenu li.withLang .languagesMenu li a:hover {
    color: #ea6151;
  }
}

header .mainNavigation .navigationContent .rightMenu li a {
  color: #fff;
  font-size: 24px;
  line-height: 0;
  font-family: "Roboto-Light";
}

@media only screen and (max-width: 767px) {
  header .mainNavigation .navigationContent .rightMenu li a {
    font-size: 20px;
  }
}

header .mainNavigation .navigationContent .rightMenu li a.active {
  color: #ea6151;
}

@media (hover: hover) and (pointer: fine) {
  header .mainNavigation .navigationContent .rightMenu li a:hover {
    color: #ea6151;
  }
}

.mobileMenu {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ea6151;
  z-index: 50;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .mobileMenu {
    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;
    overflow-y: auto;
  }
}

.mobileMenu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mobileMenu__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .mobileMenu__grid {
    width: 100%;
    padding-inline: 40px;
  }
}

.mobileMenu__image {
  width: 35%;
  height: 100%;
  background-color: #181617;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .mobileMenu__image {
    display: none;
  }
}

.mobileMenu__image:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(24, 22, 23, 0.5);
}

.mobileMenu__image figure,
.mobileMenu__image picture,
.mobileMenu__image img {
  height: 100%;
  width: 100%;
}

.mobileMenu__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mobileMenu__nav {
  padding: 40px 120px;
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1230px) {
  .mobileMenu__nav {
    padding: 40px 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mobileMenu__nav {
    overflow-y: auto;
  }
}

@media only screen and (max-width: 767px) {
  .mobileMenu__nav {
    padding: 0;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.mobileMenu .mobileClose {
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  position: fixed;
  right: 24px;
  top: 24px;
  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;
}

@media only screen and (max-width: 767px) {
  .mobileMenu .mobileClose {
    border: 2px solid #fff;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 28px;
    right: unset;
    top: unset;
    position: relative;
    margin: 40px auto 56px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mobileMenu .mobileClose:hover {
    color: #181617;
  }
}

.mobileMenu .mobileNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 12px;
}

@media only screen and (max-width: 1230px) {
  .mobileMenu .mobileNav {
    gap: 0;
  }
}

@media only screen and (max-width: 767px) {
  .mobileMenu .mobileNav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 100%;
    padding-bottom: 40px;
  }
}

.mobileMenu .mobileNav li {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .mobileMenu .mobileNav li {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
  }
}

.mobileMenu .mobileNav li a {
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  font-family: "Roboto-Medium";
  position: relative;
  display: inline-block;
  padding-block: 12px;
}

@media only screen and (max-width: 1230px) {
  .mobileMenu .mobileNav li a {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .mobileMenu .mobileNav li a {
    padding: 24px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 12px;
  }
}

.mobileMenu .mobileNav li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 6px;
  background-color: #fff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .mobileMenu .mobileNav li a:before {
    content: unset;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mobileMenu .mobileNav li a:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.mobileMenu .mobileNav li a.active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.mobileMenu .mobileNav li a.active:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

body .burger {
  display: none;
  height: 40px;
  width: 40px;
  position: fixed;
  opacity: 1;
  right: 5px;
  top: 18px;
  z-index: 40;
}

@media only screen and (max-width: 767px) {
  body .burger {
    display: block;
  }
}

body .burger span::before {
  top: -8px;
}

body .burger span::after {
  top: 8px;
}

body .burger span::before,
body .burger span::after {
  content: "";
  position: absolute;
}

body .burger span,
body .burger span::before,
body .burger span::after {
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  background: #fff none repeat scroll 0 0;
  display: block;
  height: 1px;
  width: 26px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

body .burger span {
  margin: 0 auto 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.largeImage #topImage {
  height: 600px;
  background-color: #181617;
}

@media only screen and (max-width: 767px) {
  .largeImage #topImage {
    height: 400px;
  }
}

.mainContent {
  padding-top: 94px;
}

@media only screen and (max-width: 767px) {
  .mainContent {
    padding-top: 74px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mainContent {
    padding-top: 84px;
  }
}

.popup_phone {
  position: fixed;
  z-index: 30;
  bottom: 16px;
  right: 10px;
  color: #fff;
  line-height: 0;
  background-color: #ea6151;
  font-size: 40px;
  width: 60px;
  height: 60px;
  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;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 7px rgba(78, 77, 77, 0.5);
  box-shadow: 0px 0px 7px rgba(78, 77, 77, 0.5);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

@media only screen and (max-width: 767px) {
  .popup_phone {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50px;
    font-size: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.popup_phone:hover,
.popup_phone:focus {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  width: 66px;
  height: 66px;
  font-size: 42px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .popup_phone:hover,
  .popup_phone:focus {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50px;
    font-size: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.popup_phone .phone_container {
  text-align: center;
}

#back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 30;
  width: auto;
  height: auto;
  background: transparent;
  color: #181617;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: hard-light;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

@media only screen and (max-width: 767px) {
  #back-to-top {
    display: none;
  }
}

.darkMode #back-to-top {
  color: #fff;
}

.topBlendMode #back-to-top {
  mix-blend-mode: difference;
}

#back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

#back-to-top span {
  font-size: 30px;
  line-height: 0;
}

.offerNow {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto-Regular";
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #ea6151;
  border: 1px solid #ea6151;
  text-decoration: none;
  position: fixed;
  letter-spacing: 1px;
  right: 0;
  top: 140px;
  z-index: 30;
  width: auto;
  padding: 0 15px;
  border-radius: 0 0 3px 3px;
  -webkit-transform: rotate(90deg) translate(100%, 0);
  transform: rotate(90deg) translate(100%, 0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: background-color color 0.3s ease-in-out;
  transition: background-color color 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .offerNow {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50px;
    font-size: 18px;
    top: unset;
    background-color: #ea6151 !important;
    color: #fff !important;
    border-left: 1px solid #fff;
    -webkit-transform: rotate(0) translate(0, 0);
    transform: rotate(0) translate(0, 0);
    border-radius: 0;
  }
}

.offerNow:hover,
.offerNow:focus {
  color: #181617;
  background-color: #fff;
}

footer {
  background-color: #181617;
  padding: 60px 0 30px;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  footer {
    padding: 60px 0 30px;
  }
}

footer .newsletterTitle {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 40px;
  font-family: "Roboto-Thin";
  color: #fff;
}

footer .newsletterForm {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media only screen and (max-width: 767px) {
  footer .newsletterForm {
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
  }
}

footer .footerBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 16px;
  font-family: "Roboto-Light";
  -webkit-box-pack: strech;
      -ms-flex-pack: strech;
          justify-content: strech;
  color: #a1a1a1;
}

@media only screen and (max-width: 1440px) {
  footer .footerBottom {
    padding-right: 56px;
  }
}

@media only screen and (max-width: 767px) {
  footer .footerBottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-right: 0;
  }
}

footer .footerBottom .copyright {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  footer .footerBottom .copyright {
    margin-bottom: 10px;
  }
}

footer .footerBottom .footerMenu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
}

@media only screen and (max-width: 767px) {
  footer .footerBottom .footerMenu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
}

footer .footerBottom .footerMenu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

footer .footerBottom .footerMenu li a {
  font-size: 13px;
  line-height: 16px;
  font-family: "Roboto-Light";
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  footer .footerBottom .footerMenu li a:hover {
    color: #ea6151;
  }
}

.collectionsWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 40px;
}

@media only screen and (max-width: 1024px) {
  .collectionsWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .collectionsWrapper {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  .collectionsWrapper {
    padding: 0;
    grid-template-columns: 1fr;
  }
}

.collectionsWrapper--blog {
  grid-gap: 40px 24px;
}

.collectionsWrapper--small {
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 480px) {
  .collectionsWrapper--small {
    grid-template-columns: 1fr;
  }
}

.collectionsWrapper--wParts {
  position: relative;
}

.collectionsWrapper--wParts.loading:before,
.collectionsWrapper--wParts.loading:after {
  display: block;
}

.collectionsWrapper--wParts:before {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 18;
  background-color: rgba(255, 255, 255, 0.6);
}

.darkMode .collectionsWrapper--wParts:before {
  background-color: rgba(24, 22, 23, 0.6);
}

.collectionsWrapper--wParts:after {
  content: "";
  height: 60px;
  width: 60px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  -webkit-animation: rotation 0.6s infinite linear 0.25s;
          animation: rotation 0.6s infinite linear 0.25s;
  opacity: 0;
  display: none;
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 200px;
  margin-left: -30px;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.darkMode .collectionsWrapper--wParts:after {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.8);
}

.popup .collectionsWrapper {
  padding: 0;
}

.collectionContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-width: 0;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .collectionContainer:hover .collectionInfo {
    opacity: 1;
  }

  .collectionContainer:hover .collectionGallery img {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

.collectionContainer .collectionGallery {
  width: 100%;
}

.collectionContainer .collectionGallery figure {
  aspect-ratio: 600/750;
}

.collectionContainer .collectionGallery img {
  -webkit-transition: -webkit-filter 300ms ease;
  transition: -webkit-filter 300ms ease;
  transition: filter 300ms ease;
  transition: filter 300ms ease, -webkit-filter 300ms ease;
}

.collectionContainer .collectionBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 0;
  background-color: #181617;
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .collectionContainer .collectionBottom {
    padding: 20px;
  }
}

.collectionContainer .collectionBottom .collectionDate {
  margin-bottom: 16px;
  font-family: "Roboto-Regular";
  font-size: 14px;
  color: #ea6151;
}

.collectionContainer .collectionBottom .collectionTitle {
  font-size: 20px;
  font-family: "Roboto-Regular";
  color: #fff;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .collectionContainer .collectionBottom .collectionTitle:hover {
    color: #a1a1a1;
  }
}

.collectionContainer .collectionBottom .collectionTitle:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.collectionContainer .collectionInfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  padding: 40px;
  background-color: rgba(234, 97, 81, 0.9);
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .collectionContainer .collectionInfo {
    padding: 20px;
    opacity: 1;
    background-color: #181617;
    position: unset;
    height: auto;
  }

  .darkMode .collectionContainer .collectionInfo {
    background-color: transparent;
  }
}

.collectionContainer .collectionInfo .collectionInfoContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionTitle {
  font-size: 20px;
  font-family: "Roboto-Medium";
  color: #fff;
  margin-bottom: 0;
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionTitle:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionTitle.plain {
  cursor: default;
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionCatTitle {
  font-size: 16px;
  font-family: "Roboto-Light";
  color: #fff;
  position: relative;
  z-index: 4;
  margin-top: 12px;
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionCatTitle.plain {
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .collectionContainer .collectionInfo .collectionInfoContent .collectionCatTitle:not(.plain):is(a):hover {
    color: #181617;
  }
}

.collectionContainer .collectionInfo .collectionInfoContent .collectionCatTitle:is(span) {
  pointer-events: none;
}

.collectionContainer .collectionInfo .collectionPrice {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .collectionContainer .collectionInfo .collectionPrice {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 8px 14px;
  }
}

.collectionContainer .collectionInfo .collectionPrice .priceContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .collectionContainer .collectionInfo .collectionPrice .priceContainer {
    margin-right: 0;
  }
}

.collectionContainer .collectionInfo .collectionPrice .priceContainer .priceFirst {
  color: #fff;
  font-size: 42px;
  line-height: 42px;
  font-family: "Roboto-Bold";
}

.collectionContainer .collectionInfo .collectionPrice .priceContainer .priceRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-left: 4px;
}

@media only screen and (max-width: 767px) {
  .collectionContainer .collectionInfo .collectionPrice .priceContainer .priceRight {
    margin-left: 0;
  }
}

.collectionContainer .collectionInfo .collectionPrice .priceContainer .priceRight .priceLast {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Roboto-Bold";
}

.collectionContainer .collectionInfo .collectionPrice .priceContainer .priceRight .priceTitle {
  color: #fff;
  font-size: 9px;
  line-height: 9px;
  font-family: "Roboto-Bold";
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .collectionContainer .collectionInfo .collectionPrice .priceContainer .priceRight .priceTitle {
    color: #fff;
    margin-top: 6px;
  }
}

.collectionContainer .collectionInfo .collectionFile {
  color: #fff;
  font-size: 24px;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .collectionContainer .collectionInfo .collectionFile {
    color: #fff;
    margin-left: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .collectionContainer .collectionInfo .collectionFile:hover {
    color: #181617;
  }
}

.collectionDate {
  display: block;
  margin-bottom: 16px;
  font-family: "Roboto-Regular";
  color: #ea6151;
}

.heroImage figure {
  aspect-ratio: 80/47;
}

.questions {
  margin-top: 60px;
}

.questions .questionContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 30px;
}

.questions .questionContainer .questionHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 0 12px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.questions .questionContainer .questionHeader .questionIcon {
  font-size: 16px;
  line-height: 0;
  margin-right: 16px;
}

.questions .questionContainer .questionHeader .questionIcon.active:before {
  content: '\E907';
}

.questions .questionContainer .questionHeader .questionTitle {
  font-size: 18px;
  font-family: "Roboto-Regular";
  color: #74716c;
}

@media only screen and (max-width: 767px) {
  .questions .questionContainer .questionHeader .questionTitle {
    font-size: 16px;
    line-height: 26px;
  }
}

.questions .questionContainer .questionContent {
  padding: 20px 0;
  display: none;
}

.filtersContainer {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .filtersContainer {
    max-width: calc(100% - 80px);
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1230px) {
  .filtersContainer {
    max-width: calc(100% - 80px);
  }
}

@media only screen and (min-width: 1230px) and (max-width: 1440px) {
  .filtersContainer {
    max-width: calc(100% - 80px);
  }
}

.filtersContainer .filtersForm {
  margin-bottom: 40px;
  padding: 0 16px;
}

.filtersContainer .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #181617 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .filtersContainer .filters {
    display: none;
  }
}

.filtersContainer .filters li {
  margin-right: 20px;
}

.filtersContainer .filters li a {
  color: #a1a1a1;
  font-family: "Roboto-Light";
  font-size: 20px;
  line-height: 24px;
  padding: 0 6px 4px;
  border-bottom: 2px solid transparent;
}

.darkMode .filtersContainer .filters li a {
  color: #fff;
}

.filtersContainer .filters li a.current {
  border-color: #ea6151;
  color: #181617;
}

.darkMode .filtersContainer .filters li a.current {
  color: #ea6151;
}

@media (hover: hover) and (pointer: fine) {
  .filtersContainer .filters li a.current:hover {
    color: #181617;
  }

  .darkMode .filtersContainer .filters li a.current:hover {
    color: #ea6151;
  }
}

@media (hover: hover) and (pointer: fine) {
  .filtersContainer .filters li a:hover {
    color: #181617;
  }

  .darkMode .filtersContainer .filters li a:hover {
    color: #ea6151;
  }
}

.filtersContainer ::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.filtersContainer ::-webkit-scrollbar-track {
  opacity: 0;
  display: none;
}

.filtersContainer ::-webkit-scrollbar-thumb {
  background-color: #181617;
}

.homeSlider {
  height: auto;
  min-height: calc(100vh - 94px);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .homeSlider {
    min-height: calc(100vh - 84px);
  }
}

@media only screen and (max-width: 1024px) {
  .homeSlider {
    min-height: 0;
  }
}

.homeSlider__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 1024px) {
  .homeSlider__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.homeSlider__box {
  --mainColor: #fff;
  min-width: 0;
  width: 100%;
  position: relative;
  height: calc(100vh - 94px);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .homeSlider__box {
    height: calc(100vh - 84px);
  }
}

@media only screen and (max-width: 1024px) {
  .homeSlider__box {
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .homeSlider__box {
    height: calc(var(--vh, 100vh) - 124px);
  }
}

@media only screen and (max-width: 480px) {
  .homeSlider__box:nth-child(2),
  .homeSlider__box:nth-child(3),
  .homeSlider__box:nth-child(4),
  .homeSlider__box:nth-child(5),
  .homeSlider__box:nth-child(6) {
    height: calc(100vh - 50px);
  }
}

.homeSlider__box--dark {
  --mainColor: #181617;
}

@media (hover: hover) and (pointer: fine) {
  .homeSlider__box:hover .homeSlider__button span {
    padding-left: 8px;
  }
}

.homeSlider__image {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .homeSlider__image {
    aspect-ratio: 600/750;
  }
}

.homeSlider__image picture,
.homeSlider__image img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .homeSlider__image picture,
  .homeSlider__image img {
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .homeSlider__image picture,
  .homeSlider__image img {
    height: 100%;
  }
}

.homeSlider__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.homeSlider__content {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--mainColor);
  overflow-y: auto;
  gap: 40px;
}

@media only screen and (max-width: 480px) {
  .homeSlider__content {
    padding: 20px;
  }
}

.homeSlider__box--overlay .homeSlider__content {
  background-color: rgba(24, 22, 23, 0.5);
}

.homeSlider__contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  height: 100%;
}

.homeSlider__description {
  --fontSize: 48px;
  --fontSizeTablet: 40px;
  --fontSizeMobile: 32px;
  font-size: 22px;
  color: var(--mainColor);
  line-height: 1.4;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 480px) {
  .homeSlider__description {
    font-size: 18px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .homeSlider__description:hover {
    color: var(--mainColor);
  }
}

.homeSlider__description--large {
  --fontSize: 80px;
  --fontSizeTablet: 64px;
  --fontSizeMobile: 48px;
}

.homeSlider__description--small {
  --fontSize: 32px;
  --fontSizeTablet: 24px;
  --fontSizeMobile: 20px;
}

.homeSlider__description.topPosition {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.homeSlider__description.centerPosition {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homeSlider__description.bottomPosition {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.homeSlider__description p {
  font-size: 22px;
  color: var(--mainColor);
  line-height: 1.4;
}

@media only screen and (max-width: 480px) {
  .homeSlider__description p {
    font-size: 18px;
  }
}

.homeSlider__description h1,
.homeSlider__description h2,
.homeSlider__description h3,
.homeSlider__description h4,
.homeSlider__description h5,
.homeSlider__description h6 {
  margin: 0;
  font-family: "Roboto-Bold";
  font-size: var(--fontSize);
  color: var(--mainColor);
  line-height: 1.4;
}

@media only screen and (min-width: 1025px) and (max-width: 1230px) {
  .homeSlider__description h1,
  .homeSlider__description h2,
  .homeSlider__description h3,
  .homeSlider__description h4,
  .homeSlider__description h5,
  .homeSlider__description h6 {
    font-size: var(--fontSizeTablet);
  }
}

@media only screen and (max-width: 480px) {
  .homeSlider__description h1,
  .homeSlider__description h2,
  .homeSlider__description h3,
  .homeSlider__description h4,
  .homeSlider__description h5,
  .homeSlider__description h6 {
    font-size: var(--fontSizeMobile);
  }
}

.homeSlider__description:is(a):before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.homeSlider__button {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Roboto-Medium";
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

@media only screen and (max-width: 480px) {
  .homeSlider__button {
    font-size: 16px;
  }
}

.homeSlider__button span {
  font-size: 30px;
  line-height: 1;
  left: 0;
  -webkit-transition: padding-left 300ms ease;
  transition: padding-left 300ms ease;
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 480px) {
  .homeSlider__button span {
    font-size: 24px;
  }
}

.popup {
  --closeOffset: 104px;
}

@media only screen and (max-width: 1024px) {
  .popup {
    --closeOffset: 94px;
  }
}

@media only screen and (max-width: 767px) {
  .popup {
    --closeOffset: 84px;
  }
}

.popup__container {
  width: 100%;
  padding: 0 40px;
}

@media only screen and (max-width: 767px) {
  .popup__container {
    padding: 0;
  }
}

.popup__container--small {
  max-width: 1120px;
  margin: 0 auto;
}

.popup__title {
  margin-block: 40px;
  text-align: center;
}

.darkMode .popup__title {
  color: #fff;
}

.popup__close {
  position: -webkit-sticky;
  position: sticky;
  top: var(--closeOffset);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 10px;
  -webkit-transition: top 300ms ease;
  transition: top 300ms ease;
  z-index: 20;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .withStickyHeader.withHiddenHeader .popup__close {
    --closeOffset: 10px;
  }
}

.popup__button {
  margin-left: auto;
  width: 48px;
  height: 48px;
  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: 28px;
  line-height: 1;
  border-radius: 90px;
  color: #fff;
  background-color: #ea6151;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  pointer-events: all;
}

@media (hover: hover) and (pointer: fine) {
  .popup__button:hover {
    background-color: #181617;
  }
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.popup--noHeading .popup__content {
  margin-top: -48px;
}

@media only screen and (max-width: 1024px) {
  .popup--noHeading .popup__content {
    margin-top: -48px;
  }
}

.galleryGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.galleryGrid figure {
  aspect-ratio: 600/750;
}

.galleryGrid > figure,
.galleryGrid .cardCol {
  width: 50%;
}

@media only screen and (max-width: 480px) {
  .galleryGrid > figure,
  .galleryGrid .cardCol {
    width: 100%;
  }
}

.cardCol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}

.cardCol__content {
  padding: 40px;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .cardCol__content {
    padding-inline: 20px;
  }
}

.cardCol__content:before {
  content: '';
  width: 200vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .cardCol__content:before {
    content: unset;
  }
}

.textContainer {
  background-color: #fff;
  padding: 40px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .textContainer {
    padding-inline: 20px;
  }
}

.textContainer ul {
  padding-left: 30px;
}

.textContainer ul li {
  list-style: disc;
  font-size: 18px;
  line-height: 32px;
  font-family: "Roboto-Light";
  border-left: 1px solid #ea6151;
  padding-left: 7px;
}

.textContainer .tagsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-block: 24px;
}

@media only screen and (max-width: 480px) {
  .textContainer .tagsContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.textContainer .tagsTitle {
  color: #fff;
  font-size: 18px;
  font-family: "Roboto-Medium";
}

.textContainer .articleTags {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.textContainer .articleTags li {
  padding: 0;
  list-style: none;
  border: none;
  font-size: 14px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.textContainer .articleTags li a {
  color: #fff;
  background-color: #ea6151;
  padding: 6px 8px;
  border-radius: 3px;
  font-family: "Roboto-Regular";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: color 300ms ease, background-color 300ms ease;
  transition: color 300ms ease, background-color 300ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .textContainer .articleTags li a:hover {
    background-color: #fff;
    color: #181617;
  }
}

.textContainer .articleTags li a:before {
  content: '# ';
}

.textContainer.dark {
  background-color: transparent;
  color: #fff;
}

.textContainer.dark:before {
  content: unset;
}

.textContainer.dark h1,
.textContainer.dark h2,
.textContainer.dark h3,
.textContainer.dark h4,
.textContainer.dark h5,
.textContainer.dark h6,
.textContainer.dark p,
.textContainer.dark a,
.textContainer.dark .linkButton {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .textContainer.dark .linkButton:hover,
  .textContainer.dark a:hover {
    color: #ea6151;
  }
}

.textContainer:before {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .textContainer:before {
    content: unset;
  }
}

.textContainer h1,
.textContainer h2,
.textContainer h3,
.textContainer h4,
.textContainer h5,
.textContainer h6 {
  margin-bottom: 24px;
}

.textContainer h2,
.textContainer h3,
.textContainer h4,
.textContainer h5,
.textContainer h6 {
  font-size: 24px;
  line-height: 42px;
}

@media only screen and (max-width: 767px) {
  .textContainer h2,
  .textContainer h3,
  .textContainer h4,
  .textContainer h5,
  .textContainer h6 {
    font-size: 22px;
    line-height: 40px;
  }
}

.textContainer img {
  height: auto;
}

.textContainer table {
  margin-bottom: 40px;
  border-spacing: 0;
  border: none;
}

.textContainer table td {
  border: none;
  padding: 16px 8px;
  border-bottom: 1px solid #a1a1a1;
}

.collectionTitle {
  margin-bottom: 40px;
}

.designerInfo {
  font-size: 18px;
  font-family: "Roboto-Regular";
  margin-bottom: 10px;
  width: 100%;
  display: block;
  text-align: center;
}

.designerTitle {
  color: #181617;
  font-size: 18px;
  font-family: "Roboto-Regular";
  display: inline-block;
  margin-bottom: 40px;
}

.designerTitle:hover,
.designerTitle:focus {
  color: #ea6151;
}

.featuredTitle {
  font-size: 22px;
  font-family: "Roboto-Regular";
  color: #181617;
  display: block;
  margin-bottom: 24px;
}

.specialTitle {
  display: block;
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 22px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .specialTitle {
    font-size: 18px;
    line-height: 28px;
  }
}

.specialTitle:before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #ea6151;
  position: absolute;
  top: -20px;
  left: 0;
}

.specsContent ol {
  padding-left: 30px;
}

.specsContent ol li {
  list-style: outside decimal-leading-zero;
  font-size: 18px;
  font-family: "Roboto-Light";
  border-left: 1px solid #ea6151;
  padding-left: 7px;
  line-height: 34px;
}

@media only screen and (max-width: 767px) {
  .specsContent ol li {
    font-size: 16px;
    line-height: 28px;
  }
}

#topImageLarge {
  height: calc(100vh - 94px);
}

@media only screen and (max-width: 767px) {
  #topImageLarge {
    height: calc(100vh - 114px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #topImageLarge {
    height: calc(100vh - 84px);
  }
}

#topImageLarge img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#topImageLarge .imageTitle {
  color: #fff;
  font-family: "Roboto-Regular";
  font-size: 38px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  width: 80%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  #topImageLarge .imageTitle {
    font-size: 30px;
    width: 100%;
    padding: 0 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #topImageLarge .imageTitle {
    font-size: 38px;
  }
}

#about h2 {
  display: block;
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 22px;
  margin-bottom: 30px;
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  #about h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 767px) {
  #about h2 {
    margin-top: 60px;
  }
}

#about h2:before {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #ea6151;
  position: absolute;
  top: -20px;
  left: 0;
}

#about .rowDesigners {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  #about .rowDesigners {
    margin-bottom: 0;
  }
}

#about .rowDesigners .designerImage {
  display: block;
}

#about .rowDesigners .designerImage img {
  width: 100%;
  height: auto;
}

#about .rowDesigners .designerName {
  font-size: 22px;
  font-family: "Roboto-Light";
  width: 100%;
  display: block;
  margin: 20px 0 10px;
  color: #181617;
}

#about .rowDesigners .designerName:hover,
#about .rowDesigners .designerName:focus {
  color: #ea6151;
}

#about .rowDesigners .designerSpecialty {
  width: 100%;
  display: block;
  color: #a1a1a1;
  font-size: 18px;
  font-family: "Roboto-Light";
}

@media only screen and (max-width: 767px) {
  #about .rowDesigners .designerSpecialty {
    margin-bottom: 50px;
  }
}

.singleContent {
  margin-bottom: 60px;
}

.singleContent img {
  height: auto;
}

.notFound {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: calc(100dvh - 94px);
  padding: 40px;
  gap: 40px;
}

.notFound__title {
  font-family: "Roboto-Bold";
  font-size: 100px;
  letter-spacing: 2px;
  color: #181617;
  line-height: 1;
}

.notFound__subtitle {
  font-size: 20px;
  line-height: 1;
}

.itemSpecs {
  width: 50%;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .itemSpecs {
    width: 100%;
    padding-inline: 20px;
  }
}

.itemSpecs--full {
  width: 100%;
  max-width: 800px;
}

@media only screen and (max-width: 767px) {
  .itemSpecs + .itemSpecs {
    padding-top: 0;
  }
}

.itemSpecs .itemSpecsTitle {
  font-family: "Roboto-Regular";
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
}

.darkMode .itemSpecs .itemSpecsTitle {
  color: #fff;
}

.itemSpecs .specsTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.itemSpecs .specsTable .specRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin: 15px 0;
}

.itemSpecs .specsTable .specRow .specMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.itemSpecs .specsTable .specRow .specMain .specName {
  font-size: 18px;
  font-family: "Roboto-Light";
}

.darkMode .itemSpecs .specsTable .specRow .specMain .specName {
  color: #fff;
}

.itemSpecs .specsTable .specRow .specBar {
  display: block;
  position: relative;
  width: 100%;
  height: 22px;
  background-color: #e8e8e8;
  border-radius: 3px;
}

.darkMode .itemSpecs .specsTable .specRow .specBar {
  background-color: #fff;
}

.itemSpecs .specsTable .specRow .specBar .specPercentageBar {
  position: absolute;
  z-index: 2;
  background-color: #ea6151;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  font-size: 13px;
  font-family: "Roboto-Bold";
  line-height: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 3px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.offer h2,
.offer h3 {
  display: block;
  position: relative;
  font-family: "Roboto-Regular";
  font-size: 22px;
  margin-bottom: 0;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .offer h2,
  .offer h3 {
    font-size: 18px;
    line-height: 28px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .offer h3 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.contact .colContactInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact .colContactInfo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
}

.contact .addressContent {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .contact .addressContent {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact .addressContent:first-child {
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact .addressContent:last-child {
    padding-left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .contact .contactName {
    margin-top: 10px;
    display: block;
  }
}

.contact .contactList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.contact .contactList li {
  margin: 8px 0;
}

.contact .contactList li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #74716c;
  font-family: "Roboto-Light";
  font-size: 18px;
  line-height: 32px;
}

.contact .contactList li a span:not(.contactText) {
  color: #ea6151;
  font-size: 18px;
  line-height: 0;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  top: 2px;
}

.contact .contactList li a:hover,
.contact .contactList li a:focus {
  color: #181617;
}

#map {
  height: 60vh;
  width: 100%;
}

section#canvas {
  height: 100%;
  position: relative;
}

.scrolloff {
  pointer-events: none;
}

.gm-style-iw {
  max-width: 300px;
}

.gm-style-iw * {
  display: block;
  width: 100%;
}

.gm-style-iw h4,
.gm-style-iw p {
  margin: 0;
  padding: 0;
}

.gm-style-iw a {
  color: #74716c;
}

.info_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.info_content h4 {
  font-size: 14px;
  line-height: 24px;
  font-family: "Roboto-Regular";
  margin-bottom: 10px;
}

.info_content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 12px;
  color: #74716c;
  line-height: 20px;
  font-family: "Roboto-Light";
}

.info_content span i {
  color: #ea6151;
  font-size: 14px;
  margin-right: 0;
  margin-left: 2px;
  width: 20px;
  position: relative;
  top: 2px;
}

.designerCol {
  width: 50%;
  padding: 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;
}

@media only screen and (max-width: 480px) {
  .designerCol {
    width: 100%;
    padding-inline: 20px;
  }
}

.designer .singleContent {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .designer .singleContent {
    margin-top: 30px;
  }
}

.designer .designerPohoto {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .designer .designerPohoto {
    margin-bottom: 30px;
  }
}

.designer h2 {
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .designer h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

.darkMode .designer h2 {
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .designer .designerName {
    display: none;
  }
}

.designer .designerContactList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.designer .designerContactList li {
  margin: 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}

.designer .designerContactList li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #74716c;
  font-family: "Roboto-Light";
  font-size: 16px;
  line-height: 28px;
}

.darkMode .designer .designerContactList li a {
  color: #fff;
}

.designer .designerContactList li a span:not(.contactText) {
  color: #ea6151;
  font-size: 18px;
  line-height: 0;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  top: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .designer .designerContactList li a:hover {
    color: #181617;
  }

  .darkMode .designer .designerContactList li a:hover {
    color: #ea6151;
  }
}

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

.designer .designerPortfolio .designerGallery {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 50%;
  height: auto;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .designer .designerPortfolio .designerGallery {
    max-width: 100%;
  }
}

.designer .designerPortfolio .designerGallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-height: 0;
}

.wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
}

.wrapper--medium {
  max-width: 1200px;
}

.wrapper--small {
  max-width: 900px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 20px;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .row--noGutter {
    margin: 0;
  }
}

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.col-xs-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 0;
}

.col-xs-offset-1 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 25%;
}

.col-xs-offset-4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 50%;
}

.col-xs-offset-7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 75%;
}

.col-xs-offset-10 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 91.66666667%;
}

.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

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

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
    margin: 0 auto;
  }

  .col-sm {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-sm-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 0;
  }

  .col-sm-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.66666667%;
  }

  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

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

  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
    margin: 0 auto;
  }

  .col-md {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-md-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 0;
  }

  .col-md-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-md-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-md-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-md-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.66666667%;
  }

  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-md {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

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

  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
    margin: 0 auto;
  }

  .col-lg {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .col-lg-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 0;
  }

  .col-lg-offset-1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.66666667%;
  }

  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

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

  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Roboto-Light";
  color: #74716c;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

@media only screen and (max-width: 767px) {
  body {
    padding-bottom: 50px;
  }
}

body.noScroll {
  overflow: hidden;
}

body.darkMode {
  background-color: #181617;
}

body.darkMode .description,
body.darkMode .subtitle,
body.darkMode .subtitle p {
  color: #fff;
}

body.darkMode.results .description strong {
  color: #fff;
}

body.results .description strong {
  color: #181617;
}

body.company #bottomIcons {
  display: none;
}

body a {
  color: #181617;
  text-decoration: none;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body a:hover {
    color: #181617;
  }
}

body p {
  font-family: "Roboto-Light";
  color: #74716c;
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 24px;
}

body p:last-child {
  margin-bottom: 0;
}

body p a {
  text-decoration: underline;
  color: #74716c;
}

@media (hover: hover) and (pointer: fine) {
  body p a:hover {
    color: #ea6151;
  }
}

body label a {
  text-decoration: underline;
  color: #74716c;
}

@media (hover: hover) and (pointer: fine) {
  body label a:hover {
    color: #ea6151;
  }
}

body strong {
  font-family: "Roboto-Medium";
  font-weight: normal;
}

body .lg-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

body .slick-slider {
  touch-action: auto !important;
  -ms-touch-action: auto !important;
}

body .wrapper {
  width: 100%;
}

body .mobileOnly {
  display: none;
}

@media only screen and (max-width: 767px) {
  body .mobileOnly {
    display: block;
  }
}

body .desktopOnly {
  display: block;
}

@media only screen and (max-width: 767px) {
  body .desktopOnly {
    display: none;
  }
}

body .withPadding {
  padding: 0 80px;
}

@media only screen and (max-width: 767px) {
  body .withPadding {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body .withPadding {
    padding: 0 40px;
  }
}

body .parentPadding {
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  body .parentPadding {
    padding: 40px 0;
  }
}

body .parentPaddingLarge {
  padding: 150px 0;
}

@media only screen and (max-width: 767px) {
  body .parentPaddingLarge {
    padding: 80px 0;
  }
}

body .parentPadding-120 {
  padding: 120px 0;
}

@media only screen and (max-width: 767px) {
  body .parentPadding-120 {
    padding: 80px 0;
  }
}

body .parentPaddingLargeTop {
  padding: 150px 0 0;
}

@media only screen and (max-width: 767px) {
  body .parentPaddingLargeTop {
    padding: 80px 0 0;
  }
}

body .parentTopPadding {
  padding-top: 80px;
}

@media only screen and (max-width: 767px) {
  body .parentTopPadding {
    padding-top: 40px;
  }
}

body .parentBottomPadding {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  body .parentBottomPadding {
    padding-bottom: 40px;
  }
}

body .hidden {
  display: none !important;
}

body .marginTop {
  margin-top: 20px;
}

body .marginTop-80 {
  margin-top: 80px;
}

body .marginTop-30 {
  margin-top: 30px;
}

body .marginBottom-80 {
  margin-bottom: 80px;
}

body .marginBottom-30 {
  margin-bottom: 30px;
}

body .relativeBox {
  position: relative;
}

body .marginTopLarge {
  margin-top: 40px;
}

body ul {
  padding-left: 0;
  list-style-type: none;
}

body ol {
  padding-left: 30px;
}

body ol li {
  list-style: outside decimal-leading-zero;
  font-size: 18px;
  line-height: 32px;
  font-family: "Roboto-Light";
  border-left: 1px solid #ea6151;
  padding-left: 7px;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Roboto-Regular";
  font-size: 30px;
  line-height: 50px;
  font-weight: 300;
  margin: 0;
  color: #181617;
}

@media only screen and (max-width: 767px) {
  body h1,
  body h2,
  body h3,
  body h4,
  body h5,
  body h6 {
    font-size: 22px;
    line-height: 40px;
  }
}

body h1.withoutContent,
body h2.withoutContent,
body h3.withoutContent,
body h4.withoutContent,
body h5.withoutContent,
body h6.withoutContent {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  body h1.withoutContent,
  body h2.withoutContent,
  body h3.withoutContent,
  body h4.withoutContent,
  body h5.withoutContent,
  body h6.withoutContent {
    margin-bottom: 30px;
  }
}

body h1.smallTitle,
body h2.smallTitle,
body h3.smallTitle,
body h4.smallTitle,
body h5.smallTitle,
body h6.smallTitle {
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  body h1.smallTitle,
  body h2.smallTitle,
  body h3.smallTitle,
  body h4.smallTitle,
  body h5.smallTitle,
  body h6.smallTitle {
    font-size: 18px;
    line-height: 28px;
  }
}

body h1 + .description,
body h2 + .description,
body h3 + .description,
body h4 + .description,
body h5 + .description,
body h6 + .description {
  margin-top: 10px;
}

body .centerAlign {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .textCenter {
  text-align: center;
}

body .textCapital {
  text-transform: uppercase;
}

body .subtitle {
  font-size: 18px;
  line-height: 26px;
  font-family: "Roboto-Light";
  display: block;
  margin-bottom: 10px;
}

body .subtitle p {
  font-size: 20px;
  font-family: "Roboto-Light";
}

@media only screen and (max-width: 767px) {
  body .subtitle p {
    font-size: 18px;
  }
}

body .description {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  body .description {
    margin-bottom: 40px;
  }
}

.linkButton {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-family: "Roboto-Regular";
  margin-top: 40px;
}

@media (hover: hover) and (pointer: fine) {
  .linkButton:hover {
    color: #ea6151;
  }
}

.linkButton span {
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: -1px;
}

.darkMode .headerContent h1,
.darkMode
.headerContent .subtitle,
.darkMode
.headerContent p {
  color: #fff;
}

.wMargin {
  margin-bottom: 32px;
}

.wMarginBlock {
  margin-block: 40px;
}

.darkMode .heading {
  color: #fff;
}

figure {
  background-color: #fafafa;
}

.darkMode figure {
  background-color: #74716c;
}

figure,
picture {
  margin: 0;
  padding: 0;
  display: block;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.heightAuto img {
  height: auto !important;
  max-height: calc(100vh - 94px);
  min-height: 600px !important;
}

@media only screen and (max-width: 767px) {
  .heightAuto img {
    height: calc(100vh - 40px) !important;
    max-height: none;
    min-height: 0 !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .heightAuto img {
    height: calc(100vh - 84px) !important;
    max-height: none;
    min-height: 0 !important;
  }
}

.colCentered {
  margin: auto;
}

.colRight {
  margin-left: auto;
}

.colReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .colReverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.mobShow {
  display: none;
}

@media only screen and (max-width: 480px) {
  .mobShow {
    display: block;
  }
}

.turbolinks-progress-bar {
  background-color: transparent;
}

.b-lazy {
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  max-width: 100%;
  opacity: 0;
}

.b-lazy.b-loaded {
  opacity: 1;
}

