:root{
  --boxHeight: calc(var(--inner-Height) - var(--headerHeight));
  --totalHeight: var(--boxHeight);
}
.BorderBox{
  position: relative;
  display: inline-block;
  padding: var(--headerHeight) 0 0 0;
  width: var(--ContWidth);
  height: var(--ContHeight);

}
.Background{
  background-image: url("../content/pult.jpg");
  background-size: 100%;
  background-repeat: repeat-y;
  height: auto;
  width: var(--ContWidth);
  float: left;
  position: relative;
  z-index: 1;
}
.ContBox1{
  width: 40%;
  height: var(--boxHeight);
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0% 5% 0 5%;
  opacity: 0.8;
  float: left;
  position: relative;
  z-index: 2;

}
.ContBox2{
  width: 40%;
  height: var(--boxHeight);
  min-height: var(--boxHeight);
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 0% 5% 0vw 5%;
  opacity: 0.8;
  float: left;
  position: sticky;
  z-index: 2;
  overflow-y: scroll;
}

p{
  color: var(--color-black);
  font-size: 1.2vw;
  font-weight: 400;
  text-align: left;
}
h2{
  color: var(--color-brown);
  font-weight: 500;
  font-size: 3.8vw;
  font-weight: 700;
  text-align: left;
}
h3{
  color: var(--color-black);
  font-weight: 600;
  text-align: left;
  font-size: 1.6vw;
}
#h2_equipContBox2{
  color: var(--color-white);
  font-weight: 500;
  font-size: 2.8vw;
  font-weight: 700;
  text-align: left;
  line-height: 1em;
}
li{
  color: var(--color-white);
  font-size: 1.2vw;
  font-weight: 400;
  text-align: left;
}


/* Desktop Devices*/
@media only screen and (min-width: 600px) and (max-width: 900px) and (-webkit-max-device-pixel-ratio: 1) {
  p{font-size: 2.2vw;}
  h2{font-size: 4.6vw;}
  h3{font-size: 3.4vw;}
  li{font-size: 2.0vw;}
}
@media only screen and (max-width: 599px) and (-webkit-max-device-pixel-ratio: 1) and (orientation: landscape) {
  p{font-size: 2.2vw;}
  h2{font-size: 4.6vw;}
  h3{font-size: 3.4vw;}
  li{font-size: 2.0vw;}
}
@media only screen and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1) and (orientation: portrait) {
  .BorderBox{height: calc(100vh - (1.9* var(--headerHeight))); padding: calc(1.9* var(--headerHeight)) 0 0 0;}
  .Background{}
  .ContBox1{width: 95%; height: auto;}
  .ContBox2{width: 95%; }
  p{font-size: 3.9vw;}
  h2{font-size: 10.6vw;}
  h3{font-size: 4.5vw;}
  li{font-size: 3.8vw;}
  :root{--totalHeight: calc(2* var(--ContHeight));}
}
@media all and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  /*Mobile Landscape up to iPad */
  .ContBox1{width: 40%; height: 1000px;}
  .ContBox2{width: 40%; height: 1000px;}
  p{font-size: 2.2vw;}
  h2{font-size: 4.6vw;}
  h3{font-size: 3.4vw;}
  li{font-size: 2.0vw;}
}
@media all and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  /*Mobile Portait up to iPad Pro */
  .BorderBox{height: calc(100vh - (1.9* var(--headerHeight))); padding: calc(1.9* var(--headerHeight)) 0 0 0;}
  .Background{}
  .ContBox1{width: 90%; height: auto;}
  .ContBox2{width: 90%; height: auto;}
  p{font-size: 3.9vw;}
  h2{font-size: 10.6vw;}
  h3{font-size: 4.5vw;}
  li{font-size: 3.8vw;}
  :root{--totalHeight: calc(2* var(--ContHeight));}
}
