/**/

/**/

.btn-arrow-right {
  position: relative;
  padding-right: 80px;
  transition: all 250ms ease-out;
}

.btn-arrow-right span {
  font-size: 0.6875rem;
  color: #fff;
  transition: all 250ms ease-out;
}

.btn-arrow-right i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-40%);
  color: #fff;
  transition: all 250ms ease-out;
}

.btn-arrow-right i::before {
  font-size: 1rem;
}

.btn-arrow-right:hover {
  padding-right: 90px;
}

.btn-arrow-right:hover span {
  color: #61171b;
}

.btn-arrow-right:hover i {
  color: #61171b;
}

.btn-line-left {
  padding-left: 60px;
  color: #fff;
  position: relative;
  font-size: 0.5625rem;
}

.btn-line-left::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 250ms ease-out;
}

.btn-line-left:hover::before {
  width: 40px;
}

.btn-menu {
  text-align: left;
  width: 60px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.btn-menu span {
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  transition: all 250ms ease-out;
}

.btn-menu span:nth-child(1) {
  top: 0;
  width: 60px;
}

.btn-menu span:nth-child(2) {
  top: calc(50% - 1px);
  width: 51px;
}

.btn-menu span:nth-child(3) {
  top: calc(100% - 3px);
  width: 40px;
}

.btn-menu:hover span:nth-child(2) {
  width: 60px;
}

.btn-menu:hover span:nth-child(3) {
  width: 60px;
}

.btn-close-side-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-close-side-menu i {
  color: #61171b;
}

.btn-close-side-menu i::before {
  font-size: 3rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .btn-close-side-menu i::before {
    font-size: calc(1.2rem + 3.2vmin);
  }
}

.btn-pdf {
  display: block;
  background: #fff;
  border: 4px #ebebeb solid;
  padding: 12px 60px 12px 20px;
  position: relative;
}

.btn-pdf .title {
  font-size: 1rem;
  font-weight: 800;
  transition: color 250ms ease-in-out;
}

.btn-pdf .descr {
  font-size: 0.8125rem;
  color: #484848;
  font-weight: 400;
}

.btn-pdf .descr b {
  font-weight: 700;
}

.btn-pdf i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: color 250ms ease-in-out;
}

.btn-pdf i::before {
  font-size: 2.2rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .btn-pdf i::before {
    font-size: calc(1.12rem + 1.92vmin);
  }
}

.btn-pdf::after {
  content: "";
  display: block;
  height: 65%;
  width: 2px;
  background: #61171b;
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
}

.header.sticky .btn-menu span {
  background: #d16520;
}

@media only screen and (max-width: 575px) {
  .btn-mob-full {
    width: 100%;
    display: block;
  }
}

#cookies-warning {
  background: #61171b;
}

#cookies-warning button,
#cookies-warning .cookies-close {
  color: #fff;
}

@media only screen and (max-width: 575px) {
  #cookies-warning button {
    border-color: #61171b;
  }
}

.footer-red {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -29%);
  width: 80%;
}

.footer-red img {
  width: 100%;
}

.footer-orange {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-30%);
  width: 100%;
}

.footer-orange img {
  width: 100%;
}

.footer-white {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-30%);
  width: 100%;
  z-index: 100;
}

.footer-white img {
  width: 100%;
}

footer {
  background-color: #fff;
  color: #61171b;
  position: relative;
  z-index: 100;
  padding: 30px 5%;
}

footer .footer-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

footer .footer-menu li {
  display: block;
  margin-bottom: 0px;
  position: relative;
}

footer .footer-menu li a,
footer .footer-menu li button {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  position: relative;
  color: #61171b;
}

footer .footer-menu li a span,
footer .footer-menu li button span {
  opacity: 0;
  display: block;
  width: 1px;
  height: 10px;
  background-color: rgba(209, 101, 32, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

footer .footer-menu li a span:nth-child(0),
footer .footer-menu li button span:nth-child(0) {
  right: calc(100% + (0 * 16px));
  transition: all 250ms 0ms linear;
}

footer .footer-menu li a span:nth-child(1),
footer .footer-menu li button span:nth-child(1) {
  right: calc(100% + (1 * 16px));
  transition: all 250ms 25ms linear;
}

footer .footer-menu li a span:nth-child(2),
footer .footer-menu li button span:nth-child(2) {
  right: calc(100% + (2 * 16px));
  transition: all 250ms 50ms linear;
}

footer .footer-menu li a span:nth-child(3),
footer .footer-menu li button span:nth-child(3) {
  right: calc(100% + (3 * 16px));
  transition: all 250ms 75ms linear;
}

footer .footer-menu li a span:nth-child(4),
footer .footer-menu li button span:nth-child(4) {
  right: calc(100% + (4 * 16px));
  transition: all 250ms 100ms linear;
}

footer .footer-menu li a span:nth-child(5),
footer .footer-menu li button span:nth-child(5) {
  right: calc(100% + (5 * 16px));
  transition: all 250ms 125ms linear;
}

footer .footer-menu li a span:nth-child(6),
footer .footer-menu li button span:nth-child(6) {
  right: calc(100% + (6 * 16px));
  transition: all 250ms 150ms linear;
}

footer .footer-menu li a span:nth-child(7),
footer .footer-menu li button span:nth-child(7) {
  right: calc(100% + (7 * 16px));
  transition: all 250ms 175ms linear;
}

footer .footer-menu li a span:nth-child(8),
footer .footer-menu li button span:nth-child(8) {
  right: calc(100% + (8 * 16px));
  transition: all 250ms 200ms linear;
}

footer .footer-menu li a span:nth-child(9),
footer .footer-menu li button span:nth-child(9) {
  right: calc(100% + (9 * 16px));
  transition: all 250ms 225ms linear;
}

footer .footer-menu li a span:nth-child(10),
footer .footer-menu li button span:nth-child(10) {
  right: calc(100% + (10 * 16px));
  transition: all 250ms 250ms linear;
}

footer .footer-menu li a span:nth-child(11),
footer .footer-menu li button span:nth-child(11) {
  right: calc(100% + (11 * 16px));
  transition: all 250ms 275ms linear;
}

footer .footer-menu li a span:nth-child(12),
footer .footer-menu li button span:nth-child(12) {
  right: calc(100% + (12 * 16px));
  transition: all 250ms 300ms linear;
}

footer .footer-menu li a span:nth-child(13),
footer .footer-menu li button span:nth-child(13) {
  right: calc(100% + (13 * 16px));
  transition: all 250ms 325ms linear;
}

footer .footer-menu li a span:nth-child(14),
footer .footer-menu li button span:nth-child(14) {
  right: calc(100% + (14 * 16px));
  transition: all 250ms 350ms linear;
}

footer .footer-menu li a span:nth-child(15),
footer .footer-menu li button span:nth-child(15) {
  right: calc(100% + (15 * 16px));
  transition: all 250ms 375ms linear;
}

footer .footer-menu li a span:nth-child(16),
footer .footer-menu li button span:nth-child(16) {
  right: calc(100% + (16 * 16px));
  transition: all 250ms 400ms linear;
}

footer .footer-menu li a span:nth-child(17),
footer .footer-menu li button span:nth-child(17) {
  right: calc(100% + (17 * 16px));
  transition: all 250ms 425ms linear;
}

footer .footer-menu li a span:nth-child(18),
footer .footer-menu li button span:nth-child(18) {
  right: calc(100% + (18 * 16px));
  transition: all 250ms 450ms linear;
}

footer .footer-menu li a span:nth-child(19),
footer .footer-menu li button span:nth-child(19) {
  right: calc(100% + (19 * 16px));
  transition: all 250ms 475ms linear;
}

footer .footer-menu li a span:nth-child(20),
footer .footer-menu li button span:nth-child(20) {
  right: calc(100% + (20 * 16px));
  transition: all 250ms 500ms linear;
}

footer .footer-menu li a span:nth-child(21),
footer .footer-menu li button span:nth-child(21) {
  right: calc(100% + (21 * 16px));
  transition: all 250ms 525ms linear;
}

footer .footer-menu li a span:nth-child(22),
footer .footer-menu li button span:nth-child(22) {
  right: calc(100% + (22 * 16px));
  transition: all 250ms 550ms linear;
}

footer .footer-menu li a span:nth-child(23),
footer .footer-menu li button span:nth-child(23) {
  right: calc(100% + (23 * 16px));
  transition: all 250ms 575ms linear;
}

footer .footer-menu li a span:nth-child(24),
footer .footer-menu li button span:nth-child(24) {
  right: calc(100% + (24 * 16px));
  transition: all 250ms 600ms linear;
}

footer .footer-menu li a span:nth-child(25),
footer .footer-menu li button span:nth-child(25) {
  right: calc(100% + (25 * 16px));
  transition: all 250ms 625ms linear;
}

footer .footer-menu li a span:nth-child(26),
footer .footer-menu li button span:nth-child(26) {
  right: calc(100% + (26 * 16px));
  transition: all 250ms 650ms linear;
}

footer .footer-menu li a span:nth-child(27),
footer .footer-menu li button span:nth-child(27) {
  right: calc(100% + (27 * 16px));
  transition: all 250ms 675ms linear;
}

footer .footer-menu li a span:nth-child(28),
footer .footer-menu li button span:nth-child(28) {
  right: calc(100% + (28 * 16px));
  transition: all 250ms 700ms linear;
}

footer .footer-menu li a span:nth-child(29),
footer .footer-menu li button span:nth-child(29) {
  right: calc(100% + (29 * 16px));
  transition: all 250ms 725ms linear;
}

footer .footer-menu li a span:nth-child(30),
footer .footer-menu li button span:nth-child(30) {
  right: calc(100% + (30 * 16px));
  transition: all 250ms 750ms linear;
}

footer .footer-menu li a span:nth-child(31),
footer .footer-menu li button span:nth-child(31) {
  right: calc(100% + (31 * 16px));
  transition: all 250ms 775ms linear;
}

footer .footer-menu li a span:nth-child(32),
footer .footer-menu li button span:nth-child(32) {
  right: calc(100% + (32 * 16px));
  transition: all 250ms 800ms linear;
}

footer .footer-menu li a span:nth-child(33),
footer .footer-menu li button span:nth-child(33) {
  right: calc(100% + (33 * 16px));
  transition: all 250ms 825ms linear;
}

footer .footer-menu li a span:nth-child(34),
footer .footer-menu li button span:nth-child(34) {
  right: calc(100% + (34 * 16px));
  transition: all 250ms 850ms linear;
}

footer .footer-menu li a span:nth-child(35),
footer .footer-menu li button span:nth-child(35) {
  right: calc(100% + (35 * 16px));
  transition: all 250ms 875ms linear;
}

footer .footer-menu li a span:nth-child(36),
footer .footer-menu li button span:nth-child(36) {
  right: calc(100% + (36 * 16px));
  transition: all 250ms 900ms linear;
}

footer .footer-menu li a span:nth-child(37),
footer .footer-menu li button span:nth-child(37) {
  right: calc(100% + (37 * 16px));
  transition: all 250ms 925ms linear;
}

footer .footer-menu li a span:nth-child(38),
footer .footer-menu li button span:nth-child(38) {
  right: calc(100% + (38 * 16px));
  transition: all 250ms 950ms linear;
}

footer .footer-menu li a span:nth-child(39),
footer .footer-menu li button span:nth-child(39) {
  right: calc(100% + (39 * 16px));
  transition: all 250ms 975ms linear;
}

footer .footer-menu li a span:nth-child(40),
footer .footer-menu li button span:nth-child(40) {
  right: calc(100% + (40 * 16px));
  transition: all 250ms 1000ms linear;
}

footer .footer-menu li a:hover,
footer .footer-menu li a.active,
footer .footer-menu li button:hover,
footer .footer-menu li button.active {
  color: #d16520;
}

footer .footer-menu li a:hover span,
footer .footer-menu li a.active span,
footer .footer-menu li button:hover span,
footer .footer-menu li button.active span {
  opacity: 1;
}

footer .footer-contacts {
  display: flex;
  flex-flow: column;
}

footer .footer-contacts > div {
  position: relative;
  padding-top: 13px;
  margin-top: 13px;
}

footer .footer-contacts > div::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100px;
  height: 1px;
  background: #d16520;
  transform: translateX(-50%);
}

footer .footer-contacts > div:nth-child(1) {
  padding-top: 0px;
  margin-top: 0px;
}

footer .footer-contacts > div:nth-child(1)::before {
  content: unset;
}

footer .footer-contact p {
  font-size: 0.7rem;
}

footer .footer-contact p:nth-child(1) {
  font-weight: 300;
}

footer .footer-contact p:nth-child(2) {
  font-weight: 700;
}

footer .terms-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}

