@charset "utf-8";
/* CSS Document */

/* Accordion side menu
---------------------------------------------------- */
@media print, screen and (min-width: 1500px){
  /*.accordion{
    margin-right: 30px;
  }*/
}
@media print, screen and (min-width: 1800px){
  /*.accordion{
    margin-right: 40px;
  }*/
}

.accordion dt {
	display: block;
	padding: 10px 20px;
	width: 100%;
	color: #fff;
	background-color:#0c3a8e;
  
  /*border: 1px solid #999;*/
	cursor:pointer;
  font-size: 1.0em;
}
.accordion-title_icon{
  position: relative;
  cursor: pointer;
}
.accordion-title_icon:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 35%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion-title_icon.active:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
@media print, screen and (min-width: 768px){
  .accordion dt {
    border-radius: 5px;
    text-align: center;
  }
  .accordion-title_icon:after {
    display: none;
  }
}
@media print, screen and (min-width: 992px){
  .accordion dt {
    padding: 15px 0px;
    font-size: 1.2em;
  }
}
@media print, screen and (min-width: 1200px){
}
@media print, screen and (min-width: 1500px){
}

.accordion dd{ 
  display:none;
  border-left: 1px solid #0c3a8e;
  border-right: 1px solid #0c3a8e;
  border-bottom: 1px solid #0c3a8e;
  background-color: #fff;
  padding: 15px 15px 15px;
}
@media print, screen and (min-width: 768px){
  .accordion dd{ 
    background-color: transparent;
    padding: 0px;
  }
}


.accordion dd ul {
  background-color: #fff;
	list-style: none;
	margin:0px;  
}
.accordion dd ul li{
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  line-height: 1.0em;
}
.accordion dd ul li:last-child{ border-bottom: none;}
/*.accordion dd ul li a:before{ 
  content:" \f0da";
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;  
  margin-right: 7px;
}*/
.accordion dd ul li a{
  display: table;
  width: 100%;
  padding: 15px 15px;
}
.accordion dd ul li a:link,
.accordion dd ul li a:visited{text-decoration: none;color: #333;}
@media print, screen and (min-width: 768px){
  .accordion dd{ 
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0px;
  }
  .accordion dd ul {
    border-top: none;
  }
  .accordion dd ul li{
    font-size: 0.9em;
  }
  .accordion dd ul li:last-child{ border-bottom: 1px solid #ddd;}
  .accordion dd ul li a{
    padding: 20px 10px;
  }
  .accordion dd ul li a:hover{ background-color: #f5f5f5; color: #7dbe6a;}
}
@media print, screen and (min-width: 992px){
  .accordion dd ul li a{
    padding: 30px 15px;
  }
}


.hamburgerMenu,
.hamburgerMenu span{
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.hamburgerMenu {
  position: relative;
  width: 24px;
  height: 24px;
  float: right;
  display: block;
  background: none;
  border: none;
}
.hamburgerMenu:focus{ outline: none;}
.hamburgerMenu i{ color: #fff;}
.hamburgerMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  /*border-radius: 4px;*/
}
.hamburgerMenu span:nth-of-type(1) {
  top: 0;
}
.hamburgerMenu span:nth-of-type(2) {
  top: 11px;
}
.hamburgerMenu span:nth-of-type(3) {
  bottom: 0;
}
.active .hamburgerMenu span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-315deg);
  transform: translateY(11px) rotate(-315deg);
}
.active .hamburgerMenu span:nth-of-type(2) {
  opacity: 0;
}
.active .hamburgerMenu span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}

 @media (min-width: 768px) {
	 .accordion dt  {background-image:none; cursor:default;}
	 .accordion dt.active  { background-image:none;}
	 .accordion dd{ display: block}
   .hamburgerMenu { display: none;}
}

/*   ===   END   ===   */


