/* Font */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /* font-family: 'Montserrat', "Helvetica", Arial, sans-serif;  - OPTION1 -  */
  /* font-family: 'Zilla Slab', serif; - OPTION2 -  */
  font-family: 'Crimson Text', serif;
  font-family: 'Zilla Slab', serif;
  padding: 0;
  margin: 0;
  letter-spacing: 0.04em
}
 
/* Navigation bar*/
.navbar {
  background: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.navbar__container {
  width: 100%;
}

.navbar__item {
  width: 100%;
  display: inline-block; 
}

.navbar__item--left {
    text-align: left; 
}

.navbar__item--right {
   /*width: 100%;*/ 
   text-align: right;
   margin-right: 1rem;
}

.discount {
	color: white;
  background-color: #6A266F;
	padding: 1px 30px;
}

.btn {
    border-radius: 20px;
    box-sizing: border-box;
    border-width: 2px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 800;
    padding: 7px 18px;
    border-color: rgb(204, 87, 0);
    color: rgb(204, 87, 0);
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    transition: all 150ms linear; 
}

.btn:hover {
  color: #FFF !important;
}

/* header */
span {
  font-weight: bold;
}

.wrapper {
  position: relative;
  display: block;
  padding-top: 2rem;
  height: 28rem;
  display:flex;
  justify-content: center;
  align-items: center;
}

.motto {
  text-align: center;
  color: black;
  text-shadow: 0.1rem 0.1rem 0.5rem black;
  background-color: rgba(246, 238, 194, .4);
  letter-spacing: 0.08em
}

.motto__title {
  margin-top: 2rem;
  font-size: 3rem;
}

.motto__subtitle {
  font-size: 1.5rem;
}

.title-effect1 {
  font-size: 2rem;
}

.title-effect2 {
  font-size: 1.5rem;
}

/* Image picture*/
.headimage {
  position: absolute;
  top:  0;
  left: 0;
  text-align: center;
  min-height: 50vh;
  width: 100%;
  z-index: -1;
}

.headimage img {
  width: 100%;
  height: auto;
}

/* Main part*/
main {
  background-color: #fff;
  padding-top: 1.5rem;
}

.article_textsize {
  font-size: 1.2rem;
}

.icon-container {
  text-align: center;
  background-color:rgb(88, 129, 163, 0.3);
  color: #350738;
}
.icon-item {
	min-width:200px;
	width: 32.3333%;            
	display:  inline-block;     
	vertical-align:  top;       
	margin-bottom: 5px;         
	padding-top:  5px;          
	padding-bottom:  5px;       
	padding-right: 6%;
	padding-left: 6%;
	box-sizing: border-box;   
  }

.transparentdiv {
    position: relative;
}

.transparentdiv__image {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  font-size: 16px;
  padding: 10px; 
  background-image: url('img/JP2.jpg');
  opacity: 0.05;
  background-size: cover;
  min-height: 50vh;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.u-padding-top-medium {
  padding-top: 3rem;
}

.u-padding-bottom-small {
  padding-bottom: 2rem;
}

.u-padding-left-small {
  padding-left: 2rem;
}

/* Accordion Menu  */

.cp_actab {                  
	position: relative;
	overflow: hidden;
	width: 70%;
	margin: 0 auto;
	color: #ffffff;
}

.cp_actab input {
	position: absolute;
	opacity: 0;
}

.cp_actab label {
	font-weight: bold;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
	background: rgb(2, 71, 7);
}

.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background:rgba(2, 71, 7, 0.3);
}

.cp_actab .cp_actab-content p {
	margin: 1em;
}

.cp_actab input:checked ~ .cp_actab-content {
	max-height: 20em;
}

/* Icon */

.cp_actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}

.cp_actab input[type=checkbox] + label::after {
	content: '+';
}

.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}  /* Accordion Menu finish here */

.final-phrase-container {
  margin-top: 3rem;
}

.final-phrase {
  font-size: 30px;
  color: #350738;
}

  footer {
    background: #808080;
    color: #ffffff;
    margin-top: 3em;
    padding: 1em;
    flex-grow: 1;
  }
  