


























.c-footer {
  padding: 48px 0;
  background-color: #F2F2F2;
  font-size: 14px;
  color: #00385A;
  position: relative;
}

.c-footer .o-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-content: center;
  text-align: center;
}
  
.c-social__title {
  display: inline-block;
  margin-bottom: 6px;
}

.c-social__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2.5;
  color: #00385A;
}

.c-social__buttons a {
  display: block;
  height: 15px;
  width: 15px;
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 0 5px 10px 0 hsl(0deg 0% 62% / 50%);
  padding: 10px;
  margin: 0 6px;
  text-align: center;
}

.c-social__buttons li:last-child a {
  margin-right: 0;
}

.c-social__buttons li:first-child a: {
  margin-left: 0;
}

.c-social__buttons svg {
  height: 16px;
  width: auto;
}

@media (min-width: 980px) {
  .c-footer .o-wrapper {
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    border-top: 1px solid #E1E0D6;
    padding-top:  48px;
  }
  
  .c-footer__copyright {
    text-align: center;
  }
  
  .c-social {
    text-align: right;
  }
  
  .c-social__buttons {
    justify-content: flex-end;
  }
}
.c-header {
  padding: 24px;
  display: flex;
  justify-content: center;
}

.c-header img {
  max-width: 200px;
}

@media (min-width: 768px) {
  .c-header {
    padding:  24px 48px;
    justify-content: flex-start;
  }
  
  .c-header img {
    max-width: auto;
  }
}
.c-image img {
    object-fit: cover;
    object-position: center center;   
    object-fit: cover;
    object-position: center center;'; 
    height: auto;
    width: 100% !important;
    display: block;
    position: relative;
} 

.c-media-wrapper {
  position: relative;
}

.c-media-wrapper__link-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

@media (min-width: 768px) {
  .c-image img{
    height: 100% !important;
  }
}

.c-video {
  width: 100%;
  height: auto;
  display: block;
}
:root {
  --observer-delay: 300;
}

.c-column-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.c-column-grid-wrapper__background {
  height: 100%;
  grid-row: 1/-1;
  grid-column: 1/-1;
}

.c-column-grid {
  --column-grid-gap: 0px;
  display: flex;
  column-gap: var(--column-grid-gap);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-row: 1/-1;
  grid-column: 1/-1;
}

.c-column-grid.column-gap {
  --column-grid-gap:  24px;
}

.c-column-grid.column-gap-large {
  --column-grid-gap:  48px;
}

.c-column-grid > article {
  flex: 0 0 calc(50% - (var(--column-grid-gap) / 2));
}

/* Highlighted item */
.c-column-grid.c-column-grid--highlight {
  flex-wrap: nowrap;
  overflow: hidden;
}
.c-column-grid.c-column-grid--highlight > .m-item {
  flex: 0 1 100%;
}
.c-column-grid.c-column-grid--highlight > .m-item:nth-child(2) {
  flex: 0 1 125%;
  margin-inline: -48px;
  z-index: 2;
}

.c-column-grid--4.c-column-grid--highlight > .m-item:nth-child(2),
.c-column-grid--4.c-column-grid--highlight > .m-item:nth-child(3){
    flex: 0 1 120% !important;
    margin-inline: -24px !important;
    z-index: 2;
}

