@charset "utf-8";
/* CSS Document */

@import url("../../fonts/1. KB FONT_Bold(CI).otf");
@import url("../../fonts/KBFGDisplayL.ttf");
@import url("../../fonts/KBFGDisplayM.ttf");
@import url("../../fonts/KBFGDisplayMI.ttf");
@import url("../../fonts/KBFGTextL.ttf");
@import url("../../fonts/KBFGTextM.ttf");

/*--------------------------------------------------------------
# Product Banner Area
--------------------------------------------------------------*/
#productBanner {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120vh;
  position: relative;
  display: flex;
}

#productBanner .productBannerContainer {
  width: 100%;
}

#productBanner .productBannerImg {
  box-sizing: content-box;
  display: flex;
  height: 120vh;
}

#productBanner .productBannerImg img {
  object-fit: cover;
  display: block;
  width: 100%;
  border-bottom-left-radius: 3em;
  border-bottom-right-radius: 3em;
}

.productBannerText h1 {
  font-weight: 600;
  font-size: 2rem;
}

.productBannerContent {
  position: absolute;
  top: 9em;
  display: block;
  z-index: 2;
  right: 0;
  padding: 0 6em;
  padding-left: 7em;
}

.productBannerContent p {
  font-size: 0.9em;
  text-align: justify;
  text-align-last: left;
  padding-right: 1em;
  margin-bottom: 2em;
  color:  rgba(119, 108, 97, 1);
  max-height: 18em;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .15) transparent;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15); 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .35); 
}

.productBannerTextLiner {
  margin-top: 1.5em;
  margin-right: 9em;
  margin-bottom: 1em;
  border-top: 1px solid rgba(0,0,0,.75);
}

.productBannerContainer h2 {
  font-weight: 600;
  margin-bottom: 9px;
}

.productBannerContainer span {
  margin: 1em auto;
  color:  rgba(119, 108, 97, 1);
}

.productBannerText .buttonInvestNow {
  float: left;
  margin: 0.5em auto;
}

.productBannerText .buttonInvestNow:hover {
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,.5);
}

@media (max-width: 575px) {
  #productBanner {
    height: 100vh;
    display: block;
  }
  
  #productBanner .productBannerImg {
    height: 100vh;
  }
  
  #productBanner .productBannerImg img {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
  }
  
  .productBannerText {
    text-align: center;
  }
  
  .productBannerText h1 {
    color: rgba(255,255,255,1.00);
    margin-bottom: 0.5em;
  }
  
  .productBannerText p {
    text-align: justify;
    text-align-last: center;
    margin-bottom: 0.75em;
  }
  
  .productBannerContent {
    justify-content: center;
    align-content: center;
    align-items: center;
    top: 60vh;
    left: 0;
    right: 0;
    width: 100%;
    height: 16em;
    display: block;
    /*padding: 1.25em 0.25em;*/
    padding: 1em 0em;
    padding-bottom: 0.75em;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.35);
    box-shadow: 0 0.5em 0.5em 0 rgba(0,0,0,.35);
    float: none;
  }
  
  .productBannerContent p {
    font-size: 0.75em;
    color: rgba(255,255,255,1.00);
    max-height: 15em;
    margin-bottom: 1em;
  }
  
  .productBannerTextLiner {
    margin-right: 5em;
    margin-bottom: 0.75em;
    border-top: 1px solid rgba(255, 255, 255, .75);
  }
  
  .productBannerContainer h2 {
    font-size: 1em;
    color: rgba(255,255,255,1.00);
    margin-bottom: 5px;
  }

  .productBannerContainer span {
    font-size: 0.8em;
    margin: 0.5em auto;
    color:  rgba(255, 255, 255, 1);
  }
  
  .productBannerText .buttonInvestNow {
    margin: 1em auto;
    float: none;
  }
}

/*--------------------------------------------------------------
# Product Yellow Frame
--------------------------------------------------------------*/
#yellowFrameArea .productItem {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

#yellowFrameArea .mainProduct {
  text-align: center;
  margin: 0.5em auto;
  margin-bottom: 1em;
  padding: 0 3.5em;
}

