/* -------------- */
/* SETUP */
/* DESKTOP */
/* MINI-DESKTOP */
/* TABLET */
/* MOBILE */
/* MINI-MOBILE */
/* SPECIAL BREAKPOINTS */
/* -------------- */

/* SETUP //////////////////////////////////////////////////////////////// */

:root {
  /* ***** Colors */

  /* --- Default */
  --color__dark: #000000;
  --color__light: #ffffff;
  --color__lightOpac: rgba(255, 255, 255, 0.5);
  --color__lightTrans: rgba(255, 255, 255, 0.1);

  /* --- Corporate */
  --color__primary: #c4133c;
  --color__primaryDark: #7f000c;
  --color__primaryDarkOff: rgba(127, 0, 12, 0.7);
  --color__primaryOpac: rgb(196 19 60 / 7%);
  --color__primaryOff: rgba(195, 19, 60, 0.7);
  --color__secondary: #ff9c1a;
  --color__accent: #70057f;

  /* --- System */
  --color__success: #00871b;
  --color__warning: #fea137;
  --color__error: #cd0000;

  /* ***** Font Sizes */
  --fsize__h1--xxl: min(15.5rem, 15vw);
  --fsize__h1--xl: 8.5rem;
  --fsize__h1: 4.5rem;
  --fsize__h2: 2.625rem;
  --fsize__h3: 1.625rem;
  --fsize__h4: 1.625rem;
  --fsize__h5: 1.625rem;
  --fsize__h6: 1.625rem;
  --fsize__p: 1.0625rem;
  --fsize__s: 0.825rem;

  /* ***** Icon Sizes */
  --isize__small: 1.75rem;
  --isize__regular: 2.375rem;
  --isize__large: 4rem;

  /* ***** Borders */

  --border__small: 0.0625em solid var(--color__primary);
  --border__small--light: 0.0625em solid var(--color__light);
  --border__regular: 0.125em solid var(--color__primary);
  --border__regular--light: 0.125em solid var(--color__primary);
  --border__large: 0.25em solid var(--color__primary);
  --border__large--light: 0.25em solid var(--color__primary);

  /* ***** Radiuses */

  --radius__small: 1.875em;
  --radius__regular: 2.875rem;
  --radius__large: 5em;

  /* ***** Scrollbar */
  --scrollbar-width: 17px;
  /* Adjust as needed */
}

/* This media query targets devices that don't have a hover state, which typically includes touch devices */
@media (hover: none) {
  :root {
    --scrollbar-width: 0px;
    /* On these devices, the scrollbar width is set to 0px */
  }
}

/* FONTS – LICENSED TO Aviva *******************************************************************************/