/* Mobile */
@media (max-width: 767px) {
  .c-column-grid-wrapper[class*="u-bg-color-"] {
    padding-block: 24px;
  }
  
  .c-column-grid--5.c-column-grid--highlight,
  .c-column-grid--6.c-column-grid--highlight{
    flex-wrap: wrap;
  }
  
  .c-column-grid--5.c-column-grid--highlight > .m-item,
  .c-column-grid--6.c-column-grid--highlight > .m-item {
    flex: 0 0 calc(33.33% -  var(--column-grid-gap));
    margin-inline: 0;
    z-index: 1;
  }
  
  .c-column-grid--5.c-column-grid--highlight > .m-item:nth-child(2),
  .c-column-grid--6.c-column-grid--highlight > .m-item:nth-child(2),
  .c-column-grid--6.c-column-grid--highlight > .m-item:nth-child(5){
     flex: 0 1 calc(45% -  var(--column-grid-gap));
     margin-inline: -24px;
     z-index: 2;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .c-column-grid {
      padding-block: 48px;
  }
  
  .c-column-grid > article {
    flex: 0 0 calc(33.33% -  var(--column-grid-gap));
  }
  
  .c-column-grid--2 > article {
    flex: 0 0 calc(50% - (var(--column-grid-gap) / 2));
  }

  .c-column-grid--4 > article {
    flex: 0 0 calc(25% - var(--column-grid-gap));
  }
  
  .c-column-grid.c-column-grid--highlight > .m-item:nth-child(2) {
    flex: 0 1 100%;
    margin-inline: 0;
    z-index: 1;
  }
  
  .c-column-grid--3.c-column-grid--highlight > .m-item:nth-child(2) {
    flex: 0 1 125%;
    margin-inline: -48px;
    z-index: 2;
  }

  .c-column-grid--5.c-column-grid--highlight > .m-item:nth-child(3){
      flex: 0 1 125%;
      margin-inline: -24px;
      z-index: 2;
  }
  
  .c-column-grid--6.c-column-grid--highlight > .m-item:nth-child(3),
  .c-column-grid--6.c-column-grid--highlight > .m-item:nth-child(4){
      flex: 0 1 120%;
      margin-inline: -12px;
      z-index: 2;
  }
  
  .m-item img {
    transition: scale .3s, transform .3s;
  }
  
  .m-item--hover:hover img  {
    transform: scale(1.15) rotate(10deg);
  }
}

/* IntersectObserver()
* CSS animation */
.js-animation{
  opacity: 0;
  transform: scale(0.1, 0.3) rotate(5deg) translateY(-60%) translateZ(0px);
  transform-origin: bottom center;
  transition: opacity 0.6s ease, transform 0.8s ease, filter 0.5s ease;
  filter: blur(8px);
}

.fadeIn {
  opacity: 1;
  transform: scale(1, 1) rotate(0deg) translateY(0%) translateZ(0px);
  filter: blur(0px);
}
.c-form-wrapper {
  padding-block: 48px;
  color: #00385A;
}

@media (min-width: 768px) {
  .c-form-wrapper {
    padding-block: 96px;
  }
}

.c-form input[type="text"],
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form select {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 20px 8px;
  font-size: 16px;
  color: #00385A;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  font-family: 'VAGRoundedStd', 'sans-serif';
}

.c-form input[type="text"]:focus-within,
.c-form input[type="email"]:focus-within,
.c-form input[type="tel"]:focus-within {
  outline: none;
  border: 1px solid #00385A;
}

.c-form .multi-container {
  margin-bottom: 0;
}

.c-form .form-columns-1, .c-form .form-columns-2, .c-form .form-columns-3, .c-form .form-columns-4, .c-form .form-columns-5 {
  max-width: 100% !important;
}

.c-form fieldset .hs-form-field {
  margin-bottom: 24px !important;
}

.c-form fieldset .hs-richtext:not(:last-child) {
  margin-bottom: 24px !important;
}

/* Labels */
.c-form fieldset .hs-form-field {
  position: relative;
}

.c-form fieldset .hs-form-field:not(:has(input:focus-within)) > label {
  font-family: 'VAGRoundedStd', 'sans-serif';
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.c-form fieldset .hs-form-field:focus-within > label,
.c-form fieldset .hs-form-field:has(input:not(:placeholder-shown)) > label {
  font-family: 'VAGRoundedStd', 'sans-serif';
  position: absolute;
  top: 6px;
  left: 20px;
  font-weight: bold !important;
  font-size: 0.7rem !important;
}

/* html[lang="nl"] .c-form .hs-city, */
html[lang="de"] .c-form .hs-city,
.c-form .hs_wholesaler_of_choice {
  width: 50%;
}

.c-form .hs_error_rollup {
  display: none;
}

.hs-form-checkbox {
  font-family: 'VAGRoundedStd', 'sans-serif';
}

/* iOS fix  */
.hs-form-checkbox input {
  height: 22px;
  width: 22px!important;
  border: none;
  background-color: white;
}

.c-form fieldset.form-columns-2 {
  display: block;
}

.c-form fieldset label span {
  color: #00385A;
}

.c-form input[type="submit"] {
  font-size: 20px;
  font-family: 'VAGRoundedStd', 'sans-serif';
  font-weight: bold;
}

.c-form input[type=checkbox] {
  appearance: none;
}

.c-form input[type=checkbox]::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: white;
}

.c-form input[type=checkbox]:checked::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='22' height='22' viewBox='0 0 22 22'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='10.711' height='7.998' fill='%2300385a'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(-1304 -1084)'%3E%3Crect width='22' height='22' transform='translate(1304 1084)' fill='%23FFFFFF'/%3E%3Cg transform='translate(1309.644 1091.001)'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M6.826,7.85c.23,0,.5.084.729.083,1.073,0,1.984-.069,3.1-.077a7.441,7.441,0,0,0,.024-1.478c-.068-.469-.108-.945-.177-1.4s-.179-.9-.282-1.315a3.48,3.48,0,0,0-.209-.6,3.771,3.771,0,0,0-.306-.5C9.6,2.4,9.492,2.24,9.37,2.087a4.255,4.255,0,0,0-.378-.436c-.138-.131-.295-.254-.45-.377s-.317-.228-.483-.34A4.538,4.538,0,0,0,7.544.617,8.75,8.75,0,0,0,6.667.247a3.191,3.191,0,0,0-.33-.089A6.407,6.407,0,0,0,5.63.026,5.48,5.48,0,0,0,4.825,0,3.225,3.225,0,0,0,3.482.329a2.343,2.343,0,0,0-.273.14,4.517,4.517,0,0,0-.474.355C2.658.887,2.578.94,2.5,1s-.144.13-.217.192a8.652,8.652,0,0,0-.627.606c-.1.1-.19.216-.282.332a5.046,5.046,0,0,0-.4.613,2.249,2.249,0,0,0-.137.266,12.009,12.009,0,0,0-.5,1.507C.228,4.953.148,5.4.08,5.854c-.017.112-.015.225-.024.34-.018.24-.048.475-.048.709A6.428,6.428,0,0,0,.04,8c2.083-.056,4.587-.147,6.786-.147' transform='translate(-0.001 0.001)' fill='%2300385a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-form select {
  background: white url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance:none !important;
  -webkit-appearance: none !important; 
  appearance: none !important;
  padding-right: 0.8rem !important;
}