.mainProduct .textYellowFrame {
  padding: 1em 4.85em;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mainProduct .textYellowFrame h1 {
  font-weight: 600;
  margin-top: 0.25em;
  margin-bottom: 1em;
}

.mainProduct .textYellowFrame p {
  color: rgba(119, 108, 97, 1);
  margin-bottom: 3em;
}

.mainProduct .yellowFrameLiner {
  margin: 0 auto;
  margin-bottom: 1.5em;
  padding: 0 1.5em;
  border-top: 1px solid rgba(119, 108, 97, 1);
}

@media (max-width: 575px) {
  
  #yellowFrameArea .mainProduct {
    padding: 0 0.5em;
  }
  
  .mainProduct .textYellowFrame {
    padding: 1em;
  }
  
  .mainProduct .textYellowFrame p {
    font-size: 0.9em;
    text-align: justify;
    text-align-last: center;
  }
  
  .mainProduct .yellowFrameLiner {
    margin-bottom: 1em;
  }
}

/*--------------------------------------------------------------
# Product List Item
--------------------------------------------------------------*/
#productListing {
  margin: 0 auto;
  background-color: rgba(208,208,208,0.1);
  top: -3em;
  position: relative;
}

#productListing .productList {
  position: relative;
  display: flex;
}

.productListRow {
  display: inline-block;
  margin: 0 auto;
}

.productListItem {
  padding: 0.5em;
  display: block;
  margin: 1em auto;
  float: left;
  position: relative;
}

.productListItem .newProductIcon {
  position: absolute;
  z-index: 5;
  top: -1em;
  right: -1em;
  width: 5em;
  height: 5em;
} 

.productListItem .newProductIcon img {
  width: 100%;
  height: 100%;
  display: block;
}

.listItemBox {
  border: 1px solid rgba(119, 108, 97, 1);
  box-shadow: 0 0 0.25em 0 rgba(119, 108, 97, .5);
  padding: 1em;
  border-radius: 2em;
  min-height: 18em;
  height: 18em;
  float: left;
  position: relative;
  transition: all 0.25s linear;
}

.listItemBox h2 {
  margin: .5em auto;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
  transition: all 0.25s linear;
}

.listItemBox .itemLearnMore {
  text-decoration: none;
  color: rgba(119, 108, 97, 1);
  position: absolute;
  bottom: 6em;
  transition: all 0.25s linear;
}

.listItemBox .itemLearnMore svg {
  margin-left: 0.5em;
  transition: all 0.25s linear;
}

.listItemBox a.buttonInvestNow {
  position: absolute;
  bottom: 1em;
  display: block;
  margin: 1em auto;
  width: 14em;
  transition: all 0.25s linear;
}

.listItemBox .buttonInvestNow {
  margin: 1em auto;
  width: 14em;
  transition: all 0.25s linear;
}

.listItemBox:hover {
  background-color: rgba(119, 108, 97, 1);
  transition: all 0.25s linear;
}

.listItemBox:hover > h2 {
  color: rgba(255,255,255,1.00);
  transition: all 0.25s linear;
}

.listItemBox:hover > .itemLearnMore {
  color: rgba(255, 214, 67, 1);
  transition: all 0.25s linear;
}

.listItemBox:hover > .buttonInvestNow:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,.5);
  color: rgba(119, 108, 97, 1);
  transition: all 0.25s linear;
}

@media (max-width: 575px) {
  #productListing {
    top: -2em;
    width: 100%;
    padding: 0 0.5em;
  }
  
  #productListing .productList {
    display: block;
  }
  
  .productListItem {
    width: 100%;
  }
  
  .listItemBox {
    width: 100%;
    text-align: center;
  }
  
  .listItemBox .itemLearnMore {
    text-align: center;
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
  }
  
  .listItemBox a.buttonInvestNow {
    left: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Product Yellow Frame - Product Item Selector - NAB Price - Download
--------------------------------------------------------------*/
/*========== Product Selector ==========*/
.productYellowFrame .container {
  padding: 0;
}

.textYellowFrame .productSelector {
  margin: .5em auto;
}

.productSelector select {
  margin: 1em auto;
}

.productSelector > .form-select {
  border-radius: 2em;
  border: none;
  color: rgba(119, 108, 97, 1);
  background-image: url("../../images/Icon/Right arrow.png");
  background-size: 2em 2em;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 3em;
}

.productSelector > .form-select:focus {
  background-image: url("../../images/Icon/Right arrow Up.png");
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,.5);
  transition: .35s ease-in-out;
}

