
/* text */

body {
	background-color: rgb(202,206,208);
	
	font-family: "HelveticaNeue-Regular", sans-serif;
	font-weight: normal;
	font-size: 20px;
	line-height: 26px;

	color: black;
}

h1 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0px;
  letter-spacing: 0.6px;
}

p {
	margin-bottom: 0px;
}

a {
	color: black;
  text-decoration: none;
}

a:hover {
	color: black;
  text-decoration: underline;
}

.text { 
  position: relative;

  margin: auto;
  width: 80%;
}

.text p {
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 1px;
}

.caption-link {
  position: relative;
  z-index: 20;
  text-decoration: underline;
}

.caption-link:hover {
  text-decoration: none;
}

/* elements */

#container_1 {

  padding-top: 78px;
  padding-left: 26px;
  padding-right: 26px;
}

#header {

  top: 26px;
  padding-left: 26px;
  padding-right: 26px;

}

#info_open {
  display: flex;
  text-decoration: none;
  text-align: right;
}

#info_close {
  display: none;
  text-decoration: none;
}

#info_text {
  display: none;
  margin-bottom: 26px;
}

.dropdown-link {text-align: right;}

.dropdown-link:hover {
  cursor: pointer;
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

hr {
  border-top:1px solid black;
  margin-top: 0px;
  margin-bottom: 26px;
}

.text_column {
  margin-bottom: 26px;
  padding-right: 10px;
}

.image_column {
  margin-bottom: 26px;
}

/* carousel */

.carousel {
	background-color: transparent;
}

.carousel-image {

  max-height: 660px;
  max-width: 100%;

  padding-left: 0px;
  padding-right: 0px;

}

.carousel-video {
  display: inline-block;
  width: 500px;
}

.carousel-inner {
  display: flex;
  height: 660px;
  align-items: center;
}

.carousel-control-next {
	position: absolute;

  z-index: 1;

  height: 100%;
  width: 50%;
  opacity: 0%;
  cursor: e-resize;	
}

.carousel-control-prev {
  position: absolute;

  z-index: 1;

  height: 100%;
  width: 50%;
  opacity: 0%;
  cursor: w-resize;	
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 0%;
    opacity: 0%;	
}

.carousel-caption {
    position: relative;
    left: 0;
    top: 0;
}

/* slide transition adjust */

.carousel-inner .carousel-item {
  transition: -webkit-transform 0.26s ease;
  transition: transform 0.26s ease;
  transition: transform 0.26s ease, -webkit-transform 0.26s ease;
}


@media (max-width: 767px) {
  #container_1 {padding-top: 72px; padding-left: 24px; padding-right: 24px;}
  #header {top: 24px; padding-left: 24px; padding-right: 24px;}
  hr, .text_column, .image_column {margin-bottom: 24px;}
  #info_text {margin-bottom: 36px;}
  
  body {font-size: 18px; line-height: 24px;}
  h1 {font-size: 18px; line-height: 24px;}
  .text {line-height: 330px; width: 100%;}
  .text p {font-size: 18px; line-height: 24px; letter-spacing: 0.5px;}

  .carousel-inner, .carousel-image {max-height: 300px;}
  .carousel-video {width:300px;}

  .text_column {text-align: center;}
}



