:root {
  --primary: #e96d11;
  --secondary: #aeba00;
  --rose: #d11f76;
  --dark-gray: #2c2b2b;
  --white: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(113, 113, 113, 0);
}

@media (min-width: 420px) {
  html {
    font-size: 12px;
  }
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family:
    "HelveticaNeueLTStd-Lt", "HelveticaNeueWorld-Lt", "Microsoft YaHei", arial,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #717171;
  text-align: left;
  background-color: var(--white);
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-size: 2.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.col-lg-10,
.col-lg-3,
.col-xs-6,
.col-12 {
  position: relative;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 420px) {
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .order-xs-2 {
    order: 2;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 500;
  }
}

/* DOUBLE TITLE COMPONENT */
.fs-heading {
  margin: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

body,
p {
  font-size: 2rem;
  line-height: 2.5rem;
}

@media (min-width: 992px) {
  body,
  p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  display: inline-block;
  padding: 0;
  margin-right: 0;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
}

.navbar-light .navbar-brand {
  color: rgba(113, 113, 113, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(113, 113, 113, 0.9);
}

.site-header {
  background-color: var(--primary);
}

.site-header .navbar {
  padding: 2.5rem 0;
  transition: all 0.3s ease-out 0.01s;
}

@media (min-width: 1200px) {
  .site-header .navbar {
    padding: 1.5rem 0;
  }
}

@media (min-width: 1200px) {
  .navbar-brand {
    margin-right: 3.5rem;
  }
}

.navbar-brand img {
  height: 2.5rem;
  transition: all 0.3s ease-out 0.01s;
}

.margin-big {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .margin-big {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .c-double-title {
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .c-double-title {
    overflow: unset;
  }
}

.c-double-title__titles {
  overflow: hidden;
}

@media (min-width: 992px) {
  .c-double-title__titles {
    overflow: unset;
  }
}

.c-double-title__first {
  color: var(--primary);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  opacity: 0.25;
  text-transform: uppercase;
}

.c-double-title__first--length-c-xl {
  font-size: 2.9rem;
  word-break: break-word;
}

.c-double-title__first--length-c-xl + * {
  margin-top: -1.380952381rem;
}

@media (min-width: 420px) {
  .c-double-title__first--length-c-xl {
    font-size: 4.5rem;
  }

  .c-double-title__first--length-c-xl + * {
    margin-top: -2.1428571429rem;
  }
}

@media (min-width: 992px) {
  .c-double-title__first--length-c-xl {
    font-size: 6.4rem;
  }

  .c-double-title__first--length-c-xl + * {
    margin-top: -3.2rem;
  }
}

@media (min-width: 1200px) {
  .c-double-title__first--length-c-xl {
    font-size: 7rem;
  }

  .c-double-title__first--length-c-xl + * {
    margin-top: -3.5rem;
  }
}

.c-double-title__second {
  color: var(--rose);
  display: block;
  font-family: "Titillium Web", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .c-double-title__second {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .c-double-title__second {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .container--xl-fluid {
    max-width: 100%;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: 540px;
  }

  .container .row {
    margin-right: -2rem;
    margin-left: -2rem;
  }

  .container [class*="col-"] {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.contextual-region {
  position: relative;
}

/* FOOTER */
.footer {
  padding: 2.5rem 0;
  color: var(--white);
  background-color: var(--primary);
}

.footer-menu__logo img {
  max-width: 115px;
  height: auto;
}

.footer__first-regions {
  margin-bottom: 2.5rem;
}

.footer__second-regions {
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .footer__second-regions {
    margin-bottom: 1rem;
  }
}

.footer__info {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .footer__info {
    margin-bottom: 0;
  }
}

.footer__info p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 30px;
}

@media (min-width: 420px) {
  .footer__info p {
    font-size: 1.1666666667rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 992px) {
  .footer__info p {
    line-height: 1.6666666667rem;
  }
}

/* GREEN BAR */
#zambonGreenBar {
  background-color: var(--secondary);
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#zambonGreenBar img {
  width: 135px;
  height: auto;
  margin-right: 38px;
}
