/*@color-darkgray: #333;*/
.transition {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu_transition {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
#carousel {
  display: block;
  position: relative;
  width: 100%;
  height: 150px;
  margin: 0 0 1rem 0;
  padding: 0;
  outline: none;
  overflow: hidden;
  box-sizing: border-box;
}
#carousel .hover_block {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#carousel .item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(13, 19, 34, 0.7), transparent 15%), linear-gradient(270deg, rgba(13, 19, 34, 0.7), transparent 15%), linear-gradient(90deg, rgba(13, 19, 34, 0.7), transparent 40%), url("../images/carousel/1.jpg");
  background-position: left bottom;
  background-size: cover;
}
#carousel .item:first-child {
  display: block;
}
#carousel .item img.image {
  position: absolute;
}
#carousel .item img.image.left {
  height: 120px;
  left: 20px;
  top: 65px;
}
#carousel .item img.image.right {
  height: 200px;
  right: 20px;
  top: 25px;
}
#carousel .item div.desc {
  position: absolute;
  width: 400px;
  left: 20px;
  top: 50px;
  text-align: left;
  color: #fff;
}
#carousel .item div.desc div.header {
  font-size: 2em;
  text-align: left;
}
#carousel .item div.desc div.info {
  font-size: 1.1em;
  text-align: left;
}
#carousel .item div.desc button {
  border: 1px solid #99a052;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: calc(5px + 2px) 10px;
  background-color: #BBC274;
  padding: 5px 15px;
  margin: 10px 0;
  color: #213547;
}
#carousel .item div.desc button:hover {
  background-color: #ccd297;
}
#carousel div.dots {
  position: absolute;
  bottom: 5px;
  right: 10px;
  width: auto;
  text-align: right;
  cursor: pointer;
}
#carousel div.dots i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  margin-top: 1px;
  margin-bottom: 1px;
  background-color: #fff;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
#carousel div.dots i.active {
  width: 7px;
  height: 7px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #BBC274;
}
#carousel div.dots i i:hover {
  width: 7px;
  height: 7px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
#carousel div.dots i + i {
  margin-left: 5px;
}
#choices,
#choices_ext {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9em;
}
#choices a.item,
#choices_ext a.item {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 0.7em 0.4em;
  margin-right: 0;
  color: #213547;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #999;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#choices a.item:not(:first-child),
#choices_ext a.item:not(:first-child) {
  margin-top: 0.5em;
}
#choices a.item:hover,
#choices_ext a.item:hover {
  background-color: #eee;
}
#choices a.item .box1,
#choices_ext a.item .box1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
#choices a.item .box2,
#choices_ext a.item .box2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
#choices a.item .box3,
#choices_ext a.item .box3 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
#choices a.item img,
#choices_ext a.item img {
  height: 100px;
}
#choices a.item div.header,
#choices_ext a.item div.header {
  margin: 0.3em 0;
  font-size: 1.1em;
  font-weight: bold;
  text-align: left;
}
#choices a.item div.desc,
#choices_ext a.item div.desc {
  font-size: 0.95em;
  text-align: left;
}
#choices_ext a.item img {
  height: 100px;
}
#choices_ext a.item img div.header {
  font-size: 1em;
}
#choices_ext a.item img div.desc {
  font-size: 0.9em;
}
@media screen and (min-width: 600px) {
  #choices,
  #choices_ext {
    display: flex;
    flex-wrap: wrap;
    font-size: 1em;
  }
  #choices a.item,
  #choices_ext a.item {
    display: flex;
    box-sizing: border-box;
    width: calc((100% - 1rem)/2);
    align-items: center;
    flex-direction: column;
    padding: 0.7em 0.4em;
    margin-right: 0;
    color: #213547;
    text-decoration: none;
    cursor: pointer;
    border: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  #choices a.item:not(:first-child),
  #choices_ext a.item:not(:first-child) {
    margin-top: 0;
  }
  #choices a.item:nth-child(2n+1),
  #choices_ext a.item:nth-child(2n+1) {
    margin-right: 1rem;
  }
  #choices a.item img,
  #choices_ext a.item img {
    height: 150px;
  }
  #choices a.item div.header,
  #choices_ext a.item div.header {
    margin: 0.3em 0;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
  }
  #choices a.item div.desc,
  #choices_ext a.item div.desc {
    font-size: 0.95em;
    text-align: center;
  }
}
@media screen and (min-width: 750px) {
  #carousel {
    height: 300px;
  }
  #carousel .item img.image.left {
    top: 78px;
  }
  #carousel .item img.image.right {
    top: 38px;
  }
  #carousel .item div.desc {
    top: 63px;
  }
  #choices a.item,
  #choices_ext a.item {
    width: calc((100% - 3rem)/4);
    margin-right: 1rem;
  }
  #choices a.item:last-child,
  #choices_ext a.item:last-child {
    margin-right: 0rem;
  }
}