.productSelector > .form-select > .form-floating {
  border: none;
}

@media (max-width: 575px) {
  .productYellowFrame .container {
    padding: 0 1em;
  }
}

/*========== Product Tab ==========*/
#mainProductArea {
  width: 100%;
  position: relative;
  margin: 0 auto;
  margin-top: -15.25em
}

#mainProductArea .productTab {
  margin: 0 auto;
  padding: 0;
}

#mainProductArea .productTab .container {
  padding: 0;
}

#mainProductArea .productTabFrame {
  display: flex;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 214, 67, 1);
  padding: 1em 0;
}

.productTabFrame ul {
  position: relative;
  align-content: center;
  align-items: baseline;
  align-self: baseline;
  margin: 1em auto;
  border-bottom: 1px solid rgba(119, 108, 97, 0.5);  
}

.productTabFrame ul > li {
  margin: 0 auto;
}

.productTabFrame ul > li > .nav-link {
  position: relative;
  padding: 0.25em 1.25em;
  padding-bottom: 5px;
  border: none;
  background: none;
  background-color: rgba(0, 0, 0, 0);
  color: rgb(119, 108, 97, 1) !important;
  font-size: 1.25rem;
  letter-spacing: 5px;
}

.productTabFrame ul > li > .nav-link.active {
  background-color: transparent;
  color: rgb(0, 0, 0) !important;
  font-weight: 600;
  border-bottom: 5px solid rgb(119, 108, 97);
  transition: 0.25s ease-in-out;
  padding-bottom: 0;
}

@media (max-width: 575px) {
  #mainProductArea {
    margin-top: -6.5em;
  }
  
  #mainProductArea .productTab {
    padding: 0 1em;
    margin: 0 auto;
  }

  #mainProductArea .productTabFrame {
    padding: 1em 1em;
  }

  .productTabFrame ul {
    border-bottom: 1px solid rgba(119, 108, 97, 0.5);
  }

  .productTabFrame ul > li {
    margin: 0.5em auto;
    margin-bottom: 0;
  }

  .productTabFrame ul > li > .nav-link {
    font-size: 0.75em;
    letter-spacing: 2px;
    padding: 0.25em 0.5em;
    padding-bottom: 5px;
  }
  
  .productTabFrame ul > li > .nav-link.active {
    border-bottom: 3px solid rgb(119, 108, 97);
    padding-bottom: 3px;
  }  
}

/*========== Product Content Container ==========*/
#productContent {
  margin: 0 auto;
  width: 100%vw;
}

@media (max-width: 575px) {
  #productContent {
    width: 100%;
  }
}

/*========== Product Harga Harian - Performance Value ==========*/
.productMainInfo {
  display: flex;
  margin: 0 auto;
}

.hargaHarian {
  margin: 0 auto;
  position: relative;
}

.hargaHarian .container {
  background-color: rgba(255, 214, 67, 1);
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  padding: 1.5em 0;
}

.productMainInfo h5 {
  text-align: center;
  display: block;
  font-weight: 600;
  margin: 1.25em auto;
  position: relative;
}

.hargaNAB {
  margin: 1em auto;
  padding: 0 1em;
  font-size: 0.95rem;
  color:  rgba(119, 108, 97, 1);
}

.hargaNAB input {
  border-radius: 2em;
  background-color: rgba(255,255,255,1.00) !important;
  border: none;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.375rem 2rem;
}

.hargaNAB label {
  margin-top: 0.5em;
  padding: 0 1em;
}

.hargaNAB > .form-control {
  text-align: right;
}

.hargaNABHarian {
  margin: 1em auto;
  padding: 0 1em;
  position: relative;
  font-size: 0.95rem;
  text-align: left;
  color: rgba(119, 108, 97, 1);
}

.hargaNABHarian input {
  border-radius: 2em;
  background-color: rgba(255,255,255,1.00) !important;
  border: none;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.375rem 2rem;
}

.hargaNABHarian i {
  margin: 0 auto;
  position: absolute;
  top: 2px;
  left: 30px;
  font-size: 2.5em;
}

.hargaNABHarian > .hargaNaik,
.hargaNABHarian > .hargaNaik::placeholder {
  color: rgba(114, 163, 98, 1);
  text-align: right;
}

