body {
	 margin: 0;
    padding: 0;
}
.index_chooser {
	    display: flex;
    flex-direction: row;
}

.index_chooser .index_chooser_cont {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 50%;
}

.index_chooser .index_chooser_cont:before {
  height: 100%;
  width: 100%;
  outline: 3px solid #fff; 
  outline-offset: -10px;
  cursor: pointer;
  content: '';
  position: absolute;
  display: block;
  background: transparent;
  z-index: 9999;
}

.index_chooser .index_chooser_cont:hover .index_chooser_bg:after {
  opacity: 0.6;
}

.index_chooser .index_chooser_bg {
  height: 100%;
  background-size: cover;
background-position: center center;
  transition: ease 0.3s; 
}

.index_chooser .index_chooser_bg:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: ease 0.3s;
}

.index_chooser .index_chooser_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
}

.index_chooser .index_chooser_title h1 {
  color: #fff;
  font-size: 63px;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.index_chooser .index_chooser_title strong {
  color: #fff;
  font-size: 29px;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.index_chooser .index_chooser_title .button {
  display: table;
  margin: auto;
  margin-top: 20px;
}