@media (max-width: 1024px) {
  .c-form select {
    padding-right: 1.8rem !important;
  }
}

.c-form .hs-form-checkbox-display {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}


.c-form .multi-container li:last-child .hs-form-checkbox-display {
  margin-bottom: 0;
}

.c-form .hs-form-checkbox-display span {
  margin-inline-start: 10px;
  line-height: 1rem;
}

.c-form .hs-error-msgs {
  background-color: #00385A;
  color: #FFFFFF;
  padding: 5px 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  margin-right: 8px;
}

.c-form .actions {
  text-align: right; 
}

.c-form fieldset.form-columns-2 div:first-child {
  width:48%;
  margin-right: 24px;
}

.c-form input[type="submit"] {
  background-color: #E35205;
  border: 1px solid #E35205;
  line-height: 1.4;
  -webkit-appearance: none;
  color: white;
  padding: 12px 48px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.c-form input[type="submit"]:hover {
  background-color: #00385A;
  border: 1px solid #00385A;
}

.c-form .hs-fieldtype-checkbox > label span {
  display: none;
}

/* phone with country */
.c-form .hs_phone .hs-fieldtype-intl-phone {
  width: 100%!important;
  display: flex !important;
}

.c-form .hs-fieldtype-intl-phone.hs-input select {
  width: 38%!important;
  padding: 27px 18px 8px;
}

.c-form .hs-fieldtype-intl-phone.hs-input input {
  width: 60%!important;
  margin-inline-start: 24px;
}

@media (max-width: 768px) {
  .form-columns-1 .hs-form-field,
  .form-columns-2 .hs-form-field,
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }

  .form-columns-1 .input,
  .form-columns-2 .input {
    margin-right: 0 !important;
  }

  .c-form .hs-error-msgs {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
/*   [lang=nl] .c-form .hs_wholesaler_of_choice input, */
  [lang=de] .c-form .hs_wholesaler_of_choice input {
    width: 100%!important;
  }
}

@media (min-width: 768px) {
  .c-form fieldset.form-columns-2 {
    display: flex;
  }

/*   [lang=nl] .c-form .hs_wholesaler_of_choice input, */
  [lang=de] .c-form .hs_wholesaler_of_choice input {
    width: 50%;
  }

/*   [lang=nl] .c-form .hs-submit, */
  [lang=de] .c-form .hs-submit {
   /* margin-top: -80px;*/
  }
  
  .c-form.checkbox-layout-2 .input .inputs-list[role="checkbox"] {
    column-count: 2;
  }
  
  .c-form.checkbox-layout-3 .input .inputs-list[role="checkbox"] {
    column-count: 3;
  }
  
  .c-form .input .inputs-list[role="checkbox"] .hs-form-checkbox {
    page-break-inside: avoid; 
    break-inside: avoid-column;
  }
}

/* [lang=nl] .hs_wholesaler_of_choice .hs-error-msgs, */
[lang=de] .hs_wholesaler_of_choice .hs-error-msgs {
  max-width: 100%;
}

.hs-form-booleancheckbox input {
  margin: 0;
}

.hs-form-booleancheckbox label {
  display: flex;
}
.c-back-to-top {
  position: fixed;
  bottom: -2px;
  right: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.c-back-to-top.shown {
  transform: translateY(0%);
}


.c-back-to-top a {
  display: block;
  line-height: 1px;
}

.c-back-to-top a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .c-back-to-top {
    right: 12px;
  }
}

@media (max-width: 768px) {
  .c-back-to-top img {
    width: 75px;
    height: auto;
  }
}
.c-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.c-cta-wrapper__background {
  height: 100%;
  grid-row: 1/-1;
  grid-column: 1/-1;
}

.c-cta-wrapper .o-wrapper {
  grid-row: 1/-1;
  grid-column: 1/-1;
}

.c-cta-wrapper.inverted {
  --cta-horizontal--flex-direction: row-reverse;
  --cta--margin-inline-start: auto;
  --cta-wrapper--align-self: end;
  --cta--flex-direction: column-reverse;
}

.c-cta {
  display: flex;
  align-items: center;
  flex-direction: var(--cta--flex-direction, column);
}

.c-cta--horizontal {
  gap: 24px;
}

.c-cta__btn {
  flex-shrink: 0;
}

.c-cta__highlighted {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.5em;
  text-align: center;
  transform: rotate(-2deg);
}

.c-cta__highlighted mark {
  background-color: #00385A;
  color: #FFFFFF;
  padding-inline: 12px;
  padding-block-start: 6px;
}

@media (max-width: 980px) {
  .c-cta-wrapper .o-wrapper {
     align-self: var(--cta-wrapper--align-self, start);
     padding-block: 48px;
  }
}

@media (min-width: 980px) {
  .c-cta:not(.c-cta--horizontal) {
    width: 50%;
    flex-direction: column;
    margin-inline-start: var(--cta--margin-inline-start, 0);
  }
  
  .c-cta--horizontal {
    width: 100%;
    flex-direction: var(--cta-horizontal--flex-direction, row);
  }
  
  .c-cta__highlighted {
    font-size: 40px;
  }
}
.c-packshot-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.c-packshot-grid-wrapper__background {
  height: 100%;
  grid-row: 1/-1;
  grid-column: 1/-1;
}

.c-packshot-grid-wrapper__content {
  grid-row: 1/-1;
  grid-column: 1/-1;
  display: grid;
  gap: 48px;
  padding-block: 48px;
}

.c-packshot-grid {
  --packshot-grid-gap: 0px;
  display: grid;
  column-gap: 24px;
  justify-content: center;
  align-items: center;
}

.c-packshot-grid-wrapper.u-bg-color {
  padding-block: 24px;
}

.c-packshot-grid-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.m-packshot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-item {
   flex: 0 0 45%;
}

/* Mobile */
@media (max-width: 767px) {
  .c-packshot-grid-heading {
    gap: 12px;
  }
  
  .c-packshot-grid-heading .m-label {
    order: -1;
    justify-self: end;
    max-width: 100px;
  }
  
  .c-packshot-grid__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .c-packshot-grid {
    gap: 24px;
  }
  
  .m-packshot {
    max-width: 200px;
    justify-self: center;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .c-packshot-grid {
    grid-template-columns: 1fr 3fr;
  }
  
  .c-packshot-grid__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 48px;
  }
  
  .c-packshot-grid__items:only-child {
    grid-column: 1/3;
  }
}

/* Tablet - Desktop */
@media (max-width: 980px) and (min-width:  768px) {
  .c-packshot-grid-heading {
    grid-template-columns: auto 150px;
    gap: 48px;
  }
  
  .c-packshot-grid-heading .c-rich-text:only-child {
    grid-column: 1/3;
  }
}

/* Desktop */
@media (min-width: 980px) {
  .c-packshot-grid-heading {
    grid-template-columns: 200px auto 200px;
    gap: 48px;
  }
  
   .c-packshot-grid-heading .c-rich-text {
    grid-column: 2;
  }
  
  .c-packshot-grid-heading .m-label {
    grid-column: 3;
  }
  
  .c-packshot-grid-wrapper.u-bg-color {
    padding-block: 48px 96px;
  }
  
   .m-item {
    flex: 0 0 30%;
  }
}
.u-bg-color-black {
  background-color: #000000 !important;
}

.u-bg-color-white {
  background-color: #FFFFFF !important;
}

.u-bg-color-blue {
  background-color: #00385A !important;
}

.u-bg-color-yellow {
  background-color: #FFAF00 !important;
}

.u-bg-color-beige {
  background-color: #E1E0D6 !important;
}

.u-bg-color-red {
  background-color: #E75204 !important;
}

.u-bg-color-gray {
  background-color: #F2F2F2 !important;
}
@media (max-width: 767px) {
  .u-hide-until-tablet {
     display: none !important;
  }
}

@media (min-width: 768px)
{
  .u-hide-tablet {
     display: none !important;
  }
}
.u-padding {
  padding: 24px;
}

.u-padding-large {
  padding: 48px;
}

.u-padding-top {
  padding-block-start: 24px;
}

.u-padding-bottom {
  padding-block-end: 24px;
}

.u-padding-inline {
  padding-inline: 24px;
}

.u-padding-block {
  padding-block: 24px;
}

.u-padding-block-large {
  padding-block: 48px;
}

.u-padding-block-huge {
  padding-block: 96px;
}

.u-padding-block-end {
  padding-block-end: 24px;
}

.u-padding-block-start {
  padding-block-start: 24px;
}
@font-face {
  font-family: 'VAGRoundedStd';
  src:  url('https://4546388.fs1.hubspotusercontent-na1.net/hubfs/4546388/Fonts/VAG%20Rounded%20Std%20Thin.woff2') format('woff2'),
        url('https://4546388.fs1.hubspotusercontent-na1.net/hubfs/4546388/Fonts/VAG%20Rounded%20Std%20Thin.woff') format('woff');
}

@font-face {
  font-family: 'VAGRoundedStd';
  font-weight: bold;
  src:  url('https://pages.lambweston.eu/hubfs/Fonts/VAG%20Rounded%20Std%20Bold.woff2') format('woff2'),
        url('https://pages.lambweston.eu/hubfs/Fonts/VAG%20Rounded%20Std%20Bold.woff') format('woff');
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #000000;
  font-family: 'VAGRoundedStd', 'sans-serif';
  line-height: 1.4;
}

span {
  font-family: 'VAGRoundedStd', 'sans-serif' !important;
}

a {
  color: #00385A;
}

a:not(.c-btn):hover {
  
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 24px;
}

p {
  margin-top: 0;
  margin-bottom: 24px;
}

.o-fit {
    object-fit: cover;
    object-position: center center;   
    font-family: 'object-fit: cover;object-position: center center;'; 
    height: 100% !important;
    width: 100% !important;
}

.o-wrapper {
  max-width: var(--wrapper--max-width, 1200px);
  padding-inline: 24px;
  margin: 0 auto;
  width: calc(100% - (24px * 2));
}

.o-wrapper--small{
  --wrapper--max-width: 785px;
}
h1 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 300;
  font-size: 45px;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 110%;
}

h2, .h2 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 110%;
  letter-spacing: 3px;
}

h3, .h3 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 110%;
}

h4 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 120%;
}

h5 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 120%;
}

h6 {
  font-family: 'VAGRoundedStd', 'sans-serif';
  color: #00385A;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 110%;
}