footer .terms-menu li {
  margin-right: 20px;
  position: relative;
}

footer .terms-menu li button {
  font-size: 0.5625rem;
  color: #61171b;
}

footer .terms-menu li button:hover {
  color: #d16520;
}

footer .terms-menu li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 1px;
  height: 10px;
  background-color: #61171b;
  transform: translateY(-30%);
}

footer .terms-menu li:last-child {
  margin-right: 0px;
}

footer .terms-menu li:last-child::after {
  content: unset;
}

footer .divider {
  position: relative;
}

footer .divider::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #d16520;
}

footer .copyrights {
  font-family: Arial;
  font-size: 0.55rem;
  color: #61171b;
  text-align: right;
}

footer .copyrights span {
  opacity: 1;
}

footer .copyrights a {
  position: relative;
  color: #61171b;
  opacity: 1;
  transition: all 250ms ease-out;
}

footer .copyrights a:hover {
  color: #d16520;
}

footer .copyrights a:hover:after {
  width: 100%;
}

footer .copyrights a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 0%;
  height: 1px;
  background: #d16520;
  transition: all 250ms ease-out;
}

@media only screen and (max-width: 991px) {
  footer .footer-menu {
    text-align: center;
  }

  footer .footer-menu li {
    display: inline-block;
    margin-right: 1rem;
  }

  footer .footer-menu li a:hover span,
  footer .footer-menu li a.active span {
    opacity: 0;
  }

  footer .terms-menu {
    justify-content: center;
  }

  footer .copyrights {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer-menu li {
    display: inline-block;
    margin-right: 10px;
  }

  .footer-menu li:last-child {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-menu {
    text-align: center;
  }

  .footer-menu li {
    margin: 5px 5px;
  }
}

@media only screen and (min-width: 768px) {
  footer .footer-contacts {
    flex-flow: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .footer-contacts > div {
    flex-shrink: 0;
    width: 33.333%;
    margin: 0px;
    padding: 15px 10px !important;
  }

  footer .footer-contacts > div::before {
    width: 1px;
    height: 50px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  footer .footer-contacts > div:nth-child(4)::before {
    content: unset;
  }
}

@media only screen and (min-width: 1200px) {
  footer {
    padding: 30px 30px;
  }

  footer .footer-contacts {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  footer .footer-contacts > div {
    width: auto;
  }

  footer .footer-contacts > div:nth-child(4)::before {
    content: "";
  }
}

@media only screen and (min-width: 1366px) {
  footer {
    padding: 30px 5%;
  }

  footer .footer-contacts > div {
    padding: 15px 20px !important;
  }
}

[v-cloak] {
  display: none !important;
}

a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-icon-underline:hover p {
  text-decoration: underline;
}

.justify-content-container-left {
  margin-left: 19%;
}

.justify-content-container-right {
  margin-right: 19%;
}

.pl-container-align {
  padding-left: 38%;
}

.pr-container-align {
  padding-right: 38%;
}

.flex-3 {
  display: flex;
  flex-wrap: wrap;
}

.flex-3 > div {
  max-width: 32%;
  width: 32%;
  margin-right: 1.333%;
  margin-bottom: 7%;
}

.flex-3.flex-devided > div {
  position: relative;
}

.flex-3.flex-devided > div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: translateY(-50%);
}

.flex-3.flex-devided > div:last-child::after {
  content: unset;
}

.flex-4 {
  display: flex;
  flex-wrap: wrap;
}

.flex-4 > div {
  padding-right: 20px;
}

.flex-4 > div:last-child {
  padding-right: 0px;
}

.flex-4.flex-devided > div {
  position: relative;
  margin-right: 20px;
}

.flex-4.flex-devided > div:last-child {
  margin-right: 0px;
}

.flex-4.flex-devided > div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 1px;
  height: 100%;
  background: #d16520;
  transform: translateY(-50%);
}

.flex-4.flex-devided > div:last-child::after {
  content: unset;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pos-y-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pos-y-bottom-x-center {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
}

.grayscale {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.opacity-0 {
  opacity: 0;
  transition: opacity 250ms ease-out;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-33 {
  opacity: 0.33;
}

.opacity-40 {
  opacity: 0.4;
}

.bg-white-90 {
  background: rgba(255, 255, 255, 0.9);
}

.bg-lighter-90 {
  background: rgba(226, 226, 226, 0.9);
}

.transform-y--center {
  transform: translateY(-50%);
}

.transform-y-center {
  transform: translateY(50%);
}

.h-25px {
  height: 25px;
}

.h-35px {
  height: 35px;
}

.h-45 {
  height: 45px;
}

[class^=z-],
[class*=z-] {
  position: relative;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

@media only screen and (min-width: 576px) {
  .transform-y-sm--center {
    transform: translateY(-50%);
  }
}

@media only screen and (min-width: 768px) {
  .offset-md--1 {
    margin-left: -6.25%;
  }

  .flex-md-2 {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-md-2 > div {
    max-width: 49%;
    width: 49%;
    margin: 3% 0.5%;
  }

  .flex-md-3 {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-md-3 > div {
    max-width: 32%;
    width: 32%;
    margin-right: 1.333%;
    margin-bottom: 7%;
  }

  .flex-md-3.flex-md-devided > div {
    position: relative;
  }

  .flex-md-3.flex-md-devided > div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    transform: translateY(-50%);
  }

  .flex-md-3.flex-md-devided > div:nth-child(1)::before {
    content: unset;
  }

  .flex-md-4 {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-md-4 > div {
    padding-left: 20px;
  }

  .flex-md-4 > div:nth-child(1) {
    padding-left: 0px;
  }

  .flex-md-4.flex-md-devided > div {
    position: relative;
    margin-left: 20px;
  }

  .flex-md-4.flex-md-devided > div:nth-child(1) {
    margin-left: 0px;
  }

  .flex-md-4.flex-md-devided > div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1px;
    width: 1px;
    height: 100%;
    background: #d16520;
    transform: translateY(-50%);
  }

  .flex-md-4.flex-md-devided > div:nth-child(1)::before {
    content: unset;
  }
}

@media only screen and (min-width: 992px) {
  .transform-y-lg--center {
    transform: translateY(-50%);
  }

  .flex-lg-3 {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-lg-3 > div {
    max-width: 32.33%;
    width: 32.33%;
    margin: 3% 0.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .transform-y-xl--center {
    transform: translateY(-50%);
  }

  .flex-md-4.flex-md-devided > div {
    margin-left: 1vw;
    padding-left: 1vw;
  }
}

@media only screen and (min-width: 1367px) {
  .mx-xxl-pc-8 {
    margin-left: 8% !important;
    margin-right: 8% !important;
  }

  .flex-xxl-6 {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-xxl-6 > div {
    max-width: 16.66%;
    width: 15.66%;
    margin: 0 0.5%;
  }
}

.marquee-header-wrapper {
  background-color: #61171b;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.55);
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.marquee-header-wrapper .marquee-header-badge {
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  background-color: #992d33;
  -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
  transition: background-color 500ms ease-out;
}

.marquee-header-wrapper .marquee-header-badge img {
  height: 14px;
}

.marquee-header-wrapper .marquee-header-badge p {
  font-size: 0.65rem;
  margin-left: 10px;
  color: #fff;
  font-weight: 700;
}

.marquee-header-wrapper .marquee-text-wrap {
  display: flex;
  align-items: center;
}

.marquee-header-wrapper .marquee-text-wrap .marquee-text-content {
  display: flex;
  align-items: center;
}

.marquee-header-wrapper .marquee-text-wrap .marquee-text-content .marquee-text-text {
  line-height: 1;
  padding-bottom: 5px;
}

.marquee-header-wrapper .marquee-text-wrap .marquee-text-content .marquee-text-text span {
  font-size: 0.6rem;
  color: #fff;
  white-space: nowrap;
  padding-right: 100px;
}

.marquee-header-wrapper:hover .marquee-header-badge {
  background-color: #722126;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 5%;
  z-index: 100;
  transition: padding-top 500ms ease-out, padding-bottom 500ms ease-out, background 500ms ease-out, top 500ms ease-out;
}

.header .logo-wrapper {
  position: relative;
  width: 150px;
  height: 57px;
  top: 0;
  left: 0;
  transition: all 250ms ease-out;
}

.header .logo-wrapper .logo-link {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.header .logo-wrapper .logo-link .logo-white,
.header .logo-wrapper .logo-link .logo-color {
  position: absolute;
}

.header .logo-wrapper .logo-link .logo-white {
  opacity: 1;
}

.header .logo-wrapper .logo-link .logo-color {
  opacity: 0;
}

.header .logo-wrapper.logo-wrapper-services {
  height: 73px;
}

.header.with-incident {
  top: 25px;
}

.header.sticky {
  position: fixed;
  background: #fff;
  padding: 10px 5%;
  top: 0;
}

.header.sticky .logo-wrapper {
  width: 100px;
  height: 38px;
}

.header.sticky .logo-wrapper .logo-link .logo-white {
  opacity: 0;
}

.header.sticky .logo-wrapper .logo-link .logo-color {
  opacity: 1;
}

.header.sticky .logo-wrapper.logo-wrapper-services {
  height: 48px;
}

@media only screen and (min-width: 576px) {
  .marquee-header-wrapper .marquee-header-badge {
    padding: 10px 40px 10px 30px;
  }

  .marquee-header-wrapper .marquee-header-badge img {
    height: 24px;
  }

  .marquee-header-wrapper .marquee-header-badge p {
    font-size: 0.75rem;
  }

  .header.with-incident {
    top: 44px;
  }
}

.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.input-wrapper label {
  font-family: "zeitung", sans-serif;
  font-size: 0.6875rem;
  color: #fff;
  display: block;
  font-weight: 300;
  letter-spacing: 0.1rem;
  cursor: pointer;
  margin-bottom: 0;
}

.input-wrapper input[type=text],
.input-wrapper input[type=email],
.input-wrapper input[type=password],
.input-wrapper input[type=search]:not(.vs__search),
.input-wrapper input[type=number] {
  font-family: "zeitung", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #fff;
  width: 100%;
  border-width: 0px 0px 1px 0px;
  border-color: rgba(255, 255, 255, 0.33);
  border-style: solid;
  border-radius: 0px;
  padding: 10px 8px;
  background-color: transparent;
  -webkit-appearance: none;
  transition: all 250ms ease-out;
}

.input-wrapper input[type=text]:focus,
.input-wrapper input[type=email]:focus,
.input-wrapper input[type=password]:focus,
.input-wrapper input[type=search]:not(.vs__search):focus,
.input-wrapper input[type=number]:focus {
  outline: none;
}

.input-wrapper input[type=text]::-webkit-input-placeholder,
.input-wrapper input[type=email]::-webkit-input-placeholder,
.input-wrapper input[type=password]::-webkit-input-placeholder,
.input-wrapper input[type=search]:not(.vs__search)::-webkit-input-placeholder,
.input-wrapper input[type=number]::-webkit-input-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper input[type=text]::-moz-placeholder,
.input-wrapper input[type=email]::-moz-placeholder,
.input-wrapper input[type=password]::-moz-placeholder,
.input-wrapper input[type=search]:not(.vs__search)::-moz-placeholder,
.input-wrapper input[type=number]::-moz-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper input[type=text]:-ms-input-placeholder,
.input-wrapper input[type=email]:-ms-input-placeholder,
.input-wrapper input[type=password]:-ms-input-placeholder,
.input-wrapper input[type=search]:not(.vs__search):-ms-input-placeholder,
.input-wrapper input[type=number]:-ms-input-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper input[type=text]:-moz-placeholder,
.input-wrapper input[type=email]:-moz-placeholder,
.input-wrapper input[type=password]:-moz-placeholder,
.input-wrapper input[type=search]:not(.vs__search):-moz-placeholder,
.input-wrapper input[type=number]:-moz-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper input[type=text]::-webkit-outer-spin-button,
.input-wrapper input[type=text]::-webkit-inner-spin-button,
.input-wrapper input[type=email]::-webkit-outer-spin-button,
.input-wrapper input[type=email]::-webkit-inner-spin-button,
.input-wrapper input[type=password]::-webkit-outer-spin-button,
.input-wrapper input[type=password]::-webkit-inner-spin-button,
.input-wrapper input[type=search]:not(.vs__search)::-webkit-outer-spin-button,
.input-wrapper input[type=search]:not(.vs__search)::-webkit-inner-spin-button,
.input-wrapper input[type=number]::-webkit-outer-spin-button,
.input-wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-wrapper input[type=number] {
  -moz-appearance: textfield;
}

.input-wrapper .v-select .vs__dropdown-toggle {
  padding: 0 10px 0 0;
  background: transparent;
  overflow: hidden;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options {
  padding: 10px 0 10px 8px;
  flex-wrap: nowrap;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__selected {
  margin: 0 5px 0 0;
  padding: 0 10px;
  font-size: 0.6875rem;
  font-weight: 300;
  color: #fff;
  border-radius: 8px;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__selected .vs__deselect {
  fill: #fff;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search {
  margin: 0;
  padding: 0;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search::-webkit-input-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search::-moz-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search:-ms-input-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search:-moz-placeholder {
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__selected-options .vs__search:focus {
  margin: 0;
  padding: 0;
}

.input-wrapper .v-select .vs__dropdown-toggle .vs__actions {
  padding: 0;
}

.input-wrapper .v-select .vs__dropdown-menu .vs__dropdown-option {
  font-size: 0.6875rem;
  font-weight: 300;
}

.input-wrapper .v-select .vs__dropdown-menu .vs__dropdown-option.vs__dropdown-option--disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.input-wrapper .v-select .vs__dropdown-menu .vs__dropdown-option.vs__dropdown-option--selected {
  opacity: 0.4;
}

.input-wrapper .v-select.vs--single .vs__selected-options .vs__selected {
  padding: 0;
  color: #fff;
}

.input-wrapper .v-select.vs--single.vs--open .vs__selected-options .vs__selected {
  top: 50%;
  transform: translateY(-50%);
}

.input-wrapper input:disabled,
.input-wrapper select:disabled {
  opacity: 0.4;
}

.input-wrapper .error-msg {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background-color: #770000;
  padding: 5px 9px;
  z-index: 5;
}

.input-wrapper.has-error label {
  color: #770000;
}

.input-wrapper.has-error input[type=email],
.input-wrapper.has-error input[type=text],
.input-wrapper.has-error input[type=password],
.input-wrapper.has-error input[type=search],
.input-wrapper.has-error input[type=number] {
  border-color: #770000;
}

.input-wrapper.has-error .v-select .vs__dropdown-toggle {
  border-color: #770000;
}

.input-wrapper.has-error .dpifs-fake-input {
  border-color: #770000;
}

.input-wrapper.label-float label {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  transition: all 250ms ease-out;
  z-index: 1;
}

.input-wrapper.label-float .error-msg {
  top: 0px;
}

.input-wrapper.label-float.has-value label {
  top: 0px;
  transform: translateY(0%);
  color: #fff;
  font-size: 0.4rem;
}

.input-wrapper .input-group {
  display: flex;
  position: relative;
}

.input-wrapper .input-group .input-1 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0px;
}

.input-wrapper .input-group .input-2 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

.input-wrapper .input-group .label-1,
.input-wrapper .input-group .label-2 {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.4rem;
  font-weight: 300;
  transition: left 250ms ease-out;
}

.input-wrapper .input-group .label-1.has-value,
.input-wrapper .input-group .label-2.has-value {
  color: #fff;
}

.input-wrapper .input-group .label-1 {
  left: 25%;
}

.input-wrapper .input-group .label-1.has-value {
  left: 8px;
  transform: translateY(-50%);
}

.input-wrapper .input-group .label-2 {
  left: 75%;
}

.input-wrapper .input-group .label-2.has-value {
  left: calc(50% + 10px);
  transform: translateY(-50%);
}

.input-wrapper .input-group.label-float .input-1 {
  padding-left: 45px;
}

.input-wrapper .input-group.label-float .input-2 {
  padding-left: 35px;
}

.input-wrapper .input-group::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translateY(-50%);
  width: 1px;
  height: 75%;
  background-color: #61171b;
}

.input-wrapper.input-wrapper-alt label {
  color: rgba(97, 23, 27, 0.5);
  font-weight: 400;
}

.input-wrapper.input-wrapper-alt input[type=email],
.input-wrapper.input-wrapper-alt input[type=text],
.input-wrapper.input-wrapper-alt input[type=password],
.input-wrapper.input-wrapper-alt input[type=search]:not(.vs__search),
.input-wrapper.input-wrapper-alt input[type=number] {
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #61171b;
  padding: 15px 11px 5px 11px;
  margin-top: 0;
}

.input-wrapper.input-wrapper-alt .v-select .vs__dropdown-toggle {
  background: transparent;
  border-bottom: 1px solid #61171b;
}

.input-wrapper.input-wrapper-alt .v-select .vs__dropdown-toggle .vs__selected-options {
  padding: 15px 11px 5px 11px;
}

.input-wrapper.input-wrapper-alt .v-select.vs--open.vs--single .vs__selected-options .vs__selected {
  top: calc(50% + 5px);
}

.input-wrapper.input-wrapper-alt.label-float {
  margin-bottom: 24px;
}

.input-wrapper.input-wrapper-alt.label-float.has-value label {
  top: 0px;
  transform: translateY(0%);
  left: 0;
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper label {
  font-family: "zeitung", sans-serif;
  font-size: 0.6875rem;
  color: #fff;
  display: block;
  letter-spacing: 0.1rem;
  cursor: pointer;
  margin-bottom: 0;
}

.textarea-wrapper textarea {
  font-family: "zeitung", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #fff;
  width: 100%;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.33);
  border-style: solid;
  border-radius: 0px;
  background-color: transparent;
  padding: 20px 17px;
  -webkit-appearance: none;
  transition: all 250ms ease-out;
}

.textarea-wrapper textarea:focus {
  outline: none;
}

.textarea-wrapper textarea::-webkit-input-placeholder {
  font-family: "zeitung", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.textarea-wrapper textarea::-moz-placeholder {
  font-family: "zeitung", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.textarea-wrapper textarea:-ms-input-placeholder {
  font-family: "zeitung", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.textarea-wrapper textarea:-moz-placeholder {
  font-family: "zeitung", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 0.5625rem;
  color: #fff;
}

.textarea-wrapper .error-msg {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background-color: #770000;
  padding: 5px 9px;
  z-index: 5;
}

.textarea-wrapper.has-error label {
  color: #770000;
}

.textarea-wrapper.has-error textarea {
  border-color: #770000;
}

.textarea-wrapper.label-float label {
  position: absolute;
  top: 28px;
  left: 17px;
  transform: translateY(-50%);
  transition: all 250ms ease-out;
}

.textarea-wrapper.label-float .error-msg {
  top: 0px;
  transform: translateY(30%);
}

.textarea-wrapper.label-float.has-value label {
  top: 8px;
  left: 11px;
  transform: translateY(0%);
  font-size: 0.4rem;
}

.textarea-wrapper.textarea-wrapper-alt textarea {
  background-color: transparent;
  border: 1px solid #61171b;
}

.btn-submit {
  font-weight: 400;
  position: relative;
  color: #61171b;
  background-color: #fff;
  padding: 9px 45px 12px;
  transition: all 250ms ease-out;
  border: 1px solid #fff;
}

.btn-submit span {
  font-family: "zeitung", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2rem;
}

.btn-submit:hover {
  background: transparent;
  color: #fff;
}

.btn-submit.loading {
  background: transparent;
}

.btn-submit.loading span {
  opacity: 0;
}

.btn-submit.loading .loader {
  opacity: 1;
}

.btn-submit.loading .loader span {
  opacity: 1;
}

.btn-submit .loader {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #ffffff;
  -webkit-animation: load 1.1s infinite linear;
          animation: load 1.1s infinite linear;
}

.btn-submit .loader::after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

@-webkit-keyframes load {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes load {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.main-menu {
  list-style: none;
  padding: 0px;
  margin-bottom: 0;
  text-align: left;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.main-menu li {
  display: block;
  margin-right: 80px;
}

.main-menu li a,
.main-menu li button {
  display: inline-block;
  font-weight: 600;
  font-size: 1.1875rem;
  color: #fff;
  letter-spacing: 0.08rem;
  position: relative;
}

@media (max-width: 900px), (max-height: 900px) {
  .main-menu li a,
  .main-menu li button {
    font-size: calc(1.01875rem + 0.3vmin);
  }
}

.main-menu li a::after,
.main-menu li button::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  transition: all 250ms ease-out;
}

.main-menu li a:hover::after,
.main-menu li a.active::after,
.main-menu li button:hover::after,
.main-menu li button.active::after {
  width: 80%;
}

.main-menu li:last-child {
  margin-right: 0px;
}

.side-menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  height: 100%;
  padding-top: 50px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
}

.side-menu li {
  margin-bottom: 1rem;
}

.side-menu li:last-child {
  margin-bottom: 0;
}

.side-menu li a,
.side-menu li button {
  font-size: 1.5rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .side-menu li a,
  .side-menu li button {
    font-size: calc(1.05rem + 0.8vmin);
  }
}

.header.sticky .main-menu li a,
.header.sticky .main-menu li button {
  color: #61171b;
}

.fp-viewing-about li[data-menuanchor=about] a::after {
  width: 80%;
}

.fp-viewing-freightTraders li[data-menuanchor=freightTraders] a::after {
  width: 80%;
}

.fp-viewing-contact li[data-menuanchor=contact] a::after {
  width: 80%;
}

@media only screen and (max-width: 575px) {
  .side-menu .main-menu li {
    margin-bottom: 30px;
  }
}

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

.btn-modal-close {
  color: #fff;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
}

.btn-modal-close:hover {
  color: #fff;
}

::-moz-selection {
  color: #fff;
  background: #61171b;
  opacity: 1;
}

::selection {
  color: #fff;
  background: #61171b;
  opacity: 1;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-spacing: 0px 2px;
}

.table.table-no-space {
  border-spacing: 0px 0px;
}

.table th,
.table td {
  text-align: center;
  border-top: none;
}

.table thead {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
}

.table thead th {
  padding: 1rem 1rem;
  border-bottom: none;
  position: relative;
}

.table tbody tr td {
  padding: 1rem 1rem;
  font-size: 0.8125rem;
}

.table tbody tr:nth-child(odd) td {
  background-color: rgba(255, 255, 255, 0.8);
  color: #61171b;
}

.table tbody tr:nth-child(even) td {
  background-color: rgba(97, 23, 27, 0.9);
  color: #fff;
}

.table-alt {
  width: 100%;
}

.table-alt .tbody {
  width: 100%;
}

.table-alt .tbody .tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.table-alt .tbody .tr .td {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 17px 10px;
}

.table-alt .tbody .tr .td a {
  color: #fff;
  transition: color 250ms ease-in-out;
}

.table-alt .tbody .tr .td a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.table-alt .tbody .tr .td:nth-child(1) {
  width: 30%;
}

.table-alt .tbody .tr .td:nth-child(2) {
  width: 40%;
}

.table-alt .tbody .tr .td:nth-child(3) {
  width: 30%;
}

.table-alt .tbody .tr:nth-child(odd) {
  background-color: rgba(31, 4, 5, 0.6);
}

.table-alt .tbody .tr:nth-child(even) {
  background-color: rgba(31, 4, 5, 0.2);
}

@media only screen and (max-width: 991px) {
  .table-md-responsive {
    padding-left: 40px;
  }

  .table-md-responsive table,
  .table-md-responsive thead,
  .table-md-responsive tbody,
  .table-md-responsive th,
  .table-md-responsive td,
  .table-md-responsive tr {
    display: block;
  }

  .table-md-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .table-md-responsive tr {
    margin-bottom: 20px;
    position: relative;
  }

  .table-md-responsive tbody tr td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 150px;
    text-align: right;
  }

  .table-md-responsive tbody tr td::before {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    white-space: nowrap;
    font-weight: 700;
  }

  .table-md-responsive tbody tr td:nth-of-type(1)::before {
    content: "SHIP NAME";
  }

  .table-md-responsive tbody tr td:nth-of-type(2)::before {
    content: "DEADWEIGHT";
  }

  .table-md-responsive tbody tr td:nth-of-type(3)::before {
    content: "VESSEL TYPE";
  }

  .table-md-responsive tbody tr td:nth-of-type(4)::before {
    content: "YEAR BUILT";
  }

  .table-md-responsive tbody tr td:nth-of-type(5)::before {
    content: "SHIPYARD";
  }
}

@media only screen and (max-width: 575px) {
  .table-alt .tbody .tr {
    flex-flow: column;
  }

  .table-alt .tbody .tr .td {
    width: 100% !important;
  }
}

.list-fade-stagger-leave-active {
  transition: none;
}

.list-fade-stagger-enter-active {
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  transition-delay: calc(75ms * (var(--i)));
}

.list-fade-stagger-enter,
.list-fade-stagger-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

.list-fade-enter-active,
.list-fade-leave-active {
  transition: all 250ms ease-out;
}

.list-fade-enter,
.list-fade-leave-to {
  opacity: 0;
}

.list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  transition: all 600ms ease-in-out 50ms;
}

.list-move {
  transition: all 600ms ease-in-out 50ms;
}

.list-enter-active {
  transition: all 400ms ease-out;
}

.list-leave-active {
  transition: all 50ms ease-in;
  position: relative;
  transform: scale(0.1);
  opacity: 0;
  display: none;
}

.list-enter,
.list-leave-to {
  opacity: 0;
}

div[class^=trigger-] {
  position: absolute;
}

.reveal {
  opacity: 0;
}

.reveal.animate {
  opacity: 1;
  transition: opacity 1000ms ease-out;
}

.reveal-top {
  opacity: 0;
  transform: translateY(-20px);
}

.reveal-top.animate {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.reveal-chart-head {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1000ms ease-out;
}

.reveal-chart-head::before {
  opacity: 0;
  transition: all 1000ms 1500ms ease-out;
}

.reveal-chart-head::after {
  height: 0px;
  transition: all 1000ms 850ms ease-out;
}

.reveal-chart-head.animate {
  opacity: 1;
  transform: translateY(0px);
}

.reveal-chart-head.animate::before {
  opacity: 1;
}

.reveal-chart-head.animate::after {
  height: 60px;
}

.reveal-chart-blocks {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1000ms 2000ms ease-out;
}

.reveal-chart-blocks .block::before {
  height: 0px;
  transition: all 1000ms 1500ms ease-out;
}

.reveal-chart-blocks.animate {
  opacity: 1;
  transform: translateY(0px);
}

.reveal-chart-blocks.animate .block::before {
  height: 20px;
}

.map-enter-active,
.map-leave-active {
  transition: all 500ms ease-out;
}

.map-enter,
.map-leave-to {
  transform: translateX(100%);
}

.text-sans-serif {
  font-family: "zeitung", sans-serif;
}

.text-monospace {
  font-family: "corundum-text", serif;
}

.tiny {
  font-size: 0.5rem;
}

sub {
  bottom: 0;
  font-size: 60%;
}

.ls-00 {
  letter-spacing: 0px !important;
}

.ls-00 span,
.ls-00 b {
  letter-spacing: 0px !important;
}

.ls-01 {
  letter-spacing: 1px !important;
}

.ls-01 span,
.ls-01 b {
  letter-spacing: 1px !important;
}

.ls-02 {
  letter-spacing: 2px !important;
}

.ls-02 span,
.ls-02 b {
  letter-spacing: 2px !important;
}

.ls-03 {
  letter-spacing: 3px !important;
}

.ls-03 span,
.ls-03 b {
  letter-spacing: 3px !important;
}

.ls-04 {
  letter-spacing: 4px !important;
}

.ls-04 span,
.ls-04 b {
  letter-spacing: 4px !important;
}

.ls-05 {
  letter-spacing: 5px !important;
}

.ls-05 span,
.ls-05 b {
  letter-spacing: 5px !important;
}

.lh-00 {
  line-height: 0;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-20 {
  line-height: 2;
}

.text-bg-white {
  background-color: #fff;
  color: #61171b;
  line-height: 1.7;
  display: inline;
  font-family: "corundum-text", serif;
  padding: 0px 10px 5px;
}

.text-bg-primary {
  background-color: #61171b;
  color: #fff;
  line-height: 1.7;
  display: inline;
  font-family: "corundum-text", serif;
  padding: 0px 10px 5px;
}

.text-lines {
  position: relative;
  font-family: "corundum-text", serif;
  display: inline-block;
  margin-left: 37px;
  padding-left: 18px;
  padding-right: 18px;
}

.text-lines .lines-left,
.text-lines .lines-right {
  position: absolute;
  top: 0;
  height: 100%;
}

.text-lines .lines-left span,
.text-lines .lines-right span {
  height: 35px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.text-lines .lines-left {
  right: 100%;
}

.text-lines .lines-left span:nth-child(1) {
  right: 0px;
}

.text-lines .lines-left span:nth-child(2) {
  right: 18px;
}

.text-lines .lines-left span:nth-child(3) {
  right: 36px;
}

.text-lines .lines-left span:nth-child(4) {
  right: 54px;
}

.text-lines .lines-left span:nth-child(5) {
  right: 72px;
}

.text-lines .lines-left span:nth-child(6) {
  right: 90px;
}

.text-lines .lines-left span:nth-child(7) {
  right: 108px;
}

.text-lines .lines-left span:nth-child(8) {
  right: 126px;
}

.text-lines .lines-left span:nth-child(9) {
  right: 144px;
}

.text-lines .lines-left span:nth-child(10) {
  right: 162px;
}

.text-lines .lines-left span:nth-child(11) {
  right: 180px;
}

.text-lines .lines-left span:nth-child(12) {
  right: 198px;
}

.text-lines .lines-left span:nth-child(13) {
  right: 216px;
}

.text-lines .lines-left span:nth-child(14) {
  right: 234px;
}

.text-lines .lines-left span:nth-child(15) {
  right: 252px;
}

.text-lines .lines-left span:nth-child(16) {
  right: 270px;
}

.text-lines .lines-left span:nth-child(17) {
  right: 288px;
}

.text-lines .lines-left span:nth-child(18) {
  right: 306px;
}

.text-lines .lines-left span:nth-child(19) {
  right: 324px;
}

.text-lines .lines-left span:nth-child(20) {
  right: 342px;
}

.text-lines .lines-left span:nth-child(21) {
  right: 360px;
}

.text-lines .lines-left span:nth-child(22) {
  right: 378px;
}

.text-lines .lines-left span:nth-child(23) {
  right: 396px;
}

.text-lines .lines-left span:nth-child(24) {
  right: 414px;
}

.text-lines .lines-left span:nth-child(25) {
  right: 432px;
}

.text-lines .lines-left span:nth-child(26) {
  right: 450px;
}

.text-lines .lines-left span:nth-child(27) {
  right: 468px;
}

.text-lines .lines-left span:nth-child(28) {
  right: 486px;
}

.text-lines .lines-left span:nth-child(29) {
  right: 504px;
}

.text-lines .lines-left span:nth-child(30) {
  right: 522px;
}

.text-lines .lines-left span:nth-child(31) {
  right: 540px;
}

.text-lines .lines-left span:nth-child(32) {
  right: 558px;
}

.text-lines .lines-left span:nth-child(33) {
  right: 576px;
}

.text-lines .lines-left span:nth-child(34) {
  right: 594px;
}

.text-lines .lines-left span:nth-child(35) {
  right: 612px;
}

.text-lines .lines-left span:nth-child(36) {
  right: 630px;
}

.text-lines .lines-left span:nth-child(37) {
  right: 648px;
}

.text-lines .lines-left span:nth-child(38) {
  right: 666px;
}

.text-lines .lines-left span:nth-child(39) {
  right: 684px;
}

.text-lines .lines-left span:nth-child(40) {
  right: 702px;
}

.text-lines .lines-left.has-submenu span {
  top: 7px;
  transform: translateY(0);
}

.text-lines .lines-left.has-submenu span:nth-child(3) {
  height: 168px;
}

.text-lines .lines-right {
  left: 100%;
}

.text-lines .lines-right span:nth-child(1) {
  left: 0px;
}

.text-lines .lines-right span:nth-child(2) {
  left: 18px;
}

.text-lines .lines-right span:nth-child(3) {
  left: 36px;
}

.text-lines .lines-right span:nth-child(4) {
  left: 54px;
}

.text-lines .lines-right span:nth-child(5) {
  left: 72px;
}

.text-erase {
  position: relative;
  display: inline-block;
}

.text-erase::after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.text-dynamic h1,
.text-dynamic h2,
.text-dynamic h3,
.text-dynamic h4,
.text-dynamic h5,
.text-dynamic h6,
.text-dynamic .h1,
.text-dynamic .h2,
.text-dynamic .h3,
.text-dynamic .h4,
.text-dynamic .h5,
.text-dynamic .h6,
.text-dynamic p {
  color: #61171b;
  font-family: "zeitung", sans-serif;
}

.text-dynamic b,
.text-dynamic strong {
  font-weight: 700;
}

.text-dynamic h2 {
  margin-bottom: 25px;
  color: #61171b;
}

.text-dynamic h3,
.text-dynamic h4,
.text-dynamic h5,
.text-dynamic h6 {
  color: #61171b;
  margin: 20px 0px;
}

.text-dynamic h4 {
  margin: 0px 0px 10px 0px;
}

.text-dynamic h6 {
  font-size: 1.125rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .text-dynamic h6 {
    font-size: calc(1.0125rem + 0.2vmin);
  }
}

.text-dynamic p {
  margin-bottom: 15px;
  line-height: 1.5rem;
  font-size: 0.8125rem;
}

.text-dynamic ul {
  padding: 0px 0px 0px 20px;
  margin-bottom: 15px;
}

.text-dynamic ul li {
  margin-bottom: 20px;
  font-size: 0.8125rem;
}

.text-dynamic ul li ul {
  list-style: none;
  padding-left: 13px;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.text-dynamic ul li ul li {
  position: relative;
  margin-bottom: 5px;
}

.text-dynamic ul li ul li::before {
  content: "-";
  position: absolute;
  top: 9px;
  left: -10px;
  line-height: 0;
}

.text-dynamic-2 {
  text-align: justify;
}

.text-dynamic-2 h1,
.text-dynamic-2 h2,
.text-dynamic-2 h3,
.text-dynamic-2 h4,
.text-dynamic-2 h5,
.text-dynamic-2 h6,
.text-dynamic-2 .h1,
.text-dynamic-2 .h2,
.text-dynamic-2 .h3,
.text-dynamic-2 .h4,
.text-dynamic-2 .h5,
.text-dynamic-2 .h6,
.text-dynamic-2 p {
  color: #61171b;
}

.text-dynamic-2 b,
.text-dynamic-2 strong {
  font-weight: 700;
}

.text-dynamic-2 h3,
.text-dynamic-2 h4,
.text-dynamic-2 h5,
.text-dynamic-2 h6 {
  margin: 10px 0px;
}

.text-dynamic-2 h6 {
  font-size: 1.125rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .text-dynamic-2 h6 {
    font-size: calc(1.0125rem + 0.2vmin);
  }
}

.text-dynamic-2 p {
  margin-bottom: 15px;
  line-height: 1.5rem;
  font-size: 0.75rem;
}

.text-dynamic-2 .img,
.text-dynamic-2 img {
  margin-bottom: 30px;
}

.text-dynamic-2 ul {
  padding: 0px 0px 0px 20px;
  margin-bottom: 15px;
}

.text-dynamic-2 ul li {
  margin-bottom: 20px;
  font-size: 0.8125rem;
}

.text-dynamic-2 ul li ul {
  list-style: none;
  padding-left: 13px;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.text-dynamic-2 ul li ul li {
  position: relative;
  margin-bottom: 5px;
}

.text-dynamic-2 ul li ul li::before {
  content: "-";
  position: absolute;
  top: 9px;
  left: -10px;
  line-height: 0;
}

.text-terms h1,
.text-terms h2,
.text-terms h3,
.text-terms h4,
.text-terms h5,
.text-terms h6,
.text-terms .h1,
.text-terms .h2,
.text-terms .h3,
.text-terms .h4,
.text-terms .h5,
.text-terms .h6,
.text-terms p {
  color: #484848;
  font-family: "zeitung", sans-serif;
}

.text-terms h2 {
  color: #61171b;
  margin-bottom: 25px;
}

.text-terms h3,
.text-terms h4,
.text-terms h5,
.text-terms h6 {
  color: #61171b;
  margin: 20px 0px;
}

.text-terms p {
  margin-bottom: 15px;
  line-height: 1.5rem;
}

.text-terms ul {
  padding: 0px 0px 0px 20px;
  margin-bottom: 15px;
}

.text-terms ul li {
  margin-bottom: 20px;
}

.text-underline:after {
  bottom: -2px;
  width: 100%;
  height: 1px;
}

.text-vertical {
  transform: rotateZ(-90deg) translateX(-100%);
  display: inline-block;
  transform-origin: 0% 25%;
}

.link-underline {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.link-underline::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  transition: all 250ms ease-out;
}

.link-underline:hover::after,
.link-underline.active::after {
  width: 80%;
}

ul.no-style {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

ul.no-style li {
  line-height: 1.5;
}

hr {
  border-top: 1px solid #fff;
  margin: 5px auto;
}

hr.primary {
  border-color: #61171b;
}

hr.secondary {
  border-color: #d16520;
}

hr.vertical {
  border-top: none;
  position: relative;
  margin: 0 auto;
}

hr.vertical::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 76px;
  background-color: #fff;
  transform: translateY(-50%);
}

hr.vertical.medium::after {
  height: 86px;
}

hr.vertical.primary::after {
  background-color: #61171b;
}

hr.tiny {
  width: 34px;
}

hr.small {
  width: 53px;
}

hr.medium {
  width: 110px;
}

hr.thick {
  border-width: 2px;
}

hr.thicker {
  border-width: 4px;
}

i[class^=icon-],
i[class*=" icon-"] {
  font-size: 0;
}

i.icon-xs[class^=icon-]::before,
i.icon-xs[class*=" icon-"]::before {
  font-size: 0.7rem;
}

i.icon-sm[class^=icon-]::before,
i.icon-sm[class*=" icon-"]::before {
  font-size: 1rem;
}

i.icon-m[class^=icon-]::before,
i.icon-m[class*=" icon-"]::before {
  font-size: 1.8rem;
}

@media (max-width: 900px), (max-height: 900px) {
  i.icon-m[class^=icon-]::before,
  i.icon-m[class*=" icon-"]::before {
    font-size: calc(1.08rem + 1.28vmin);
  }
}

i.icon-lg[class^=icon-]::before,
i.icon-lg[class*=" icon-"]::before {
  font-size: 2rem;
}

@media (max-width: 900px), (max-height: 900px) {
  i.icon-lg[class^=icon-]::before,
  i.icon-lg[class*=" icon-"]::before {
    font-size: calc(1.1rem + 1.6vmin);
  }
}

i.icon-xl[class^=icon-]::before,
i.icon-xl[class*=" icon-"]::before {
  font-size: 3.25rem;
}

@media (max-width: 900px), (max-height: 900px) {
  i.icon-xl[class^=icon-]::before,
  i.icon-xl[class*=" icon-"]::before {
    font-size: calc(1.225rem + 3.6vmin);
  }
}

i.icon-xxl[class^=icon-]::before,
i.icon-xxl[class*=" icon-"]::before {
  font-size: 6.6rem;
}

@media (max-width: 900px), (max-height: 900px) {
  i.icon-xxl[class^=icon-]::before,
  i.icon-xxl[class*=" icon-"]::before {
    font-size: calc(1.56rem + 8.96vmin);
  }
}

/**/

:root {
  --swiper-theme-color: #d16520;
}

.swiper-lazy-preloader {
  border-width: 2px;
}

.page-wrapper {
  overflow: hidden;
}

.fixed-scale {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100vh;
  z-index: 99;
  opacity: 0.6;
}

.fixed-scale::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: white;
}

.fixed-scale .scale-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.fixed-scale .scale-wrapper .numbers {
  position: relative;
}

.fixed-scale .scale-wrapper .numbers span {
  display: block;
  text-align: right;
  font-size: 0.6875rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.fixed-scale .scale-wrapper .numbers.numbers-right {
  right: 15%;
}

.fixed-scale .scale-wrapper .numbers.numbers-left {
  left: 0%;
  width: 26px;
}

.fixed-scale .scale-wrapper .indicator {
  width: 35px;
  position: absolute;
  top: 25.2%;
}

.bg-fixed {
  position: fixed !important;
  height: 100vh;
}

.bg-absolute {
  position: absolute !important;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}

.websites {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  font-size: 0;
}

.websites li {
  display: inline-block;
}

.websites li .btn-landing {
  display: block;
  width: 480px;
  height: 400px;
  position: relative;
  border-radius: 30px;
  transition: opacity 250ms ease-in-out;
}

.websites li .btn-landing .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.websites li .btn-landing .content img {
  height: 125px;
  margin-bottom: 40px;
}

.websites li .btn-landing .content span {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  color: #fff;
}

.websites li .btn-landing:hover {
  opacity: 0.5;
}

.websites li:nth-child(1) {
  display: block;
  margin-bottom: 20px;
}

.websites li:nth-child(1) .btn-landing {
  display: inline-block;
}

.websites li:nth-child(2) {
  margin-right: 60px;
}

.websites li:nth-child(2) .btn-landing {
  width: 300px;
  height: 180px;
}

.websites li:nth-child(2) .btn-landing .content img {
  height: 125px;
  margin-bottom: 40px;
}

.websites li:nth-child(2) .btn-landing .content span {
  font-size: 0.6rem;
  letter-spacing: 0.2rem;
}

.websites li:nth-child(3) {
  margin-left: 60px;
}

.websites li:nth-child(3) .btn-landing {
  width: 300px;
  height: 180px;
}

.websites li:nth-child(3) .btn-landing .content img {
  height: 125px;
  margin-bottom: 40px;
}

.websites li:nth-child(3) .btn-landing .content span {
  font-size: 0.6rem;
  letter-spacing: 0.2rem;
}

.lines {
  position: relative;
  display: inline-block;
  opacity: 0.3;
}

.lines span {
  height: 35px;
  width: 1px;
  background: #fff;
  margin: 0px 9px;
  display: inline-block;
}

.section .bg-image-wrapper {
  min-height: 100vh;
}

.section .bg-image-wrapper .bg-image {
  background-attachment: fixed;
}

.categories-banner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle, #d16520 0%, #61171b 80%);
}

.categories-banner .landing-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.categories-banner .canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 0;
}

.categories-banner .canvas-wrapper:hover {
  opacity: 1;
}

.categories-banner .canvas-wrapper canvas {
  will-change: transform;
  opacity: 0;
  transition: opacity 500ms ease-in;
}

.categories-banner .canvas-wrapper canvas.active {
  opacity: 1;
}

.categories-banner .categories-buttons {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
}

.categories-banner .categories-buttons .category-button {
  flex: 0 0 33.333%;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  text-align: left;
}

.categories-banner .categories-buttons .category-button .logo {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
}

.categories-banner .categories-buttons .category-button .logo img {
  height: 70px;
  max-width: 100%;
}

.categories-banner .categories-buttons .category-button .logo .text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  font-weight: 300;
  opacity: 0;
  transition-property: top, opacity;
  transition-duration: 500ms;
  transition-timing-function: ease-in-out;
}

.categories-banner .categories-buttons .category-button:hover .logo .text {
  opacity: 1;
  top: calc(100% + 5px);
}

.categories-banner .categories-buttons .category-button:nth-child(2) .logo {
  bottom: 30%;
}

.categories-banner .categories-buttons .category-button:last-child {
  border-right: none;
}

.incident-badge-wrapper {
  background-color: #61171b;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.65);
  display: inline-block;
  margin: 0 auto;
}

.incident-badge-wrapper .incident-badge {
  padding: 20px 20px 30px;
  text-align: center;
  background-color: #992d33;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  transition: background-color 500ms ease-out;
}

.incident-badge-wrapper .incident-badge img {
  height: 26px;
  margin-bottom: 8px;
}

.incident-badge-wrapper .incident-badge p {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

.incident-badge-wrapper .incident-info {
  text-align: center;
  padding: 15px 10px;
}

.incident-badge-wrapper .incident-info p {
  font-size: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.incident-badge-wrapper:hover .incident-badge {
  background-color: #722126;
}

.banner-goods {
  text-align: center;
  background-color: rgba(97, 23, 27, 0.7);
  padding: 40px 10px;
  position: relative;
  margin-bottom: 3rem;
}

.banner-goods i {
  display: block;
  margin-bottom: 5px;
}

.banner-goods i::before {
  font-size: 3rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .banner-goods i::before {
    font-size: calc(1.2rem + 3.2vmin);
  }
}

.banner-goods .name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
}

.banner-goods .value {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (max-width: 900px), (max-height: 900px) {
  .banner-goods .value {
    font-size: calc(1.06rem + 0.96vmin);
  }
}

.banner-goods .unit {
  font-size: 0.625rem;
}

.banner-goods::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.23);
  width: 86%;
  height: 114%;
}

.max-w-580 {
  max-width: 580px;
}

.noise {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 640px;
  width: 100%;
  overflow: hidden;
}

.noise .noise-background,
.noise .noise-pattern {
  -webkit-clip-path: url(#noise-mask);
          clip-path: url(#noise-mask);
}

.bg-noise {
  background-color: #3d1d09;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 630px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 0% 100%);
}

.bg-noise::after {
  content: "";
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url(../images/noise.png?5058f6b59340f1f98757fdce96e77144);
  background-position: 50%;
  position: absolute;
  left: -10rem;
  top: -10rem;
  will-change: transform;
  -webkit-animation: noise 1s steps(2) infinite;
          animation: noise 1s steps(2) infinite;
}

@-webkit-keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }

  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }

  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }

  30% {
    transform: translate3d(9rem, -9rem, 0);
  }

  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }

  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }

  60% {
    transform: translate3d(2rem, 6rem, 0);
  }

  70% {
    transform: translate3d(7rem, -8rem, 0);
  }

  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }

  90% {
    transform: translate3d(6rem, -5rem, 0);
  }

  to {
    transform: translate3d(-7rem, 0, 0);
  }
}

@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }

  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }

  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }

  30% {
    transform: translate3d(9rem, -9rem, 0);
  }

  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }

  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }

  60% {
    transform: translate3d(2rem, 6rem, 0);
  }

  70% {
    transform: translate3d(7rem, -8rem, 0);
  }

  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }

  90% {
    transform: translate3d(6rem, -5rem, 0);
  }

  to {
    transform: translate3d(-7rem, 0, 0);
  }
}

.submenu {
  list-style: none;
  padding-left: 10px;
  padding-top: 1rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 600;
}

.submenu li {
  margin-bottom: 6px;
}

.submenu li a,
.submenu li button {
  color: #fff;
}

.submenu li a.active,
.submenu li button.active {
  color: #d16520;
}

.submenu li a:hover,
.submenu li button:hover {
  opacity: 0.6;
}

.embed-container {
  position: relative;
  padding-bottom: calc(285 / 506 * 100%);
  overflow: hidden;
  max-width: 100%;
  background: black;
}

.video-wrapper {
  position: relative;
  line-height: 0;
}

.video-wrapper .video-text {
  display: inline-block;
  background-color: #fff;
  line-height: 1;
  padding: 22px 30px;
  color: #61171b;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

.video-wrapper .video-text p:nth-child(1) {
  white-space: nowrap;
  font-size: 0.875rem;
}

.video-wrapper .video-text p:nth-child(2) {
  font-size: 0.65rem;
  line-height: 1.4;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.history-slider-wrapper {
  position: relative;
}

.history-slider-wrapper .swiper-wrapper {
  position: absolute;
  top: 0;
}

.history-slider-wrapper .timeline {
  width: 90%;
  height: 2px;
  background-color: #d16520;
  position: absolute;
  z-index: 15;
  top: 66%;
  left: 5%;
}

.history-slider-wrapper .timeline::before,
.history-slider-wrapper .timeline .end::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 49px;
  height: 21px;
  background-image: url(../images/symbol.svg?21c50b3a824503df6cd3ed41a4e831b6);
  background-repeat: no-repeat;
}

.history-slider-wrapper .timeline .end {
  position: absolute;
  left: calc(100% - 3px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 55px;
  opacity: 0;
  text-align: right;
}

.history-slider-wrapper .timeline .end p {
  white-space: nowrap;
  font-size: 3.4375rem;
  color: #d16520;
  font-family: "corundum-text", serif;
}

@media (max-width: 900px), (max-height: 900px) {
  .history-slider-wrapper .timeline .end p {
    font-size: calc(1.24375rem + 3.9vmin);
  }
}

.history-slider-wrapper .timeline .end .btn-more {
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.36);
  color: #fff;
  z-index: 15;
  font-family: "corundum-text", serif;
  letter-spacing: 0.06rem;
  padding: 5px;
  white-space: nowrap;
  transition: all 250ms ease-in-out;
}

.history-slider-wrapper .timeline .end .btn-more:hover {
  color: #3e2515;
  background: white;
}

.history-slider-wrapper .timeline .end::before {
  left: 0;
}

.history-slider-wrapper .timeline::before {
  right: calc(100% - 3px);
}

.img-wrapper img {
  margin-bottom: 10px;
  max-width: 100%;
}

.img-wrapper p {
  color: #61171b;
  font-size: 0.625rem;
}

.img-wrapper p b {
  font-weight: 800;
}

.people-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.people-list li {
  margin-left: 20px;
  margin-bottom: 34px;
  max-width: calc(25% - 20px);
  width: calc(25% - 20px);
}

.people-list .person {
  color: #fff;
  width: 100%;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 15px;
  text-align: left;
  position: relative;
  display: inline-flex;
  flex-flow: column;
  justify-content: flex-end;
}

.people-list .person::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  background-color: #d16520;
  position: absolute;
  bottom: 72px;
  left: -4px;
}

.people-list .person .name {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .people-list .person .name {
    font-size: calc(1.03rem + 0.48vmin);
  }
}

.people-list .person .position {
  font-size: 0.7rem;
  white-space: nowrap;
}

.people-list .person .company {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  white-space: nowrap;
  color: #d16520;
}

.people-list .person .bio {
  font-size: 0.5625rem;
  background-color: #61171b;
  border: 1px solid #61171b;
  display: inline-block;
  position: absolute;
  bottom: -8px;
  right: -8px;
  padding: 6px 12px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
  transition: all 250ms ease-out;
}

.people-list .person:hover .bio {
  background-color: #fff;
  color: #61171b;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  border-color: #fff;
}

.chart-wrapper .chart-header,
.chart-wrapper .block {
  text-align: center;
}

.chart-wrapper .chart-header .name,
.chart-wrapper .block .name {
  font-weight: 700;
}

.chart-wrapper .chart-header .country,
.chart-wrapper .block .country {
  display: inline-block;
  font-size: 0.5625rem;
  background-color: #61171b;
  padding: 7px 5px;
  width: 104px;
  text-align: center;
  margin: 10px 0px;
}

.chart-wrapper .chart-header .percent,
.chart-wrapper .block .percent {
  font-weight: 700;
}

.chart-wrapper .chart-header-wrapper {
  text-align: center;
  padding-bottom: 100px;
  position: relative;
}

.chart-wrapper .chart-header-wrapper .chart-header {
  display: inline-block;
  padding: 30px 105px 10px 105px;
  border-width: 1px 1px 0px 1px;
  border-color: #fff;
  border-style: solid;
  position: relative;
}

.chart-wrapper .chart-header-wrapper .chart-header .name {
  font-size: 1.25rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .chart-wrapper .chart-header-wrapper .chart-header .name {
    font-size: calc(1.025rem + 0.4vmin);
  }
}

.chart-wrapper .chart-header-wrapper .chart-header .percent {
  font-size: 0.75rem;
}

.chart-wrapper .chart-header-wrapper .chart-header::before,
.chart-wrapper .chart-header-wrapper .chart-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 168px;
  height: 1px;
  background-color: #fff;
}

.chart-wrapper .chart-header-wrapper .chart-header::before {
  left: 0;
  transform: rotateZ(10deg);
  transform-origin: 0 0;
}

.chart-wrapper .chart-header-wrapper .chart-header::after {
  right: 0;
  transform: rotateZ(-10deg);
  transform-origin: 100% 100%;
}

.chart-wrapper .chart-header-wrapper::before,
.chart-wrapper .chart-header-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d16520;
}

.chart-wrapper .chart-header-wrapper::before {
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 188px);
  height: 1px;
}

.chart-wrapper .chart-header-wrapper::after {
  top: calc(100% - 60px);
  left: 50%;
  width: 1px;
}

.chart-wrapper .block {
  border: 1px solid #fff;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.chart-wrapper .block .name {
  font-size: 0.65rem;
  white-space: nowrap;
  position: absolute;
  top: calc(50% - 12px);
  left: 50%;
  transform: translate(-50%, -100%);
}

.chart-wrapper .block .country {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.chart-wrapper .block .percent {
  font-size: 0.5rem;
  white-space: nowrap;
  position: absolute;
  top: calc(50% + 18px);
  left: 50%;
  transform: translate(-50%, 100%);
}

.chart-wrapper .block::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #d16520;
  width: 1px;
  top: -30px;
  left: 50%;
}

.seagull-1,
.seagull-2 {
  position: absolute;
}

.seagull-1 {
  width: 28px;
  bottom: calc(100% + 60px);
  right: -60px;
}

.seagull-2 {
  width: 83px;
  top: 60px;
  right: calc(100% + 80px);
}

.news-filters {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.news-filters li {
  position: relative;
  margin-right: 2rem;
}

.news-filters li a {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  opacity: 1;
}

.news-filters li a::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 55%;
  right: -1rem;
  transform: translateY(-50%);
}

.news-filters li a:hover {
  opacity: 0.6;
}

.news-filters li a.active {
  color: #d16520;
  opacity: 1;
}

.news-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.news-list li {
  margin-bottom: 8px;
}

.news-list li .article-preview {
  text-align: left;
  background-color: #fff;
  position: relative;
  padding: 30px 40px 40px 75px;
  width: 100%;
  transition: transform 250ms ease-in-out;
}

.news-list li .article-preview .date {
  width: 88px;
  height: 88px;
  background-color: #61171b;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.news-list li .article-preview .date::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

.news-list li .article-preview .date .month {
  position: absolute;
  left: 50%;
  top: calc(50% - 18px);
  transform: translate(-50%, -50%);
  font-size: 1.125rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .news-list li .article-preview .date .month {
    font-size: calc(1.0125rem + 0.2vmin);
  }
}

.news-list li .article-preview .date .year {
  position: absolute;
  left: 50%;
  top: calc(50% + 14px);
  transform: translate(-50%, -50%);
  font-size: 0.5625rem;
}

.news-list li .article-preview .title {
  font-weight: 700;
  color: #61171b;
  font-size: 1rem;
  margin-bottom: 5px;
  letter-spacing: 0;
}

.news-list li .article-preview .descr {
  color: #484848;
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.news-list li .article-preview:hover {
  transform: translateX(10px);
}

.vessels-filters {
  position: absolute;
  z-index: 5;
  top: 30px;
  left: 0;
}

.vessels-filters .all {
  color: #fff;
  font-size: 0.6875rem;
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 72px;
}

.vessels-filters .all::before {
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 250ms ease-out;
}

.vessels-filters .all:hover::before {
  width: 35px;
}

.vessels-filters .all.active::before {
  width: 55px;
}

.vessels-filters .filter {
  display: block;
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 72px;
}

.vessels-filters .filter i::before {
  color: rgba(255, 255, 255, 0.5);
  transition: all 250ms ease-out;
}

.vessels-filters .filter:nth-child(1) i::before {
  font-size: 1.44rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .vessels-filters .filter:nth-child(1) i::before {
    font-size: calc(1.044rem + 0.704vmin);
  }
}

.vessels-filters .filter:nth-child(2) i::before {
  font-size: 1.5rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .vessels-filters .filter:nth-child(2) i::before {
    font-size: calc(1.05rem + 0.8vmin);
  }
}

.vessels-filters .filter:nth-child(3) i::before {
  font-size: 1.4rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .vessels-filters .filter:nth-child(3) i::before {
    font-size: calc(1.04rem + 0.64vmin);
  }
}

.vessels-filters .filter:nth-child(4) i::before {
  font-size: 1rem;
}

.vessels-filters .filter:nth-child(5) i::before {
  font-size: 1.2rem;
}

@media (max-width: 900px), (max-height: 900px) {
  .vessels-filters .filter:nth-child(5) i::before {
    font-size: calc(1.02rem + 0.32vmin);
  }
}

.vessels-filters .filter:nth-child(6) i::before {
  font-size: 0.88rem;
}

.vessels-filters .filter p {
  font-size: 0.6875rem;
  color: #3e2515;
  white-space: nowrap;
}

.vessels-filters .filter::before {
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  background-color: #fff;
  position: absolute;
  top: 35%;
  left: 0;
  transition: all 250ms ease-out;
}

.vessels-filters .filter:hover i::before,
.vessels-filters .filter.active i::before {
  color: white;
}

.vessels-filters .filter:hover::before {
  width: 35px;
}

.vessels-filters .filter.active::before {
  width: 55px;
}

.vessel-collapse button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem 1rem 1rem;
  border-bottom: 1px solid #b5b5b3;
  width: 100%;
  position: relative;
  font-size: 0.8125rem;
  font-weight: 100;
  background-color: rgba(97, 23, 27, 0.9);
  color: #fff;
}

.vessel-collapse button i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotateZ(0deg);
  transition: transform 250ms ease-in-out;
}

.vessel-collapse button i::before {
  font-size: 0.7rem;
  color: #fff;
}

.vessel-collapse button .index {
  position: absolute;
  top: 50%;
  left: -2.2rem;
  transform: translateY(-50%);
  text-align: right;
  width: 20px;
  color: #fff;
}

.vessel-collapse button .title {
  font-weight: 700;
}

.vessel-collapse button.collapsed i {
  transform: translateY(-50%) rotateZ(-45deg);
}

.vessel-collapse .collapse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #b5b5b3;
  width: 100%;
  position: relative;
  font-size: 0.8125rem;
  font-weight: 100;
  background-color: #fff;
  color: rgba(97, 23, 27, 0.9);
}

.vessel-collapse .collapse-row .title {
  font-weight: 700;
}

.service-text-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 50px 48px 35px;
  position: relative;
  margin-bottom: 60px;
}

.service-text-box .title {
  left: 18px;
  display: inline-block;
  font-size: 1rem;
  background: #61171b;
  padding: 12px 20px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  font-weight: 400;
}

.service-text-box .text {
  font-weight: 300;
}

.services-contact-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-contact-links li {
  margin: 0 20px;
}

.services-contact-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-contact-links li a i {
  background: #fff;
  width: 29px;
  height: 29px;
  position: relative;
  display: block;
  border-radius: 50%;
}

.services-contact-links li a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #61171b;
}

.services-contact-links li a span {
  margin-left: 5px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 250ms ease-in-out;
}

.services-contact-links li a:hover span {
  color: #d16520;
}

.services-contact-links li:nth-child(1) i::before {
  font-size: 0.8rem;
}

.services-contact-links li:nth-child(2) i::before {
  font-size: 0.7rem;
}

.news-list-services {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.news-list-services li {
  margin-left: 20px;
  margin-bottom: 34px;
  max-width: calc(50% - 20px);
  width: calc(50% - 20px);
}

.news-list-services .article {
  color: #fff;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 25px 35px;
  text-align: left;
  position: relative;
  display: inline-flex;
  flex-flow: column;
  transition: background 250ms ease-in-out;
}

.news-list-services .article .date {
  font-size: 1.5625rem;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}

@media (max-width: 900px), (max-height: 900px) {
  .news-list-services .article .date {
    font-size: calc(1.05625rem + 0.9vmin);
  }
}

.news-list-services .article .date b {
  font-weight: 700;
  margin-right: 10px;
}

.news-list-services .article .date::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  background-color: #d16520;
  position: absolute;
  top: calc(100% + 10px);
  left: -30px;
}

.news-list-services .article .title {
  font-size: 0.75rem;
  line-height: 1.8;
}

.news-list-services .article:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1199.5px) {
  .vessels-filters {
    position: relative;
    top: 0px;
    margin-bottom: 2rem;
  }

  .vessels-filters .all {
    padding-left: 50px;
  }

  .vessels-filters .all .active::before {
    width: 35px;
  }

  .vessels-filters .filter {
    padding-left: 50px;
  }

  .vessels-filters .filter::before {
    content: unset;
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: calc(100% - 164px);
  }

  .people-list li {
    max-width: calc(35% - 20px);
    width: calc(35% - 20px);
  }
}

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

  .websites li {
    display: block;
  }

  .websites li:nth-child(2),
  .websites li:nth-child(3) {
    margin-left: 0px;
    margin-right: 0px;
  }

  .websites li:nth-child(2) .btn-landing,
  .websites li:nth-child(3) .btn-landing {
    display: inline-block;
  }

  .websites li:nth-child(3) {
    margin-top: 60px;
  }

  .history-slider-wrapper .timeline {
    width: 85%;
    left: 10%;
  }

  .people-list li {
    max-width: calc(45% - 20px);
    width: calc(45% - 20px);
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: calc(100% - 151px);
  }

  .vessels-filters .filter {
    margin-bottom: 20px;
    padding: 0px 20px 0px 0px;
  }

  .vessels-filters .d-flex {
    overflow: auto;
    margin: 0px 110px 0px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .section .container {
    height: unset;
  }

  .section .container .fp-content {
    max-height: unset;
  }

  .bg-noise {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 100%);
    height: 500px;
  }

  .people-list li {
    max-width: calc(80% - 20px);
    width: calc(80% - 20px);
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: calc(100% - 207px);
  }

  .news-list li {
    margin-bottom: 5rem;
  }

  .news-list li .article-preview {
    text-align: center;
    padding: 60px 40px 40px 30px;
  }

  .news-list li .article-preview .date {
    left: 50%;
    top: 0;
  }

  .news-list li .article-preview:hover {
    transform: translateY(-10px);
  }

  .news-list-services li {
    margin-left: 0px;
    max-width: 100%;
    width: 100%;
  }
}

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

  .fixed-scale {
    display: none;
  }

  .websites li .btn-landing {
    width: 100%;
  }

  .websites li .btn-landing .content {
    width: 100%;
  }

  .websites li .btn-landing .content img {
    width: 100%;
  }

  .websites li:nth-child(2) .btn-landing,
  .websites li:nth-child(3) .btn-landing {
    width: 100%;
  }

  .bg-noise {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
    height: 380px;
  }

  .history-slider-wrapper .timeline-start .text {
    top: 12px;
    font-size: 0.6rem;
  }

  .history-slider-wrapper .timeline {
    width: 88%;
    left: 8%;
  }

  .history-slider-wrapper .timeline::before,
  .history-slider-wrapper .timeline .end::before {
    width: 20px;
    height: 9px;
  }

  .people-list {
    justify-content: flex-end;
  }

  .people-list li {
    margin-left: 0px;
    max-width: 100%;
    width: 100%;
  }

  .video-wrapper .video-text {
    padding: 14px 10px;
  }

  .video-wrapper .video-text p {
    font-size: 0.68rem;
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: 42%;
  }

  .chart-wrapper .chart-header-wrapper .chart-header::before,
  .chart-wrapper .chart-header-wrapper .chart-header::after {
    width: 51%;
  }

  .vessels-filters .d-flex {
    overflow: auto;
    margin: 0px 20px 0px 50px;
  }

  .vessels-filters .filter p {
    color: #fff;
  }

  .service-text-box {
    padding: 50px 30px 40px;
  }

  .service-text-box .title {
    font-size: 0.8rem;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .services-contact-links {
    flex-flow: column;
  }

  .services-contact-links li {
    margin: 10px 0px;
  }
}

