@charset "UTF-8";
/* CSS Document */
body {
  background-color: #FFFFFF;
  margin: 0px;
  padding: 0px;
}
.quoteBox {
  padding: 16px;
  background-color: #f0f0f0;
}
/* Mobile Layout: 480px and below. */
.sections {
  z-index: 90;
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 100%;
}
.textSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.textSectionM {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: calc(100% - 20px);
  padding: 32px;
  margin: 10px;
  background-color: #f0f0f0;
}
.gridTable {
  display: grid;
  column-gap: 24px;
  row-gap: 8px;
  grid-template-columns: 1fr;
}
.gridTableLabel {
  display: inline-block;
  width: auto;
  text-align: left;
  padding: 2px 8px 0px 8px;
  border: solid;
  border-color: #002f5f;
  border-width: 1.5px;
  border-radius: 0px;
}
.gridTableArticle {
  padding: 2px 8px 0px 8px;
  border: solid;
  border-color: rgb(0 0 0 / 0);
  border-width: 1.5px;
  border-radius: 0px;
}
.quoteSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #e0e0e0;
}
.leftSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 16px;
}
.leftSection img {
  border-radius: 12px;
  box-sizing: border-box;
}
.rightSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.figBannerSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  box-sizing: border-box;
  width: 396px;
  padding-left: 10px;
  padding-right: 10px;
}
.figCard {
  position: relative;
  clear: none;
  float: left;
  display: block;
  box-sizing: border-box;
}
.hide_mobile {
  display: none;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
  .sections {
    z-index: 90;
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 480px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 480px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .textSectionM {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: calc(480px - 32px);
    padding: 32px;
    margin: 16px;
    background-color: #f0f0f0;
  }
  .gridTable {
    display: grid;
    column-gap: 24px;
    row-gap: 8px;
    grid-template-columns: auto 1fr;
  }
  .gridTableLabel {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 2px 8px 0px 8px;
    border: solid;
    border-color: #002f5f;
    border-width: 1.5px;
    border-radius: 0px;
  }
  .gridTableArticle {
    padding: 2px 8px 0px 8px;
    border: solid;
    border-color: rgb(0 0 0 / 0);
    border-width: 1.5px;
    border-radius: 0px;
  }
  .quoteSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 480px;
    background-color: #e0e0e0;
  }
  .leftSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 160px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0px;
  }
  .leftSection img {
    border-radius: 8px;
    box-sizing: border-box;
  }
  .rightSection {
    position: relative;
    clear: none;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 320px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .figBannerSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 480px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
    box-sizing: border-box;
  }
  .hide_tablet {
    display: none;
  }
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
  .sections {
    z-index: 90;
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 768px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 768px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .textSectionM {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: calc(768px - 32px);
    padding: 48px;
    margin: 16px;
    background-color: #f0f0f0;
  }
  .gridTable {
    display: grid;
    column-gap: 24px;
    row-gap: 8px;
    grid-template-columns: auto 1fr;
  }
  .gridTableLabel {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 2px 8px 0px 8px;
    border: solid;
    border-color: #002f5f;
    border-width: 1.5px;
    border-radius: 0px;
  }
  .gridTableArticle {
    padding: 2px 8px 0px 8px;
    border: solid;
    border-color: rgb(0 0 0 / 0);
    border-width: 1.5px;
    border-radius: 0px;
  }
  .quoteSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 768px;
    background-color: #e0e0e0;
  }
  .leftSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 256px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0px;
  }
  .leftSection img {
    border-radius: 12px;
    box-sizing: border-box;
  }
  .rightSection {
    position: relative;
    clear: none;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 512px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .figBannerSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    box-sizing: border-box;
    width: 768px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
    box-sizing: border-box;
  }
  .hide_desktop {
    display: none;
  }
}