.hargaNABHarian > .hargaTurun,
.hargaNABHarian > .hargaTurun::placeholder {
  color: rgba(150,0,10,1.00);
  text-align: right;
}

.hargaNABHarian label {
  margin-top: 0.5em;
  padding: 0 1em;
}

@media (max-width: 575px) {
  .productMainInfo {
    display: block;
    padding: 0 1em;
  }
  
  .hargaHarian {
    padding: 0 1em;
    margin: 0 auto;
  }

  .hargaHarian .container {
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
    padding: 0.5em 1em;
  }

  .productMainInfo h5 {
    text-align: center;
    padding: 0;
    margin: 0.5em auto;
    margin-bottom: 1em;
  }

  .hargaNAB {
    margin: 1em auto;
  }

  .hargaNAB input {
    font-size: 1.25em;
    font-weight: 600;
    padding: 0.375rem 1.75rem;
  }

  .hargaNAB label {
    text-align: center;
    width: 100%;
  }

  .hargaNAB > .form-control {
    text-align: center;
  }

  .hargaNABHarian {
    margin: 1em auto;
  }

  .hargaNABHarian input {
    padding: 0.375rem 1.75rem;
  }

  .hargaNABHarian i {
    position: absolute;
    top: 5px;
    left: 0;
    right: 2em;
    font-size: 2em;
    margin-right: 2em;
  }

  .hargaNABHarian > .hargaNaik,
  .hargaNABHarian > .hargaNaik::placeholder {
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .hargaNABHarian label {
    margin: 0 auto;
    margin-top: 0.5em;
    width: 100%;
    text-align: center;
  }
}

/*Switching Content*/
.home.active ~ .home1.tab-pane {
  display: block;
  visibility: visible;
  position: relative;
}

/*--------------------------------------------------------------
# Product Content in Content Partition
--------------------------------------------------------------*/
/*---===== Content Chart =====---*/
.mainContentChart {
  display: none;
  visibility: hidden;
  position: relative;
  width: 100%;
}

.contentChart {
  margin: 2em auto;
  margin-top: 2em;
}

/*========== Graphic Interactive Chart ==========*/
.graphicChart {
  margin: 1em auto;
  margin-top: 2.5em;
  position: relative;
  display: block;
}

#chartNABContainer {
  height: 37.5em;
  min-width: 300px;
}

#chartNABContainer .highcharts-title {
  font-family: "KBFG Text Medium";
  font-size: 2.5em;
  color: rgba(119, 108, 97, 1) !important;
  fill: rgba(119, 108, 97, 1) !important;
}

#chartNABContainer .highcharts-yaxis .highcharts-axis-line,
#chartNABContainer .highcharts-xaxis .highcharts-axis-line {
  stroke-width: 1px;
  fill: rgba(119, 108, 97, 1);
  stroke: rgba(119, 108, 97, .5);
}

#chartNABContainer .highcharts-navigator-xaxis {
  width: 100%;
}

#chartNABContainer .highcharts-navigator-yaxis {
  stroke-width: 1px,
}

#chartNABContainer .highcharts-color-0 {
  fill: rgba(240, 180, 78, 1);
  stroke: rgba(240, 180, 78, 1);
}

#chartNABContainer .highcharts-color-1 {
  fill: rgba(114, 163, 98, 1);
  stroke: rgba(114, 163, 98, 1);
}

#chartNABContainer .highcharts-navigator-handle-left,
#chartNABContainer .highcharts-navigator-handle-right {
  border-radius: 2em;
  stroke: none;
  outline: rgba(119, 108, 97, 0.5) 1px solid;
}

#chartNABContainer .highcharts-navigator-mask-outside {
  fill-opacity: .25;
}

#chartNABContainer .highcharts-navigator-mask-inside {
  fill-opacity: 0;
}

#chartNABContainer .highcharts-range-input rect {
  fill: none;
  outline: rgba(119, 108, 97, 1) 1px solid;
  stroke-width: 0;
  stroke: transparent;
  border-radius: 2em;
}

#chartNABContainer .highcharts-range-input text {
  color: rgba(119, 108, 97, 1);
  font-family: "KBFG Text Medium";
  font-weight: 500;
  font-size: 15px;
  fill: rgba(119, 108, 97, 1);
}

