
/*
.dropdown {
  position: absolute;
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #383838;
	background-color: rgba(0,0,0,0.8);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 1000;
}
.dropdown.active {
  height: 370px;
	border-bottom: 4px solid #cc0e2a;
}
.dropdown-content {
	width: 100%;
}
.dropdown-content {
	padding: 0px 0px 0px 0px;
}
.arrow-HP {
  position: absolute;
  top: 63px;
  left: 0px;
  cursor: pointer;
  background: black;
  padding: 13px;
  z-index: 1100;
  transition: all 0.3s ease-in-out;
	border-radius: 25px;
}
.arrow-HP:hover {
  background: #333;
}
.arrow-HP img {
  width: 24px;
  height: 24px;
}
*/

/* ======================== */

.info-container-tim {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: auto;
	grid-column-gap: 50px;
	width: 814px;
	margin: 64px auto 0 auto;
}
.ict-01 { grid-area: 1 / 1 / 2 / 2;
  display: flex;
  align-items: center;
}
.ict-02 {
	width: 180px;
	height: 232px;
	grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 940px) {
.info.active {
  height: 740px;
	border-bottom: 4px solid #cc0e2a;
}
.info-container-tim {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: repeat(2, auto);
	grid-row-gap: 10px;
	width: 300px;
	margin: 104px auto 0 auto;
}
.ict-01 { 
  display: flex;
  align-items: center;
	grid-area: 1 / 1 / 2 / 2; 
}
.ict-02 { 
	width: 180px;
	height: 232px;
	grid-area: 2 / 1 / 3 / 2; 
}


}