@font-face {
  font-family: "Good Sans Bold";
  src: url("/wp-content/themes/oho/font/GoodSans-Bold.woff2") format("woff2"),
    url("/wp-content/themes/oho/font/GoodSans-Bold.woff") format("woff"),
    url("/wp-content/themes/oho/font/GoodSans-Bold.eot") format("embedded-opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

@font-face {
  font-family: "Good Sans Light";
  src: url("/wp-content/themes/oho/font/GoodSans-Light.woff2") format("woff2"),
    url("/wp-content/themes/oho/font/GoodSans-Light.woff") format("woff"),
    url("/wp-content/themes/oho/font/GoodSans-Light.eot") format("embedded-opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}

/****** Aviva Icons */
@font-face {
  font-family: "Aviva Icons";
  src: url("/wp-content/themes/oho/font/icon/aviva-icons.eot");
  src: url("/wp-content/themes/oho/font/icon/aviva-icons.eot?#iefix") format("embedded-opentype"),
    url("/wp-content/themes/oho/font/icon/aviva-icons.woff") format("woff"),
    url("/wp-content/themes/oho/font/icon/aviva-icons.ttf") format("truetype"),
    url("/wp-content/themes/oho/font/icon/aviva-icons.svg#aviva-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*="icon-"] {
  display: inline-block;
  margin-left: 0.5em;
  -webkit-transform: translate3d(0, 0.0625em, 0);
  transform: translate3d(0, 0.0625em, 0);
}

[class*="icon-"]:before {
  display: inline-block;
  font-family: "Aviva Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left {
  margin-left: 0;
  margin-right: 0.5em;
}

.icon-arrow-down:before {
  content: "\0041";
}

.icon-arrow-left:before {
  content: "\0042";
}

.icon-arrow-right:before {
  content: "\0043";
}

.icon-check:before {
  content: "\0044";
}

.icon-cross:before {
  content: "\0045";
}

.icon-heart:before {
  content: "\0046";
}

.icon-plus:before {
  content: "\0047";
}

.icon-lock:before {
  content: "\004c";
}

.icon-percent:before {
  content: "\004d";
}

.icon-twitter:before {
  content: "\0048";
}

.icon-linkedin:before {
  content: "\0049";
}

.icon-instagram:before {
  content: "\004a";
}

.icon-facebook:before {
  content: "\004b";
}

/* //////////////////////////////////////////////////////////////// */
html,
body {
  font-size: min(1rem, 1.12vw);
  /* ensures that browser's default font size is used as a reference for rem */
  line-height: 1.2em;
  /* ideally the same line-height that is used on p tag */
}

body {
  font-family: "Good Sans Light", sans-serif;
  font-weight: 300;
  margin: 0;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

body.primary {
  background: var(--color__primary);
}

h1,
.h1 {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  font-size: var(--fsize__h1);
  line-height: 1.125em;
  letter-spacing: 0em;
  color: var(--color__primary);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.h1--xxl {
  font-size: var(--fsize__h1--xxl);
}

.h1--xl {
  font-size: var(--fsize__h1--xl);
}

h2,
.h2 {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  font-size: var(--fsize__h2);
  line-height: 1.275em;
  letter-spacing: 0em;
  color: var(--color__primary);
  text-decoration: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h2 .vertical-line::after {
  position: relative;
  display: inline-block;
  content: "";
  width: 0.17em;
  height: 0.812em;
  background-color: var(--color__light);
  margin-left: 0.375em;
}

h3,
.h3 {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  font-size: var(--fsize__h3);
  line-height: 1.275em;
  letter-spacing: 0em;
  color: var(--color__primary);
  text-decoration: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  font-size: var(--fsize__h4);
  line-height: 1.275em;
  letter-spacing: 0em;
  color: var(--color__primary);
  text-decoration: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

p,
li,
p a,
.p,
.p a,
address {
  font-family: "Good Sans Light", sans-serif;
  font-weight: 300;
  font-size: var(--fsize__p);
  font-style: normal;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  color: var(--color__primary);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.s {
  font-family: "Good Sans Light", sans-serif;
  font-weight: 300;
  font-size: var(--fsize__s);
  line-height: 1.2em;
  letter-spacing: 0.01em;
  color: var(--color__primary);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.p.s a,
.s a {
  font-size: var(--fsize__s);
}

.fsize--marginal {
  font-size: var(--fsize__s);
}

.uppercase {
  text-transform: uppercase;
}

strong,
b {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  color: var(--color__primary);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* ––– Unordered List */

ul.plain {
  padding-left: 0;
}

ul.plain li {
  list-style: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

ul.plain li::before {
  content: none;
}

/* ***** locked wysiwyg styles to avoid different title sizes */

.wysiwyg-editor h1,
.wysiwyg-editor h2,
.wysiwyg-editor h3,
.wysiwyg-editor h4,
.wysiwyg-editor h5,
.wysiwyg-editor h6 {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  font-size: var(--fsize__h2);
  line-height: 3.75em;
  letter-spacing: 0.01em;
  color: var(--color__primary);
  text-decoration: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  overflow: visible;
}

/* LINKS / GLOBAL INTERACTIONS *******************************************************************************/

/* ***** Links */

p a:not(.no-decoration),
.p a:not(.no-decoration) {
  text-decoration: none;
  background-color: var(--color__primaryOpac);
}

p a:hover,
.p a:hover {
  cursor: pointer;
}

p a strong,
p a b,
.p a strong,
.p a b {
  font-family: "Good Sans Bold", sans-serif;
  padding: 0;
  font-weight: 700;
}

a,
a:hover {
  /* color: var(--color__primary); */
  text-decoration: none;
  cursor: pointer;
}

.fcolor--light a {
  border-bottom: var(--border__small--light);
}

.fcolor--light a:hover {
  color: var(--color__light);
}

/* ***** Buttons */

button {
  border: 0;
  background: transparent;
}

.btn,
button.btn {
  position: relative;
  display: inline-block;
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  line-height: 1em;
  color: var(--color__light);
  padding: 0.75em 1.5em;
  border: 0;
  margin-top: 0;
  cursor: pointer;
}

/* --- Inner Btn Styles */

.btn .btn__inner,
button.btn .btn__inner {
  position: relative;
}

.btn .btn__bg,
button.btn .btn__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color__primary);
  border-top-left-radius: var(--radius__regular);
  border-bottom-right-radius: var(--radius__regular);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.btn.large,
button.btn.large {
  padding: 0.375em 1em 0.475em;
}

/* --- Neg Btn */

.btn.neg .btn__bg,
button.btn.neg .btn__bg {
  background: var(--color__light);
}

.btn.neg *,
button.btn.neg * {
  color: var(--color__primary);
}

/* --- Light Btn */

.btn.light .btn__bg,
button.btn.light .btn__bg {
  background: var(--color__primaryOpac);
}

.btn.light *,
button.btn.light * {
  color: var(--color__primary);
}

/* --- Accent Btn */

.btn.btn--accent .btn__bg,
button.btn.btn--accent .btn__bg {
  background: var(--color__accent);
}

.btn.btn--accent *,
button.btn.btn--accent * {
  color: var(--color__light);
}

/* --- Active Btn */

.btn.light.fma-control-active .btn__bg,
button.btn.light.fma-control-active .btn__bg {
  background: var(--color__primary);
}

.btn.light.fma-control-active *,
button.btn.light.fma-control-active * {
  color: var(--color__light);
}

/* --- Arrow Btn */

.btn.back .icon-arrow-left,
button.btn.back .icon-arrow-left {
  margin-left: 0;
  margin-right: 0.5em;
}

/* --- Centered Button */

.centered-btn {
  width: 100%;
  text-align: center;
  margin: 1.875em 0;
}

.centered-btn .btn {
  display: inline;
}

/* ***** Default Interactions */

::-moz-selection,
.bg--light ::-moz-selection {
  background: var(--color__primary);
  color: var(--color__light);
}

::-moz-selection,
.bg--light ::-moz-selection {
  background: var(--color__primary);
  color: var(--color__light);
}

::selection,
.bg--light ::selection {
  background: var(--color__primary);
  color: var(--color__light);
}

.bg--primary ::-moz-selection {
  background: var(--color__light);
  color: var(--color__primary);
}

.bg--primary ::selection {
  background: var(--color__light);
  color: var(--color__primary);
}

.bg--accent ::-moz-selection {
  background: var(--color__light);
  color: var(--color__accent);
}

.bg--accent ::selection {
  background: var(--color__light);
  color: var(--color__accent);
}

*:focus {
  outline: none;
  /* background-color: var(--color__primary) !important;
  color: var(--color__light);
  mix-blend-mode: difference; */
}

a:focus-visible {
  opacity: 0.7;
}

a:focus-visible .covered-image-wrap::after,
a:focus-visible .contained-image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: var(--color__primary);
}

.swiper-button-next:focus-visible:after,
.swiper-button-prev:focus-visible:after {
  border: 0.0625rem solid var(--color__light);
  padding: 0.25em;
  background: var(--color__primary);
}

.swiper-pagination-bullet:focus-visible {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/****** Lazy Loading */

/* Before Lazy Load */
img[data-lazyloaded] {
  opacity: 0;
}

/* Upon Lazy Load */
img.litespeed-loaded {
  -webkit-transition: opacity 0.25s linear 0.2s;
  -moz-transition: opacity 0.25s linear 0.2s;
  transition: opacity 0.25s linear 0.2s;
  opacity: 1;
}

/* MISC *******************************************************************************/

/* DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

/*
-----------------------------------------------------------------------------

01. Presets

-----------------------------------------------------------------------------
*/

/* LAYOUT *******************************************************************************/

main {
  position: relative;
  overflow: hidden;
}

.main__inner {
  /* margin-top: 6em; */
  /* Space to Navigation */
}

body.home .main__inner {
  margin-top: 0;
}

.sec-wrap {
  width: 100%;
  height: auto;
  position: relative;
}

.sec-wrap__inner {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100em;
  margin: auto;
  padding: 5em 3.5em;
}

.sec-wrap__inner.pt0 {
  padding-top: 0;
}

.sec-wrap__inner.pb0 {
  padding-bottom: 0;
}

.sec-wrap__inner.py0 {
  padding-top: 0;
  padding-bottom: 0;
}

.sec-wrap__inner.px0 {
  padding-left: 0;
  padding-right: 0;
}

.sec-wrap__inner.pxy0 {
  padding: 0;
}

.sec-wrap__inner.full {
  max-width: 100%;
}

.sec-wrap__inner.slim {
  max-width: 62.5em;
}

.sec-wrap__inner.slimmer {
  max-width: 50em;
}

.sec-wrap__inner.slim-af {
  max-width: 35em;
}

/* --- Section Background */

.sec-wrap.with-bg {
  min-height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sec-wrap__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-wrap__bg .covered-image-wrap {
  min-height: 50rem;
}

.sec-wrap__bg.full .covered-image-wrap::after {
  width: 100%;
}

.sec-wrap__bg .covered-image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 1))
  );
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
}

.sec-wrap__bg.gradient--primaryDark .covered-image-wrap::after {
  background: rgb(127, 0, 12);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(127, 0, 12, 0)),
    to(rgba(127, 0, 12, 1))
  );
  background: -o-linear-gradient(top, rgba(127, 0, 12, 0) 0%, rgba(127, 0, 12, 1) 100%);
  background: linear-gradient(180deg, rgba(127, 0, 12, 0) 0%, rgba(127, 0, 12, 1) 100%);
}

/* ***** Text columns */

.text-2-columns {
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  column-gap: 1.875em;
  -webkit-column-gap: 1.875em;
  -moz-column-gap: 1.875em;
  -ms-column-gap: 1.875em;
  margin: 1.875em 0;
}

.text-3-columns {
  column-count: 3;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  column-gap: 2em;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  -ms-column-gap: 2em;
}

/* ***** Text overflow */

.nobreak {
  white-space: nowrap;
}

.shorten {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Centered Text */

.centered-text,
.centered-text * {
  text-align: center;
}

/* ***** Centered image */

.centered-image-wrap {
  width: 100%;
  margin: auto;
  height: 28em;
  position: relative;
  overflow: hidden;
  /* fallback for bg-img usage */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.centered-image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centered-image-wrap.full img {
  width: 100%;
}

/* ***** Covered image wrap */

.covered-image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.covered-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ***** Contained image wrap */

.contained-image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.contained-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/**** ie-browser fixes */

.browser-ie .covered-image-wrap,
.browser-edge .covered-image-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ***** Vertical centered */

.centered--vertical {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ***** Scroll Pinned */

.scroll-pinned-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.scroll-pinned {
  position: relative;
  height: auto;
}

/* ***** Reveal Texts */

.text--reveal {
  visibility: hidden;
}

/*
-----------------------------------------------------------------------------

02. Footer

-----------------------------------------------------------------------------
*/

.footer-wrap {
  position: relative;
  z-index: 99;
  width: 100%;
  height: auto;
  color: var(--color__primary);
}

.footer-wrap__inner {
  padding: 2.5em;
}

.footer-wrap a,
.footer-wrap a:hover {
  color: var(--color__primary);
}

.footer-wrap ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-wrap li {
  font-family: "Good Sans Bold", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5em;
}

.footer-wrap .socials a {
  font-size: 1.25rem;
}

.footer-wrap .socials [class*="icon-"] {
  margin-left: 0;
  margin-right: 0.75em;
}

/* ***** Embedded Newsletter Form */

.footer-wrap .newsletter-form {
  position: relative;
  width: 25rem;
}

.footer-wrap .newsletter-form h2 {
  font-size: var(--fsize__p);
  text-align: left !important;
}

.footer-wrap .newsletter-form input[type="email"] {
  font-size: var(--fsize__p);
  border: 0 !important;
  color: var(--color__primary);
  background-color: var(--color__primaryOpac);
  margin-top: 0.5em;
  padding: 0.75em 0.9375em !important;
}

/* --- Placeholders */

.footer-wrap .newsletter-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: transparent;
}

.footer-wrap .newsletter-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
}

.footer-wrap .newsletter-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
}

.footer-wrap .newsletter-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: transparent;
}

/* --- Submit Btn */

.footer-wrap .newsletter-form button[type="submit"] {
  position: relative;
  font-family: "GT Eesti Display Medium", sans-serif;
  font-weight: 500;
  font-size: var(--fsize__p) !important;
  background: transparent !important;
  color: var(--color__primary) !important;
  border-radius: 0 !important;
  padding: 0.625em 1em 0.5em !important;
  border: 0 !important;
  margin: 0 !important;
  display: inline-block;
  cursor: pointer;
  width: auto !important;
  min-width: unset !important;
  text-indent: -9999px;
  /* Add this line */
  overflow: hidden;
  /* Add this line */
  float: right;
  -webkit-transform: translate3d(0, -110%, 0);
  transform: translate3d(0, -110%, 0);
}

.footer-wrap .newsletter-form button[type="submit"]::after {
  font-family: "Aviva Icons";
  content: "\0043";
  position: absolute;
  /* Add this line */
  text-indent: 0;
  /* Add this line */
  top: 50%;
  /* Add this line */
  left: 50%;
  /* Add this line */
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* Add this line */
}

/* LARGE-DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

@media only screen and (max-width: 100em) {
  .sec-wrap__inner {
    padding: 4.5em 3em;
  }
}

/* MINI-DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

@media only screen and (max-width: 80em) {
  /*
  -----------------------------------------------------------------------------

  01. Presets

  -----------------------------------------------------------------------------
  */

  /* MISC *******************************************************************************/

  html,
  body {
    font-size: min(1rem, 1.5vw);
  }

  :root {
    /* ***** Font Sizes */
    --fsize__h1--xxl: min(14rem, 17vw);
    --fsize__h1: 4rem;
    --fsize__h2: 2.325rem;
    --fsize__h3: 1.375rem;
    --fsize__h4: 1.375rem;
    --fsize__h5: 1.375rem;
    --fsize__h6: 1.375rem;
    --fsize__p: 1rem;
    --fsize__s: 0.825rem;
  }

  .sec-wrap__inner {
    padding: 3.5em 2.5em;
  }
}

/* TABLET //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

@media only screen and (max-width: 55em) {
  /*
  -----------------------------------------------------------------------------

  01. Presets

  -----------------------------------------------------------------------------
  */

  /* MISC *******************************************************************************/

  :root {
    --fsize__h1--xxl: min(14rem, 15vw);
    --fsize__h1: 3.5rem;
    --fsize__h2: 2.325rem;
    --fsize__h3: 1.375rem;
    --fsize__h4: 1.25rem;
    --fsize__h5: 1.25rem;
    --fsize__h6: 1.25rem;
    --fsize__p: 1.125rem;
    --fsize__s: 0.9375rem;

    --radius__regular: 3.5rem;
  }

  html,
  body {
    font-size: min(1em, 2.1875vw);
  }

  /* LAYOUT *******************************************************************************/

  .main__inner {
    margin-top: 0;
  }

  .sec-wrap__inner {
    padding: 3.5em 3.5em;
  }

  /* Button *******************************************************************************/

  /*
  -----------------------------------------------------------------------------

  02. Footer

  -----------------------------------------------------------------------------
  */

  .footer-wrap {
    padding-bottom: 6em;
  }
}

/* MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

@media only screen and (max-width: 36em) {
  /*
  -----------------------------------------------------------------------------

  01. Presets

  -----------------------------------------------------------------------------
  */

  /* MISC *******************************************************************************/

  :root {
    /* ***** Font Sizes */
    --fsize__h1--xxl: min(14rem, 25vw);
    --fsize__h1: 2.625rem;
    --fsize__h2: 2.25rem;
    --fsize__h3: 1.375rem;
    --fsize__h4: 1.1875rem;
    --fsize__h5: 1.1875rem;
    --fsize__h6: 1.1875rem;
    --fsize__p: 1.0625rem;
    --fsize__s: 1rem;

    /* ***** Icon Sizes */
    --isize__small: 1.75rem;
    --isize__regular: 2rem;
    --isize__large: 4rem;

    --radius__large: 4.5em;
  }

  html,
  body {
    font-size: min(1em, 3vw);
  }

  h3,
  .h3 {
    line-height: 1.3em;
  }

  /* LAYOUT *******************************************************************************/

  .main__inner {
    margin-top: 0;
    /* Space to Navigation */
  }

  .sec-wrap__inner {
    padding: 2.5em 2.5em;
  }

  /* --- Section Background */

  .sec-wrap.with-bg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .sec-wrap.with-bg .sec-wrap__inner {
    margin: unset;
  }

  .sec-wrap__bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4rem;
    width: 100%;
    height: 35rem;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(255, 255, 255, 0)),
      to(rgba(255, 255, 255, 1))
    );
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }

  /**/

  .text-2-columns {
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
  }

  .text-3-columns {
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
  }

  /*
  -----------------------------------------------------------------------------

  02. Footer

  -----------------------------------------------------------------------------
  */
}