#chartNABContainer .highcharts-label {
  font-size: 1.25em;
}

#chartNABContainer .highcharts-contextbutton {
  fill: none;
  color: rgba(119, 108, 97, 1);
  transition: 0.25s ease;
  width: 2em;
}

#chartNABContainer .highcharts-contextbutton:hover {
  fill: none;
  color: rgba(255, 214, 67, 1);
}

#chartNABContainer .highcharts-button-symbol {
  stroke: rgba(119, 108, 97, 1);
  stroke-width: 2px;
}

#chartNABContainer .highcharts-button-symbol:hover {
  stroke: rgba(80, 80, 80, 1);
  stroke-width: 2px;
}

#chartNABContainer .highcharts-menu {
  border-radius: 1em;
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,0.35) !important;
  color: rgba(255,255,255,1.00);
}

#chartNABContainer .highcharts-menu-item:hover {
  background-color: rgba(119, 108, 97, 1) !important;
}

@media (max-width: 575px) {
  .graphicChart {
    margin: 2em auto;
    margin-top: 2.5em;
  }
  
  #chartNABContainer {
    height: inherit;
    max-height: 37.5em;
  }
  
  #chartNABContainer .highcharts-title {
    fill: rgba(119, 108, 97, 1);
  }
  
  #chartNABContainer .highcharts-yaxis .highcharts-axis-line {
    stroke-width: 0;
    fill: rgba(119, 108, 97, 1);
    stroke: rgba(119, 108, 97, .5);
  }
}

/*========== Chart Legend ==========*/
.chartLegend {
  display: block;
  position: relative;
  margin: 2em auto;
  align-content: center;
  align-items: baseline;
  text-align: center;
  font-size: 1.25rem;
}

.chartLegend .valburyLegend {
  float: left;
  color: rgba(119, 108, 97, 1);
}

.chartLegend .valburyLegend svg {
  color: rgba(240, 180, 78, 1);
}

.chartLegend .infovestaLegend {
  float: left;
  color: rgba(119, 108, 97, 1);
}

.chartLegend .infovestaLegend svg {
  color: rgba(114, 163, 98, 1);
}

/*========== Main Product Detail ==========*/
.productMainDetailGrey {
  background-color: rgba(119, 108, 97, 0.15);
  background-position: center;
  align-content: center;
  margin: 1em auto;
  padding: 1.5em;
  position: relative;
  /*box-shadow: 0 0.25em 0.5em 0 rgba(0,0,0,.75);*/
}

.produkDetailInfo {
  margin: 1em auto;
  padding: 0 3em;
  color: rgba(119, 108, 97, 1);
}

.produkDetailInfo h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: rgba(0,0,0,1.00);
}

.produkDetailInfo p {
  font-size: 0.9em;
  margin: 1em auto;
  line-height: 1.75;
}

.produkDetailInfo .riskIndicator {
  padding: 0.25em 3.5em;
  background-color: transparent;
  border-radius: 2em;
  border: 1px solid rgba(119, 108, 97, 1);
  font-weight: 600;
  font-size: 0.9em;
}

.produkDetailInfo ul {
  list-style: none;
  padding: 0;
  display: block;
}

.produkDetailInfo ul > li {
  display: block;
  position: relative;
  font-size: 0.9em;
}

.produkDetailInfo ul > li > p {
  display: inline-block;
  margin: 0 auto;
  margin-left: 0;
  position: relative;
}

.produkDetailInfo > .investRisk > li {
  display: inline-flex;
  position: relative;
}

.produkDetailInfo > .investRisk > li > svg {
  display: inline-block;
  margin-right: 0.75em;
  position: relative;
  padding-top: 0.25em;
}

.produkDetailInfo > .investRisk > li > span {
  display: inline-block;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 575px) {
  .produkDetailInfo p {
    text-align: justify;
    text-align-last: left;
  }
}

/*--- Product Main Detail Info ---*/
.productMainDetailInfo {
  display: flex;
  position: relative;
  margin: 3em auto;
  margin-bottom: 1em;
}

.mainDetailInfo {
  display: block;
  margin: 0 auto;
  padding: 0 3em;
  position: relative;
}

.mainInfo {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 1.25em auto;
}