@media only screen and (orientation: portrait) and (max-width: 991px) {
  .categories-banner .categories-buttons {
    flex-flow: column;
  }

  .categories-banner .categories-buttons .category-button {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .categories-banner .categories-buttons .category-button .logo {
    bottom: unset;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .categories-banner .categories-buttons .category-button .logo .text {
    color: #e28042;
  }

  .categories-banner .categories-buttons .category-button:nth-child(1) {
    flex: 0 0 30%;
    order: 2;
  }

  .categories-banner .categories-buttons .category-button:nth-child(1) .logo {
    bottom: unset;
    top: 50%;
  }

  .categories-banner .categories-buttons .category-button:nth-child(2) {
    flex: 0 0 40%;
    order: 1;
  }

  .categories-banner .categories-buttons .category-button:nth-child(2) .logo {
    bottom: unset;
    top: 50%;
  }

  .categories-banner .categories-buttons .category-button:nth-child(3) {
    flex: 0 0 30%;
    order: 3;
  }

  .categories-banner .categories-buttons .category-button:nth-child(3) .logo {
    bottom: unset;
    top: 50%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1170px) {
  .container {
    padding-right: 95px;
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: calc(100% - 148px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
  .container {
    padding-right: 95px;
  }

  .chart-wrapper .chart-header-wrapper::before {
    width: calc(100% - 130px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 750px) {
  .container {
    padding-right: 95px;
  }
}

@media only screen and (min-width: 576px) {
  .incident-badge-wrapper .incident-badge {
    padding: 20px 20px 40px;
  }

  .incident-badge-wrapper .incident-badge img {
    height: 36px;
    margin-bottom: 12px;
  }

  .incident-badge-wrapper .incident-badge p {
    font-size: 0.75rem;
  }

  .incident-badge-wrapper .incident-info {
    padding: 15px 13px;
  }

  .incident-badge-wrapper .incident-info p {
    font-size: 0.55rem;
  }
}


/*# sourceMappingURL=styles.css.map*/