/* MINI-MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Presets
02. Footer
*/

@media only screen and (max-width: 27em) {
  /*
  -----------------------------------------------------------------------------

  01. Presets

  -----------------------------------------------------------------------------
  */

  /* MISC *******************************************************************************/

  :root {
    /* ***** Font Sizes */
    --fsize__h1--xxl: min(14rem, 17vw);
    --fsize__h1: 3.5rem;
    --fsize__h2: 2.325rem;
    --fsize__h3: 1.375rem;
    --fsize__h4: 1.375rem;
    --fsize__h5: 1.375rem;
    --fsize__h6: 1.375rem;
    --fsize__p: 1.0625rem;
    --fsize__s: 1rem;

    /* ***** Radiuses */

    /* --radius__small: 1.875em;
    --radius__regular: 2.875rem; */
    --radius__large: 4em;
  }

  html,
  body {
    font-size: min(1em, 3.25vw);
  }

  /*
  -----------------------------------------------------------------------------

  02. Footer

  -----------------------------------------------------------------------------
  */
}

/* SPECIAL BREAKPOINTS //////////////////////////////////////////////////////// */

/* Printer */

@media print {
  @page {
    margin: 1cm;
  }

  header,
  nav,
  footer {
    display: none;
  }

  img {
    max-width: 31.25em;
    visibility: visible !important;
  }
}
