.d-none {
  display: none !important;
}

/*COLUMN GRID */
.grid {
  display: grid;
  column-gap: 4rem;
}

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

@media (max-width: 767.8px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* RESOURCE DETAILS PADDING */
.mrvll-resource-padding {
}
/* MARVELL BUTTONS */

.mrvll-buttons {
  display: flex;
  /* justify-content: space-between; */
}
.mrvll-buttons > *:not(:last-child) {
  margin-right: 2rem;
}

.mrvll-button {
  align-self: flex-start;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  padding: 15px 45px 15px 24px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}

.mrvll-button::after {
  content: "";
  position: absolute;
  background-image: url("../../reference-img/nav-arrow-right.svg");
  background-repeat: no-repeat;
  transition: right 0.25s ease-out;
  width: 10px;
  height: 15px;
  top: 34%;
  right: 22px;
}
.mrvll-button:hover::after {
  right: 16px;
}
.mrvll-button.primary {
  color: #fff;
  background-color: #000;
}
.mrvll-button.secondary {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.mrvll-button.secondary.dark {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 480px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

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

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.color-white {
  color: #fff !important;
}

.mrvll-color-gray-light {
  color: #c8c9c7 !important;
}

.mrvll-color-gray-medium {
  color: #a7a8a9 !important;
}

.mrvll-color-gray {
  color: #63666a !important;
}

.mrvll-page-content h1 {
  font-size: 2.8rem;
  line-height: 2.8rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .mrvll-page-content h1 {
    font-size: 3rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 992px) {
  .mrvll-page-content h1 {
    font-size: 3.8rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 1200px) {
  .mrvll-page-content h1 {
    font-size: 4.35rem;
    line-height: 3.9rem;
  }
}

.mrvll-page-content h2 {
  font-size: 1.9rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
@media (min-width: 992px) {
  .mrvll-page-content h2 {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}

.mrvll-page-content h3 {
  font-size: 1.25rem;
  line-height: 1.6rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
@media (min-width: 992px) {
  .mrvll-page-content h3 {
    font-size: 1.85rem;
    line-height: 2.4rem;
  }
}
.mrvll-page-content h3.mrvll-h3-products {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .mrvll-page-content h3.mrvll-h3-products {
    font-size: 1.25rem;
    line-height: 1.6rem;
  }
}
.mrvll-page-content h3.mrvll-subhead {
  font-weight: 200;
  font-size: 1.5rem;
}
.mrvll-page-content h3.mrvll-subhead.mrvll-subhead-products {
  font-size: 16px;
  line-height: 26px;
  color: #7b7b7b;
}
@media (min-width: 768px) {
  .mrvll-page-content h3.mrvll-subhead.mrvll-subhead-products {
    font-size: 18px;
    line-height: 30px;
  }
}

.mrvll-page-content h4 {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.mrvll-page-content p.p-1 {
  font-size: 0.95rem;
}

.mrvll-page-content .mrvll-eyebrow {
  font-size: 0.95rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
.mrvll-page-content .mrvl-small-eyebrow {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  color: #0072CE;
  text-transform: uppercase;
}
.mrvll-page-content .mrvll-eyebrow.text-center {
  transform: translateX(2px);
}
.mrvll-page-content .mrvl-category-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  padding: 8px 30px 8px 0;
  color: #000;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: Setimo;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  min-width: 200px;
}
.mrvll-page-content .mrvll-breadcrumbs {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 107%;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}
.mrvll-text-link {
  display: inline-block;
  align-self: flex-start;
  color: #000;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background-image: url("../reference-img/nav-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 10px 15px;
  background-position: center right 10px !important;
  padding-right: 33px;
  width: max-content;
  transition: background-position 0.25s ease-out;
}

.mrvll-page-content .mrvll-text-link {
  background-image: url("../reference-img/nav-arrow-right.svg");
}
.mrvll-page-content .mrvll-text-link-refresh {
  display: inline-block;
  align-self: flex-start;
  color: #0072ce;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background-image: url("../reference-img/refresh-icon.svg");
  background-repeat: no-repeat;
  background-size: 10px 15px;
  background-position: center left 10px !important;
  padding-left: 33px;
  width: max-content;
  transition: background-position 0.25s ease-out;
}
.mrvll-page-content .mrvll-text-link:hover {
  background-position: center right 0 !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-small {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-transparent-bg {
  background-color: transparent;
  padding: 15px 45px 15px 24px;
  border-radius: 4px;
  background-size: 8px 13px;
  background-position: center right 22px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-transparent-bg:hover {
  background-position: center right 15px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-white-bg {
  background-color: #fff;
  padding: 15px 45px 15px 24px;
  border-radius: 4px;
  background-size: 8px 13px;
  background-position: center right 22px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-white-bg:hover {
  background-position: center right 15px !important;
}
.mrvll-page-content
  .mrvll-text-link.mrvll-text-link-white-bg.mrvll-text-link-right-aligned {
  padding-right: 25px;
  background-position: center right !important;
}
.mrvll-page-content
  .mrvll-text-link.mrvll-text-link-white-bg.mrvll-text-link-right-aligned:hover {
  background-position: center right !important;
}
@media (min-width: 768px) {
  .mrvll-page-content
    .mrvll-text-link.mrvll-text-link-white-bg.mrvll-text-link-right-aligned {
    padding-right: 45px;
    background-position: center right 22px !important;
  }
  .mrvll-page-content
    .mrvll-text-link.mrvll-text-link-white-bg.mrvll-text-link-right-aligned:hover {
    background-position: center right 15px !important;
  }
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-video {
  background-image: url("../reference-img/nav-arrow-video-right.svg");
  background-position: center left 16px !important;
  background-size: 20px;
  padding: 15px 24px 15px 49px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-video:hover {
  background-position: center left 20px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-black-bg {
  background-color: #000;
  padding: 15px 45px 15px 24px;
  border-radius: 4px;
  background-size: 8px 13px;
  background-position: center right 22px !important;
  color: #fff;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-black-bg:hover {
  background-position: center right 15px !important;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-black-border {
  border: 1px solid #000;
}
.mrvll-page-content .mrvll-text-link.mrvll-text-link-white-border {
  border: 1px solid #fff;
}

.nobr-sm-down {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nobr-sm-down {
    white-space: inherit;
  }
}

p.mrvll-product-feature-subtext {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  p.mrvll-product-feature-subtext {
    font-size: 1.5rem;
    line-height: 2.4rem;
    max-width: 50%;
  }
}

.mrvll-content-padding-1 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

@media (min-width: 992px) {
  .mrvll-content-padding-2 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

@media (min-width: 1200px) {
  .mrvll-content-padding-1 {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .mrvll-content-padding-2 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
}

@media (min-width: 1440px) {
  .container {
    width: calc(1440px - 30px);
  }
}

@media (max-width: 1199.6px) {
  .container {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }
  .no-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .dont-collapse-lg {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}

.mrvll-logo {
  flex-grow: 1;
}
.mrvll-logo img {
  width: auto;
  height: 40px;
}

@media (min-width: 992px) {
  .mrvll-logo img {
    width: auto;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  .mrvll-logo img {
  }
}

.mrvll-navigation {
  position: absolute;
  top: 0;
  display: flex;
  height: auto;
  z-index: 3;
}
.mrvll-navigation ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.mrvll-navigation .mrvll-nav-blackout {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-out;
}
.mrvll-navigation.menu-open .mrvll-nav-blackout,
.mrvll-navigation .mrvll-nav-blackout.open {
  opacity: 1;
  pointer-events: all;
}
.mrvll-navigation .mrvll-nav-bar {
  display: flex;
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #000;
  height: 80px;
  border-bottom: 1px solid transparent;
  transition: border 0.5s ease-out;
}
.mrvll-navigation .mrvll-nav-bar.scrolled-below-hero {
  border-bottom: 1px solid #ccc;
}
.mrvll-navigation .mrvll-nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mrvll-navigation .mrvll-nav-bar .container:before,
.mrvll-navigation .mrvll-nav-bar .container:after {
  content: unset;
}
.mrvll-navigation.menu-open .mrvll-nav-bar {
  border-bottom: 1px solid #ccc;
}
.mrvll-navigation .mrvll-nav-items {
  display: none;
}
.mrvll-navigation .mrvll-nav-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mrvll-navigation .mrvll-nav-icon {
  position: relative;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  transition: opacity 0.15s ease-out;
}
.mrvll-navigation .mrvll-nav-icon-lang {
  background-image: url("../reference-img/icon-globe.svg");
}
.mrvll-navigation .mrvll-nav-icon-login {
  background-image: url("../reference-img/icon-login.svg");
}
.mrvll-navigation .mrvll-nav-icon-search {
  background-image: url("../reference-img/icon-search.svg");
}
.mrvll-navigation .mrvll-menu-generic {
  height: 0;
  overflow: hidden;
  display: flex;
  position: fixed;
  z-index: 3;
  background: #fff;
  width: 100%;
  pointer-events: none;
  transition: height 0.25s ease-in;
}
.mrvll-navigation.menu-open .mrvll-menu-generic {
  pointer-events: all;
}
.mrvll-navigation .mrvll-menu-generic {
  top: 80px;
}
.mrvll-navigation.menu-open .mrvll-menu {
  height: calc(100% - 80px);
}
.mrvll-navigation .mrvll-menu-desktop {
  display: none;
}
.mrvll-navigation .mrvll-menu-mobile {
  width: 100%;
  border-top: 1px solid #dbdcda;
}
.mrvll-navigation .mrvll-menu-first-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mrvll-navigation .mrvll-nav-icon {
  margin-right: 20px;
}
.mrvll-navigation .mrvll-nav-icon:last-child {
  margin-right: 0;
}
.mrvll-navigation .mrvll-nav-mobile-icons {
  width: 100%;
  background: #f4f4f4;
}
.mrvll-navigation .mrvll-nav-mobile-icons .mrvll-nav-icon {
  padding-left: 60px;
  background-position: 24px center;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000;
  font-size: 0.85rem;
  background-color: #fff;
}
.mrvll-navigation .mrvll-nav-mobile-icons .mrvll-nav-icon.mrvll-nav-icon-lang {
  border-top: 1px solid #dbdcda;
  border-bottom: 1px solid #dbdcda;
}
.mrvll-navigation
  .mrvll-nav-mobile-icons
  .mrvll-nav-icon.mrvll-nav-icon-lang
  span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url("../reference-img/dash-blue.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
}
.mrvll-navigation
  .mrvll-nav-mobile-icons
  .mrvll-nav-icon.mrvll-nav-icon-lang.collapsed
  span {
  background-image: url("../reference-img/plus-blue.svg");
}
.mrvll-navigation .mrvll-nav-mobile-icons .lang-unselected {
  text-transform: uppercase;
  font-size: 0.75rem;
  padding-left: 60px;
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mrvll-navigation .mrvll-nav-mobile-icons .lang-unselected a {
  color: #63666a;
}
.mrvll-navigation .mrvll-nav-mobile-icons .lang-unselected span {
  margin-right: 10px;
  color: #000;
}
.mrvll-navigation .mrvll-nav-mobile-icons .lang-unselected:first-child {
  margin-top: 10px;
}
.mrvll-navigation .mrvll-nav-mobile-icons .lang-unselected:last-child {
  margin-bottom: 10px;
}
.mrvll-navigation .mrvll-menu-mobile-toplinks li {
  background-color: #fff;
  background-image: url("../reference-img/arrow-blue-right.svg");
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: auto;
  cursor: pointer;
  border-bottom: 1px solid #dbdcda;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.08rem;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  color: #000;
}
.mrvll-navigation .mrvll-menu-second-screen {
  pointer-events: none;
  left: calc(100% + 1px);
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  top: 1px;
  transition: left 0.25s ease-out;
}
.mrvll-navigation .mrvll-menu-second-screen.screen-open {
  pointer-events: all;
  left: 0;
}
.mrvll-navigation .mrvll-menu-second-screen .mrvll-menu-mobile-toplinks {
  margin-bottom: 0;
}
.mrvll-navigation .mrvll-menu-second-screen .mrvll-menu-mobile-toplinks li {
  background-position: center left 25px;
  background-image: url("../reference-img/arrow-blue-left.svg");
  padding-left: 50px;
  margin-bottom: 0;
}
.mrvll-navigation .mrvll-menu-second-screen .mrvll-menu-second-screen-item {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.mrvll-navigation
  .mrvll-menu-second-screen
  .mrvll-menu-second-screen-item.current-item {
  display: flex;
}
.mrvll-navigation
  .mrvll-menu-second-screen
  .mrvll-menu-second-screen-item
  .mrvll-menu-mobile-toplinks {
  width: 100%;
}
.mrvll-navigation .mrvll-menu-content {
  padding: 25px;
  overflow-y: scroll;
}
.mrvll-navigation .mrvll-menu-content h4 {
  color: #000;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
}
.mrvll-navigation .mrvll-menu-content li {
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.mrvll-navigation .mrvll-menu-content a {
  color: #4a4a4a;
}
.mrvll-navigation .mrvll-menu-product-filters li {
  text-transform: uppercase;
  color: #747474;
  display: inline-block;
  font-weight: bold;
  margin-right: 35px;
  padding-bottom: 5px;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  cursor: pointer;
}
.mrvll-navigation .mrvll-menu-product-filters li:last-child {
  margin-right: 0;
}
.mrvll-navigation .mrvll-menu-product-filters li.filter-selected {
  color: #000;
  border-bottom: 2px solid #0072ce;
}
.mrvll-navigation .mrvll-menu-filter-content {
  display: none;
}
.mrvll-navigation .mrvll-menu-filter-content.filter-selected {
  display: block;
}
.mrvll-navigation .mrvll-menu-mainheader-outbound a {
  background-image: url("../reference-img/nav-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 10px 15px;
  background-position: center right 10px;
  padding-right: 33px;
  width: max-content;
  display: block;
  color: #000;
  transition: background-position 0.25s ease-out;
}
.mrvll-navigation .mrvll-menu-mainheader-outbound a:hover {
  background-position: center right 0;
}
@media (min-width: 992px) {
  .mrvll-navigation .mrvll-nav-bar {
    height: 80px;
  }
  .mrvll-navigation .mrvll-nav-bar .container {
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
  }
  .mrvll-navigation .mrvll-nav-icons {
    width: 18%;
  }
  .mrvll-navigation .mrvll-nav-icon::after {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0072ce;
    left: 0;
    margin-top: 30px;
  }
  .mrvll-navigation .mrvll-nav-icon:hover::after {
    width: 100%;
  }
  .mrvll-navigation .mrvll-nav-icon.selected::after {
    width: 100%;
  }
  .mrvll-navigation.menu-open .mrvll-menu {
    height: 500px;
  }
  .mrvll-navigation .mrvll-nav-items {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
  }
  .mrvll-navigation .mrvll-nav-items-wrapper {
    display: flex;
  }
  .mrvll-navigation .mrvll-nav-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    padding-right: 67px;
    margin-right: 45px;
    margin-top: 10px;
    transition: opacity 0.15s ease-out;
  }
  .mrvll-navigation .mrvll-nav-item::after {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0072ce;
    left: 0;
  }
  .mrvll-navigation .mrvll-nav-item:hover::after {
    width: 100%;
  }
  .mrvll-navigation .mrvll-nav-item:last-child {
    background: none;
    padding-right: 0;
    margin-right: 0;
  }
  .mrvll-navigation .mrvll-nav-item.current-item:hover {
    opacity: 1;
  }
  .mrvll-navigation .mrvll-nav-item.current-item::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0072ce;
    left: 0;
    width: 100%;
  }
  .mrvll-navigation .mrvll-nav-icon-search {
    margin-right: 0;
  }
  .mrvll-navigation.menu-open .mrvll-menu {
    height: 500px;
  }
  .mrvll-navigation .mrvll-menu-mobile {
    display: none !important;
  }
  .mrvll-navigation .mrvll-menu-desktop {
    opacity: 0;
    display: flex;
    pointer-events: none;
    position: relative;
  }
  .mrvll-navigation .mrvll-menu-desktop:before,
  .mrvll-navigation .mrvll-menu-desktop:after {
    content: unset;
  }
  .mrvll-navigation.menu-open .mrvll-menu-desktop {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.25s ease-out;
  }
  .mrvll-navigation .mrvll-menu-line {
    border-top: 1px solid #d8d8d8;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mrvll-navigation .mrvll-menu-category {
    pointer-events: none;
    opacity: 0;
    display: flex;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    padding-top: 60px;
    position: absolute;
    top: 0;
    width: calc(100% - 48px);
    left: 24px;
  }
  .mrvll-navigation .mrvll-menu-category.current-item {
    pointer-events: all;
    opacity: 1;
    transition: opacity 0.5s ease-out;
  }
  .mrvll-navigation .mrvll-menu-subheader {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: -10px;
    margin-top: -5px;
    color: #63666a;
  }
  .mrvll-navigation .mrvll-menu-mainheader {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .mrvll-navigation .mrvll-menu-mainheader-outbound {
    display: inline-block;
    margin-right: 40px;
  }
  .mrvll-navigation .mrvll-menu-mainheader-outbound:last-child {
    margin-right: 0;
  }
  .mrvll-navigation .mrvll-menu-sublinks li {
    margin-bottom: 8px;
    line-height: 1.2rem;
    font-size: 0.9rem;
  }
  .mrvll-navigation .mrvll-menu-sublinks li a {
    color: #4a4a4a;
    transition: color 0.15s ease-out;
  }
  .mrvll-navigation .mrvll-menu-sublinks li a:hover {
    color: #7d7d7d;
  }
  .mrvll-navigation .mrvll-menu-feature {
    background-image: url("../reference-img/nav-menu-feature.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    transition: all 0.25s ease-out;
  }
  .mrvll-navigation .mrvll-menu-feature::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    transition: inherit;
  }
  .mrvll-navigation .mrvll-menu-feature:hover::before {
    transform: scale(1.1);
  }
  .mrvll-navigation .mrvll-menu-feature a {
    position: relative;
    width: 100%;
    height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 15px;
  }
  .mrvll-navigation .mrvll-menu-feature:hover {
    transform: scale(1);
  }
  .mrvll-navigation .mrvll-menu-feature h5 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .mrvll-navigation .mrvll-menu-feature p {
    font-size: 1rem;
  }
  .mrvll-navigation .mrvll-menu-feature span {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
  }
  .mrvll-navigation .mrvll-menu-feature.mrvll-menu-feature-company {
    background-image: url("../reference-img/nav-menu-feature2.jpg");
  }
}
@media (min-width: 1200px) {

  .mrvll-navigation .mrvll-menu-category {
    width: 100%;
    left: 0;
    padding-left: 24px;
  }
  .mrvll-navigation .mrvll-menu-mainheader-outbound {
    margin-right: 60px;
  }
  .mrvll-navigation .mrvll-menu-sublinks li {
    font-size: 1rem;
  }
}

.mrvll-navigation .mrvll-nav-icon.mrvll-nav-icon-toggle {
  background: #fff;
  height: 20px;
}

.animated-toggle-icon,
.close-x-icon {
  width: 24px;
  height: 20px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-toggle-icon span,
.close-x-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #000;
}

.mrvll-navigation .mrvll-nav-icon-search .close-x-icon {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 0;
  pointer-events: none;
}

.mrvll-navigation .mrvll-nav-icon-search.selected {
  background-image: none;
}
.mrvll-navigation .mrvll-nav-icon-search.selected .close-x-icon {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  opacity: 1;
  pointer-events: all;
}

.animated-toggle-icon span:nth-child(1) {
  top: 0;
}

.animated-toggle-icon span:nth-child(2) {
  top: 8px;
}

.animated-toggle-icon span:nth-child(3) {
  top: 16px;
}

.animated-toggle-icon.open span:nth-child(1),
.close-x-icon span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-toggle-icon.open span:nth-child(2),
.close-x-icon span:nth-child(2) {
  opacity: 0;
}

.animated-toggle-icon.open span:nth-child(3),
.close-x-icon span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (min-width: 992px) {
  .close-x-icon {
    display: none !important;
  }
  .mrvll-navigation .mrvll-nav-icon-search.selected {
    background-image: url("../reference-img/icon-search.svg");
  }
}

.mrvll-footer {
  width: 100%;
  background: #212322;
  color: #ffffff;
  margin-top: 2rem;
  padding: 90px 0 25px;
}

.mrvll-footer .footer-padding {
  padding-left: 30px;
  padding-right: 30px;
}
.mrvll-footer a {
  color: #c2c2c2;
  transition: color 0.15s ease-out;
}
.mrvll-footer a:hover {
  color: #fff;
}
.mrvll-footer h5 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.025rem;
  margin-bottom: 0;
  padding-top: 15px;
  margin-right: -15px;
  padding-bottom: 15px;
  background-image: url("../reference-img/arrow-blue-up.svg");
  background-position: right 15px center;
  background-size: auto;
  background-repeat: no-repeat;
}
.mrvll-footer h5.collapsed {
  background-image: url("../reference-img/arrow-blue-down.svg");
}
.mrvll-footer .mrvll-footer-list-wrapper {
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  background: #212322;
}
.mrvll-footer ul {
  margin: 0 0 25px;
  padding: 30px 30px 30px 0;
  font-size: 1rem;
  list-style-type: none;
}
.mrvll-footer ul li {
  margin-bottom: 35px;
}
.mrvll-footer ul li:last-child {
  margin-bottom: 0;
}
.mrvll-footer .mrvll-footer-social-icons {
  display: flex;
  margin: 0;
  background: #212322;
  padding-bottom: 0;
}
.mrvll-footer .mrvll-footer-social-icons a {
  display: block;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  margin-right: 35px;
  transition:
    opacity 0.15s ease-out,
    color 0.15s ease-out;
}
.mrvll-footer .mrvll-footer-social-icons a:hover {
  opacity: 0.7;
}
.mrvll-footer .mrvll-footer-social-icons .mrvll-footer-social-icon-facebook {
  background-image: url("../reference-img/icon-social-facebook-dark.svg");
  width: 10px;
}
.mrvll-footer .mrvll-footer-social-icons .mrvll-footer-social-icon-twitter {
  background-image: url("../reference-img/icon-social-twitter-dark.svg");
  width: 19px;
}
.mrvll-footer .mrvll-footer-social-icons .mrvll-footer-social-icon-youtube {
  background-image: url("../reference-img/icon-social-youtube-dark.svg");
  width: 32px;
  background-size: 30px 21px;
}
.mrvll-footer .mrvll-footer-social-icons .mrvll-footer-social-icon-linkedin {
  background-image: url("../reference-img/icon-social-linkedin-dark.svg");
  width: 21px;
}
.mrvll-footer .mrvll-footer-small-links {
  font-size: 0.85rem;
  background: #212322;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.mrvll-footer .mrvll-footer-small-links li {
  line-height: 22px;
  padding: 0;
  margin: 0 15px 10px 0;
  color: #c2c2c2;
}
.mrvll-footer .mrvll-footer-small-links li a {
  color: #c2c2c2;
  transition:
    opacity 0.15s ease-out,
    color 0.15s ease-out;
}
.mrvll-footer .mrvll-footer-small-links li a:hover {
  color: #fff;
}
.mrvll-footer .mrvll-footer-small-links li:first-child {
  width: 100%;
}
.mrvll-footer .mrvll-footer-small-links li:nth-child(2) {
  padding-left: 0;
}
.mrvll-footer .mrvll-footer-small-links li:last-child {
  border-right: none;
}

@media (min-width: 992px) {
  .mrvll-footer {
    padding: 56px 0;
  }
  .mrvll-footer h5,
  .mrvll-footer h5.collapsed {
    background: none;
    cursor: default;
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .mrvll-footer .mrvll-footer-list-wrapper {
    background: none;
  }
  .mrvll-footer ul {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mrvll-footer ul li {
    margin-bottom: 6px;
  }
  .mrvll-footer .mrvll-footer-social-icons {
    margin: 40px 0 10px;
  }
  .mrvll-footer .mrvll-footer-social-icons a {
    margin-right: 25px;
  }
  .mrvll-footer .mrvll-footer-small-links li {
    color: #c8c9c7;
    border-color: #000;
  }
  .mrvll-footer .mrvll-footer-small-links li a {
    color: #c8c9c7;
  }
  .mrvll-footer .mrvll-footer-small-links li:first-child {
    width: auto;
  }
  .mrvll-footer .divider {
    color: #000;
  }

  .mrvll-footer .mrvll-footer-small-links li.divider {
    color: #63666a;
  }
}

.mrvll-navigation .mrvll-menu-search {
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  transition: border 0.5s ease-out;
}
.mrvll-navigation .mrvll-menu-search .mrvll-input-wrapper {
  width: 100%;
  height: 72px;
  background-color: #f7f7f7;
  background-image: url("../reference-img/icon-search.svg");
  background-position: 25px center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding-left: 70px;
  display: flex;
  flex-direction: row;
}
.mrvll-navigation .mrvll-menu-search .mrvll-input-wrapper input {
  flex-grow: 1;
  width: 500px;
  box-shadow: none;
  outline: 0;
  margin: 0;
  background: #f7f7f7;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  font-weight: 300;
  font-size: 1rem;
}
.mrvll-navigation .mrvll-menu-search .mrvll-input-wrapper {
  width: 100%;
}

.mrvll-menu-search.open {
  height: 90px;
  top: 80px;
  pointer-events: all;
  border-top: 1px solid #ccc;
}

@media (min-width: 992px) {
  .mrvll-navigation .mrvll-menu-search {
    background-color: #fff;
  }
  .mrvll-navigation .mrvll-menu-search .mrvll-input-wrapper {
    width: 1100px;
    background-color: #fff;
    background-size: 34px 34px;
    padding-left: 100px;
  }
  .mrvll-navigation .mrvll-menu-search .mrvll-input-wrapper input {
    font-size: 1.5rem;
    background-color: #fff;
  }
  .mrvll-navigation .mrvll-menu-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: border 0.5s ease-out;
    position: absolute;
    left: -23px;
    top: 52px;
    width: 230px;
  }
  .mrvll-navigation .mrvll-menu-lang ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }
  .mrvll-navigation .mrvll-menu-lang li {
    margin-right: 70px;
    padding-bottom: 14px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
  }
  .mrvll-navigation .mrvll-menu-lang li span {
    color: #000;
    margin-right: 12px;
  }
  .mrvll-navigation .mrvll-menu-lang li a {
    color: #5f5f5f;
  }
  .mrvll-navigation .mrvll-menu-lang li:last-child {
    margin-right: 0;
  }
  .mrvll-navigation .mrvll-menu-lang li::after {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0072ce;
    left: 0;
  }
  .mrvll-navigation .mrvll-menu-lang li:hover::after {
    width: 100%;
  }
  .mrvll-navigation .mrvll-menu-lang li.selected {
    color: #000;
  }
  .mrvll-navigation .mrvll-menu-lang li.selected::after {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #0072ce;
    left: 0;
    width: 100%;
  }
  .mrvll-menu-lang.open {
    height: 160px;
    pointer-events: all;
    box-shadow: -3px 6px 7px rgba(0, 0, 0, 0.1);
  }
}

.mrvll-hero {
  height: 640px;
  background-image: linear-gradient(to bottom, #fff, #fff 80%, #000 80%);
}
.mrvll-hero.mrvll-hero-no-bg-gradient {
  background-image: none;
}
.mrvll-hero.mrvll-hero-video .item {
  background-size: cover;
}
.mrvll-hero .carousel {
  margin-left: -24px;
  margin-right: -24px;
}
.mrvll-hero .carousel-inner {
  height: 640px;
  overflow: visible;
}
.mrvll-hero .item {
  height: 640px;
  background-color: #000;
  background-size: auto 65%;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 45px 24px 24px;
  transform: none !important;
  transition: opacity 0.25s ease-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.mrvll-hero .item .mrvll-hero-text {
  height: 170px;
  transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(-30px);
  opacity: 0;
}
.mrvll-hero .item .mrvll-hero-image {
  position: relative;
  transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  clip-path: polygon(0 0, 45% 0, 45% 100%, 0 100%);
}
.mrvll-hero .item .mrvll-hero-image img {
  max-height: 315px;
}
.mrvll-hero .item .item-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 640px;
}
.mrvll-hero .item.item.active {
  opacity: 1;
  z-index: 1;
}
.mrvll-hero .item.item.active .mrvll-hero-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mrvll-hero .item.item.active .mrvll-hero-text {
  transform: translateX(0);
  opacity: 1;
}
.mrvll-hero .item.item.next.left,
.mrvll-hero .item.item.prev.right {
  opacity: 1;
  z-index: 2;
}
.mrvll-hero .item.item.next.left .mrvll-hero-image,
.mrvll-hero .item.item.prev.right .mrvll-hero-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mrvll-hero .item.item.next.left .mrvll-hero-text,
.mrvll-hero .item.item.prev.right .mrvll-hero-text {
  transform: translateX(0);
  opacity: 1;
}
.mrvll-hero .item.item.prev,
.mrvll-hero .item.item.active.left,
.mrvll-hero .item.item.next,
.mrvll-hero .item.item.active.right {
  transition: all 0.25s ease-out;
}
.mrvll-hero .carousel-controls {
  z-index: 2;
  display: flex;
  flex-grow: 1;
  position: absolute;
  bottom: 110px;
  left: 40px;
}
.mrvll-hero .carousel-control {
  background-image: url("../reference-img/carousel-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 34px;
  height: 34px;
  opacity: 1;
  display: block;
  position: relative;
  margin-right: 10px;
  transition: background 0.1s ease-out;
}
.mrvll-hero .carousel-control.right {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .mrvll-page-content .mrvll-hero h1 {
    margin-top: 17px !important;
  }
  .mrvll-hero {
    height: 440px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .mrvll-hero .carousel-inner,
  .mrvll-hero .item {
    height: 440px;
  }
  .mrvll-hero .item {
    background-size: cover;
    background-position: center center;
    padding-left: 50px;
  }
  .mrvll-hero .item .item-wrapper {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    height: calc(440px - 80px);
  }
  .mrvll-hero .item .mrvll-hero-text {
    height: auto;
    transform: translateX(-60px);
  }
  .mrvll-hero .item .mrvll-hero-image {
    top: 0;
    right: 0;
    padding: 40px;
    position: absolute;
    height: 440px;
    z-index: -1;
  }
  .mrvll-hero .item .mrvll-hero-image img {
    height: 100%;
    max-height: none;
  }
  .mrvll-hero .carousel-controls {
    left: 50px;
    bottom: 40px;
  }
  .mrvll-hero .carousel-control {
    width: 43px;
    height: 43px;
    margin-right: 15px;
    background-position: center center;
    transition: transform 0.15s ease-out;
  }
  .mrvll-hero .carousel-control:hover {
    transform: scale(1.1);
  }
  .mrvll-hero .carousel-control.right:hover {
    transform: scale(1.1) rotate(180deg);
  }
}

@media (min-width: 992px) {
  .mrvll-hero {
    height: 550px;
  }
  .mrvll-hero .carousel-inner,
  .mrvll-hero .item {
    height: 550px;
  }
  .mrvll-hero .item {
    padding-left: 80px;
  }
  .mrvll-hero .item .item-wrapper {
    height: calc(550px - 80px);
  }
  .mrvll-hero .item .mrvll-hero-image {
    height: 550px;
  }
  .mrvll-hero .carousel-controls {
    left: 80px;
    bottom: 60px;
  }
  .mrvll-hero .carousel-control {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1200px) {
  .mrvll-hero {
    height: 620px;
  }
  .mrvll-hero .carousel {
    margin-left: -15px;
    margin-right: -15px;
  }
  .mrvll-hero .carousel-inner,
  .mrvll-hero .item {
    height: 620px;
  }
  .mrvll-hero .carousel-controls {
    left: 140px;
  }
  .mrvll-hero .item {
    padding-left: 140px;
    padding-right: 100px;
  }
  .mrvll-hero .item .item-wrapper {
    height: calc(620px - 80px);
  }
  .mrvll-hero .item .mrvll-hero-image {
    height: 620px;
  }
}

.mrvll-sub-hero-feature {
  background: #000;
  padding-top: 90px;
  padding-bottom: 40px;
}
.mrvll-sub-hero-feature img {
  width: 60%;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .mrvll-sub-hero-feature {
    padding-top: 140px;
    padding-bottom: 120px;
  }
  .mrvll-sub-hero-feature .container .row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mrvll-sub-hero-feature img {
    width: 100%;
    margin-bottom: 0;
  }
}

.mrvll-features {
  background: #000;
  padding-bottom: 60px;
}
.mrvll-features .carousel-controls {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
.mrvll-features .carousel-control {
  background-image: url("../reference-img/carousel-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 34px;
  height: 34px;
  opacity: 1;
  display: block;
  position: relative;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .mrvll-features .carousel-control {
    width: 43px;
    height: 43px;
  }
}
@media (min-width: 992px) {
  .mrvll-features .carousel-control {
    width: 48px;
    height: 48px;
  }
}
.mrvll-features .carousel-control.right {
  transform: rotate(180deg);
}
.mrvll-features .carousel-control:last-child {
  margin-right: 0;
}
.mrvll-features .mrvll-features-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.mrvll-features .mrvll-features-nav ul {
  height: 40px;
  border-left: 1px solid #63666a;
  margin: 0 0 0 40px;
  padding: 0 0 0 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  color: #bfbfbf;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.15rem;
}
.mrvll-features .mrvll-features-nav ul li {
  transition: color 0.5s;
}
.mrvll-features .mrvll-features-nav ul li::after {
  display: block;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: #0072ce;
  left: 0;
}
.mrvll-features .mrvll-features-nav ul li:hover::after {
  width: 100%;
}
.mrvll-features .mrvll-features-nav ul li.selected {
  color: #fff;
}
.mrvll-features .mrvll-features-nav ul li.selected::after {
  width: 100%;
}
.mrvll-features .item {
  padding: 20px 0;
  width: calc(100vw - 48px);
}
.mrvll-features .item h3 {
  font-size: 1.85rem;
  line-height: 2.4rem;
}
.mrvll-features .item .mrvll-feature-image {
  width: 100%;
}
.mrvll-features .item .mrvll-feature-image img {
  width: 100%;
  height: auto;
}
.mrvll-features .carousel {
  margin-left: -24px;
  margin-right: -24px;
}
.mrvll-features .mrvll-features-nav {
  margin-left: 24px;
  margin-right: 24px;
}
.mrvll-features .carousel-inner > .item.next,
.mrvll-features .carousel-inner > .item.active.right {
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0);
}
.mrvll-features .carousel-inner > .item.prev,
.mrvll-features .carousel-inner > .item.active.left {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0);
}

.mrvll-features .carousel-inner > .item.next.left,
.mrvll-features .carousel-inner > .item.prev.right,
.mrvll-features .carousel-inner > .item.active {
  left: 24px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .mrvll-features {
    background: #000;
  }
  .mrvll-features .mrvll-features-nav {
    justify-content: space-around;
  }
  .mrvll-features .mrvll-features-nav li {
    cursor: pointer;
  }
  .mrvll-features .mrvll-features-nav h3 {
    font-size: 1rem;
  }
  .mrvll-features .item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
    transform: none !important;
    transition: opacity 0.3s ease-out;
    transition-delay: 0s;
    opacity: 0;
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mrvll-features .item .item-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }

  .mrvll-features .item .item-wrapper p {
    font-size: 0.9rem;
  }
  .mrvll-features .item .mrvll-feature-text {
    width: 45%;
  }

  .mrvll-features .carousel {
    margin-left: 0;
    margin-right: 0;
  }
  .mrvll-features .carousel-inner {
    transition: height 0.5s ease-out;
  }
  .mrvll-features .carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
  }
  .mrvll-features .mrvll-features-nav {
    margin-left: 0;
    margin-right: 0;
  }
  .mrvll-features .carousel-inner > .item.next,
  .mrvll-features .carousel-inner > .item.active.right,
  .mrvll-features .carousel-inner > .item.prev,
  .mrvll-features .carousel-inner > .item.active.left {
    transition-delay: 0s;
    opacity: 0;
  }
  .mrvll-features .carousel-inner > .item.next.left,
  .mrvll-features .carousel-inner > .item.prev.right {
    transition-delay: 0.15s;
    left: 0;
    opacity: 1;
    z-index: 1;
  }
  .mrvll-features .carousel-inner > .item.active {
    left: 0;
    opacity: 1;
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .mrvll-features .mrvll-features-nav ul {
    margin: 0 0 0 40px;
    padding: 0 0 0 40px;
  }
  .mrvll-features .item .mrvll-feature-text {
    width: 33%;
  }
  .mrvll-features .item .item-wrapper .mrvll-feature-image img {
    width: 500px;
  }
  .mrvll-features .item .item-wrapper {
    margin-top: 60px;
  }
}

@media (min-width: 1440px) {
  .mrvll-features .item .item-wrapper .mrvll-feature-image img {
    width: 700px;
  }
}
@media (max-width: 767.8px) {
  .mrvll-features .item {
    background: none !important;
  }
}

/* MARVELL FEATURES COMPONENT: NESTED VARIANT */

.mrvll-features.nested {
  padding: 4rem 0 2rem;
  margin: 0 auto;
  max-width: 1170px;
  width: 100%;
  height: 100%;
}
.mrvll-features.nested .mrvll-features-nav h3 {
  margin: 0;
}

.mrvll-features.nested .carousel-inner h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.mrvll-features.nested .item .item-wrapper {
  justify-content: flex-start;
}
.mrvll-features.nested .item .mrvll-feature-text {
  padding-bottom: 2rem;
  width: 100%;
}
.mrvll-features.nested .item .mrvll-feature-text p {
  width: 50%;
  color: #c8c9c7;
}
.mrvll-features.nested .item .mrvll-feature-text .grid p {
  width: 100%;
}

@media (min-width: 1600px) {
  .mrvll-features.nested {
    max-width: calc(1440px - 30px);
    margin: 0 auto;
  }
}

@media (min-width: 767.8px) {
  .mrvll-features.nested .carousel-controls {
    display: none;
  }
}
@media (max-width: 992px) {
  .mrvll-features.nested .item {
    width: 100%;
  }
  .mrvll-features.nested .carousel {
    padding: 0 24px;
  }
}
@media (max-width: 767.8px) {
  .mrvll-features.nested .carousel-inner > .item.next.left,
  .mrvll-features.nested .carousel-inner > .item.prev.right,
  .mrvll-features.nested .carousel-inner > .item.active {
    left: 0;
    padding: 24px;
  }
  .mrvll-features.nested .item .mrvll-feature-text p {
    width: 100%;
  }
}

.mrvll-resources {
  padding-top: 45px;
}

.mrvll-resource-tiles {
  padding-top: 40px;
}

.mrvll-resource-tile {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 100%;
  padding-top: 95%;
  padding-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.mrvll-resource-tile .gradient::before {
  content: "";
  display: block;
  width: calc(100% - 30px);
  position: absolute;
  height: calc(100% - 18px);
  padding-left: 15px;
  top: 0;
  left: 15px;
  background: black;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 43%
  );
  z-index: 0;
}
.mrvll-resource-tile .mrvll-resource-tile-content {
  z-index: 1;
  position: absolute;
  bottom: 50px;
  left: 50px;
}

h3.mrvll-resources-header {
  font-size: 1.85rem;
  line-height: 2.4rem;
}

h3.mrvll-resource-tile-header {
  font-size: 1.85rem;
  line-height: 2.2rem;
}

.mrvll-resource-tiles-smaller .mrvll-resource-tile {
  padding-top: 60%;
  margin-bottom: 20px;
}
.mrvll-resource-tiles-smaller .mrvll-resource-tile .gradient::before {
  bottom: 20px;
  top: auto;
}
.mrvll-resource-tiles-smaller
  .mrvll-resource-tile
  .mrvll-resource-tile-content {
  left: 40px;
  width: calc(100% - 90px);
}

@media (min-width: 768px) {
  .mrvll-resources {
    padding-top: 75px;
  }
  .mrvll-resource-tiles {
    padding-top: 75px;
  }
  .mrvll-resource-tile {
    margin-bottom: 0;
    padding-bottom: 25px;
  }
  .mrvll-resource-tile .gradient::before {
    height: 100%;
  }
  .mrvll-resource-tile .mrvll-resource-tile-content {
    bottom: 30px;
  }
  h3.mrvll-resource-tile-header {
    font-size: 1.55rem;
    line-height: 2.2rem;
  }
  .mrvll-resource-tiles-smaller
    .mrvll-resource-tile
    .mrvll-resource-tile-content {
    bottom: 50px;
  }
  .mrvll-resource-tiles-smaller
    .mrvll-resource-tile
    h3.mrvll-resource-tile-header {
    line-height: 1.8rem;
  }
}

@media (min-width: 992px) {
  .mrvll-resource-tile {
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 45px;
    transition: background-size 0.15s ease-out;
  }
  .mrvll-resource-tile:hover {
    background-size: 108% auto;
  }
  .mrvll-resource-tile h3.mrvll-resource-tile-header {
    font-size: 1.85rem;
    line-height: 2.4rem;
  }
  .mrvll-resource-tiles-smaller
    .mrvll-resource-tile
    h3.mrvll-resource-tile-header {
    line-height: 2.2rem;
  }
  .mrvll-resource-tiles-smaller
    .mrvll-resource-tile
    .mrvll-resource-tile-content {
    left: 50px;
  }
}

.mrvll-video-play-btn {
  display: block;
  background-image: url("../reference-img/video-play-btn-white.svg");
  background-position: center center;
  background-size: 100% 100%;
  width: 70px;
  height: 70px;
}

.mrvll-hero-video-content-centered .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.mrvll-hero-video-content-centered .item .item-wrapper {
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.mrvll-hero-video-content-right-aligned .item .item-wrapper {
  width: 100%;
}

.mrvll-hero-video-content-right-aligned .item .item-wrapper .mrvll-hero-text {
  width: 80%;
}

p.mrvll-product-statement {
  font-weight: 200;
  font-size: 18px;
  line-height: 30px;
}
@media (min-width: 480px) {
  p.mrvll-product-statement {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (min-width: 768px) {
  p.mrvll-product-statement {
    font-size: 24px;
    line-height: 39px;
  }
}

.product-hero {
  height: 385px;
  position: relative;
  margin-left: -24px;
  width: calc(100% + 48px);
}
@media (min-width: 480px) {
  .product-hero {
    height: 359px;
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .product-hero {
    height: 504px;
  }
}

.product-hero__img {
  background: gray;
  background-size: cover;
  bottom: 0;
  height: 226px;
  position: absolute;
  right: 0;
  width: 100%;
}
@media (min-width: 480px) {
  .product-hero__img {
    height: 100%;
    top: 0;
  }
}
@media (min-width: 992px) {
  .product-hero__img {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .mrvll-page-content .product-hero__img {
    right: -15px;
  }
}

.product-hero__content {
  background: #000;
  height: 80%;
  left: 24px;
  position: absolute;
  right: 24px;
}
@media (min-width: 480px) {
  .product-hero__content {
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
  }
}
@media (min-width: 768px) {
  .product-hero__content {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .product-hero__content {
    height: 400px;
    left: 0;
    width: 673px;
  }
}

@media (min-width: 1200px) {
  .mrvll-page-content .product-hero__content {
    left: -15px;
  }
}

.product-hero__center {
  left: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .product-hero__center {
    left: 55px;
    right: 55px;
  }
}
@media (min-width: 992px) {
  .product-hero__center {
    left: 67px;
    right: 67px;
  }
}

.product-hero__header,
.mrvll-page-content .product-hero__header {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.33;
  margin: 0;
}
@media (min-width: 992px) {
  .product-hero__header,
  .mrvll-page-content .product-hero__header {
    font-size: 45px;
    line-height: 1.11;
  }
}

.product-hero__description {
  color: #a7a8a9;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73;
  margin: 7px 0 0;
}
@media (min-width: 992px) {
  .product-hero__description {
    font-size: 24px;
    line-height: 1.63;
    margin-top: 24px;
  }
}

.mrvll-company-hero {
  height: 386px;
  position: relative;
  margin-left: -24px;
  width: calc(100% + 48px);
}
@media (min-width: 480px) {
  .mrvll-company-hero {
    height: 359px;
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .mrvll-company-hero {
    height: 504px;
  }
}

.mrvll-company-hero__img {
  background: gray;
  background-size: cover;
  bottom: 0;
  height: 226px;
  position: absolute;
  right: 0;
  width: 100%;
}
@media (min-width: 480px) {
  .mrvll-company-hero__img {
    height: 100%;
    top: 0;
  }
}
@media (min-width: 992px) {
  .mrvll-company-hero__img {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .mrvll-page-content .mrvll-company-hero__img {
    right: -15px;
  }
}

.mrvll-company-hero__content {
  background: #000;
  height: 210px;
  left: 24px;
  position: absolute;
  right: 24px;
}
@media (min-width: 480px) {
  .mrvll-company-hero__content {
    height: 232px;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 372px;
  }
}
@media (min-width: 992px) {
  .mrvll-company-hero__content {
    height: 400px;
    left: 0;
    width: 673px;
  }
}

@media (min-width: 1200px) {
  .mrvll-page-content .mrvll-company-hero__content {
    left: -15px;
  }
}

.mrvll-company-hero__center {
  left: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 480px) {
  .mrvll-company-hero__center {
    left: 55px;
    right: 55px;
  }
}
@media (min-width: 992px) {
  .mrvll-company-hero__center {
    left: 67px;
    right: 67px;
  }
}

.mrvll-company-hero__header,
.mrvll-page-content .mrvll-company-hero__header {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.33;
  margin: 0;
}
@media (min-width: 992px) {
  .mrvll-company-hero__header,
  .mrvll-page-content .mrvll-company-hero__header {
    font-size: 45px;
    line-height: 1.11;
  }
}

.mrvll-company-hero__description {
  color: #a7a8a9;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73;
  margin: 7px 0 0;
}
@media (min-width: 992px) {
  .mrvll-company-hero__description {
    font-size: 24px;
    line-height: 1.63;
    margin-top: 24px;
  }
}

.mrvll-company-mission {
  padding-top: 80px;
  padding-bottom: 80px;
}
.mrvll-company-mission h3 {
  font-size: 1.85rem;
  line-height: 2.1rem;
}
.mrvll-company-mission .mrvll-page-content h3.mrvll-subhead,
.mrvll-company-mission h3.mrvll-subhead {
  font-size: 1.25rem;
  line-height: 2rem;
  color: #63666a;
}

.mrvll-company-leaders {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #000;
  position: relative;
}
@media (min-width: 768px) {
  .mrvll-company-leaders {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .mrvll-company-leaders {
    padding-bottom: 80px;
  }
}
.mrvll-company-leaders::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  content: "";
  background-image: url("../reference-img/photos/company-leaders-bg.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100%;
}
@media (min-width: 992px) {
  .mrvll-company-leaders::after {
    width: 50vw;
  }
}

.mrvll-company-leaders__content {
  position: relative;
  z-index: 1;
}

.mrvll-company-leaders__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .mrvll-company-leaders__quote {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .mrvll-company-leaders__quote {
    flex-direction: row;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.mrvll-company-leaders__quote-text {
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: 35px;
}
@media (min-width: 992px) {
  .mrvll-company-leaders__quote-text {
    margin-top: 0;
  }
}
.mrvll-company-leaders__quote-text h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 200;
  font-style: italic;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .mrvll-company-leaders__quote-text h3 {
    font-size: 1.55rem;
  }
}
@media (min-width: 992px) {
  .mrvll-company-leaders__quote-text h3 {
    margin-top: 45px;
    font-size: 1.85rem;
    line-height: 2.2rem;
  }
}
.mrvll-company-leaders__quote-text .mrvll-eyebrow {
  margin-top: 12px;
}
@media (min-width: 992px) {
  .mrvll-company-leaders__quote-text .mrvll-eyebrow {
    margin-top: 40px;
  }
}
.mrvll-company-leaders__quote-text .mrvll-text-link {
  margin-top: 55px;
}
@media (min-width: 992px) {
  .mrvll-company-leaders__quote-text .mrvll-text-link {
    margin-top: 65px;
  }
}

.mrvll-page-content .mrvll-company-leaders__header,
.mrvll-company-leaders__header {
  font-size: 1.85rem;
  line-height: 2.1rem;
}

.mrvll-company-leaders__quote-mark {
  display: block;
  background-image: url("../reference-img/quotation-mark.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  width: 32px;
  height: 26px;
}

.mrvll-company-leaders__img {
  transform-origin: left center;
  position: relative;
  z-index: 1;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .mrvll-company-leaders__img {
    transform: scale(1.1);
    width: 560px;
  }
}
@media (min-width: 1440px) {
  .mrvll-company-leaders__img {
    width: 700px;
  }
}

.mrvll-company-careers {
  padding-top: 76px;
}
.mrvll-company-careers h2 {
  margin-bottom: 45px;
}

.mrvll-company-careers__images {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .mrvll-company-careers__images {
    justify-content: space-between;
  }
  .mrvll-company-careers__images.mrvll-company-careers__images_2nd_row {
    padding-right: 50px;
    max-width: 50%;
  }
}
@media (min-width: 1440px) {
  .mrvll-company-careers__images.mrvll-company-careers__images_2nd_row {
    padding-right: 0;
  }
}
.mrvll-company-careers__images img {
  max-width: 100%;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 1440px) {
  .mrvll-company-careers__images img {
    height: 399px;
    width: auto;
  }
}

.mrvll-company-careers__img-container-02 {
  padding-left: 20px;
}

@media (min-width: 992px) {
  .mrvll-company-careers__img-container-03 {
    padding-left: 20px;
  }
}

.mrvll-company-careers__paragraph-row {
  margin-top: 22px;
}
@media (min-width: 992px) {
  .mrvll-company-careers__paragraph-row {
    display: flex;
    justify-content: center;
  }
}

.mrvll-company-careers__paragraph {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mrvll-company-careers__paragraph {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.95rem;
    padding-right: 60px;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .mrvll-company-careers__paragraph {
    padding-left: 30px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .mrvll-company-careers__paragraph {
    padding-left: 60px;
    padding-right: 100px;
  }
}
.mrvll-company-careers__paragraph p {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .mrvll-company-careers__paragraph p {
    font-size: 1.45rem;
    line-height: 2.2rem;
  }
}
@media (min-width: 992px) {
  .mrvll-company-careers__paragraph p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: inherit;
  }
}
@media (min-width: 1200px) {
  .mrvll-company-careers__paragraph p {
    margin-bottom: 35px;
  }
}
@media (min-width: 1440px) {
  .mrvll-company-careers__paragraph p {
    margin-bottom: 55px;
  }
}

.mrvll-company-timeline {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .mrvll-company-timeline {
    padding-top: 130px;
    padding-bottom: 110px;
  }
}
.mrvll-company-timeline .carousel {
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 992px) {
  .mrvll-company-timeline .carousel {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.mrvll-company-timeline .carousel-controls {
  z-index: 2;
  display: flex;
  flex-grow: 1;
  position: absolute;
  justify-content: space-between;
  top: 34px;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .mrvll-company-timeline .carousel-controls {
    padding-left: 170px;
    padding-right: 170px;
  }
}
.mrvll-company-timeline .carousel-control {
  background-image: url("../reference-img/carousel-arrow-blue.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 34px;
  height: 34px;
  opacity: 1;
  display: block;
  position: relative;
  transition: all 0.1s ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mrvll-company-timeline .carousel-control.right {
  transform: rotate(180deg);
}
.mrvll-company-timeline .carousel-control:hover {
  transform: scale(1.1);
}
.mrvll-company-timeline .carousel-control.right:hover {
  transform: scale(1.1) rotate(180deg);
}
.mrvll-company-timeline .carousel-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-height: 150px;
}
.mrvll-company-timeline .item {
  transform: none !important;
  transition: opacity 0.25s ease-out;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mrvll-company-timeline .item.next,
.mrvll-company-timeline .item.active.right,
.mrvll-company-timeline .item.prev,
.mrvll-company-timeline .item.active.left {
  transition-delay: 0s;
  opacity: 0;
}
.mrvll-company-timeline .item.next.left,
.mrvll-company-timeline .item.prev.right {
  transition-delay: 0.15s;
  opacity: 1;
  z-index: 1;
}
.mrvll-company-timeline .item.active {
  opacity: 1;
  z-index: 1;
}

.mrvll-company-timeline__paragraph {
  text-align: center;
  margin-top: 40px;
  max-width: 572px;
  margin-left: auto;
  margin-right: auto;
}

.mrvll-company-timeline__year {
  color: #0072d5;
  font-size: 5.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 6rem;
}
@media (min-width: 768px) {
  .mrvll-company-timeline__year {
    font-size: 8rem;
  }
}

.mrvll-company-timeline__caption {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  padding-top: 40px;
  max-width: 572px;
  margin-left: auto;
  margin-right: auto;
}

html.noScroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

body {
  font-family: "setimo", sans-serif;
}

.mrvll-page-content-wrapper {
  min-height: 100vh;
  display: flex;
  height: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}

.mrvll-page-content {
  display: flex;
  flex-grow: 1;
  margin-top: 80px;
  flex-direction: column;
}