.mainInfo img {
  height: 3.5em;
  float: left;
  margin-right: 1em;
  display: block;
  position: relative;
}

.mainInfo h5 {
  font-weight: 600;
  margin: 0.25em auto;
  display: block;
}

.mainInfo p {
  font-size: 0.85em;
  display: block;
  margin: 0 auto;
  color: rgba(119, 108, 97, 1);
}

@media (max-width: 575px) {
  .productMainDetailInfo {
    padding: 0 1em;
    margin-bottom: 1em;
  }
  
  .productMainDetailInfo .row {
    display: block;
    margin: 0 auto;
  }

  .mainDetailInfo {
    padding: 0 1em;
  }

  .mainInfo {
    display: block;
    margin: 1em auto 2em auto;
  }

  .mainInfo img {
    height: 3.5em;
    float: left;
    margin-right: 0;
    display: block;
    position: relative;
  }

  .mainInfo h5 {
    font-size: 1em;
    margin: 0.25em 0;
    display: inline-block;
    padding-left: 1em;
  }

  .mainInfo p {
    display: inline-block;
    margin: 0.25em 0;
    padding-left: 1em;
  }
}

/*========== Button Invest Now ==========*/
.contentChart .buttonInvestNow {
  margin: 1em auto;
  margin-bottom: 5em;
}

@media (max-width: 575px) {
  .contentChart .buttonInvestNow {
    margin-bottom: 3em;
  }
}

/*========== Donwload Content - Product Prospectus ==========*/
.prospectus {
  margin: 0 auto;
  position: relative;
}

.prospectus .container {
  padding: 0;
  margin-bottom: 5em;
}

.prospectus .container .productMainInfo {
  background-color: rgba(255, 214, 67, 1);
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  padding: 2em;
}

.prospectus .downloadItemContainer {
  margin: 1em auto;
  background-color: rgba(255,255,255,1.00);
  width: 11em;
  height: 11em;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  padding: 1em 0;
  display: block;
  position: relative;
}

.prospectus .downloadItemContainer:hover {
  background-color: rgba(119, 108, 97, 1);
  color: rgba(255,255,255,1.00);
}

.downloadItemContainer .downloadItem {
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 1em;
  height: 100%;
}

.downloadItemContainer .downloadItem img {
  display: block;
  margin: 0 auto;
  position: absolute;
  height: 75%;
  left: 0;
  right: 0;
  padding: 5px;
  top: 12%;
}

.downloadItemContainer .downloadItem img.imgHover {
  display: none;
  margin: 0 auto;
  position: absolute;
  height: 75%;
  left: 0;
  right: 0;
  padding: 5px;
  top: 12%;
}

.prospectus .downloadItemContainer:hover > .downloadItem img {
  display: block;
}

.downloadItemContainer h5 {
  text-align: center;
  font-weight: 600;
}

@media (max-width: 575px) {
  .prospectus {
    margin: 0 auto;
    position: relative;
  }

  .prospectus .container {
    padding: 0 1em;
    padding-bottom: 5em;
    margin-bottom: 5em;
  }

  .prospectus .container .productMainInfo {
    background-color: rgba(255, 214, 67, 1);
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
    padding: 1em;
  }

  .prospectus .downloadItemContainer {
    margin: 1em auto;
    background-color: rgba(255,255,255,1.00);
    width: 11em;
    height: 11em;
    border-top-left-radius: 2em;
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
    padding: 1em;
    display: block;
    position: relative;
  }

  .prospectus .downloadItemContainer:hover {
    background-color: rgba(119, 108, 97, 1);
    color: rgba(255,255,255,1.00);
  }

  .downloadItemContainer .downloadItem {
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: 1em;
    height: 100%;
  }

  .downloadItemContainer .downloadItem img {
    display: block;
    margin: 0 auto;
    position: absolute;
    height: 75%;
    left: 0;
    right: 0;
    padding: 5px;
    top: 12%;
  }

  .downloadItemContainer .downloadItem img.imgHover {
    display: none;
    margin: 0 auto;
    position: absolute;
    height: 75%;
    left: 0;
    right: 0;
    padding: 5px;
    top: 12%;
  }

  .prospectus .downloadItemContainer:hover > .downloadItem img {
    display: block;
  }
}