/*
** product
*/
.products-area {
  background-image: linear-gradient(180deg, rgba(133, 140, 169, 0.2) 0%, rgba(133, 140, 169, 0) 100%);
}
.products-area .list-area {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  background-color: #fff;
  height: 7.5rem;
}
.products-area .list-area li {
  display: grid;
  width: 100%;
}
.products-area .list-area li:nth-child(even) {
  background-color: #F4F4F4;
}
.products-area .list-area a {
  padding: .72rem .938rem;
  text-align: center;
  text-decoration: none;
  height: 128px;
}
.products-area .list-area a span {
  display: block;
}
.products-area .list-area a .img-area img {
  max-width: 2.5rem;
  max-height: 2.5rem;
}
.products-area .list-area a .write-area {
  margin-top: .625rem;
  font-size: .8rem;
  font-family: 'gilmerbold';
  color: rgba(0, 0, 0, 0.4);
  padding-right: 0;
}
.products-area .list-area a:focus,
.products-area .list-area a:hover,
.products-area .list-area a:active,
.products-area .list-area a.active {
  border-bottom: .5rem solid #77A2E4;
}
.products-area .list-area a:focus .write-area,
.products-area .list-area a:hover .write-area,
.products-area .list-area a:active .write-area,
.products-area .list-area a.active .write-area {
  color: #000;
}
.product-inner .product-inner-item {
  display: none;
}
.product-inner .product-inner-item.active {
  display: block;
}
.product-inner .top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 8rem 0 2rem;
  position: relative;
}
.product-inner .top .line {
  position: absolute;
  left: calc(100% + 1.5rem);
  top: 10rem;
}
.product-inner .top .line span.type-4 {
  width: 5rem;
}
.product-inner .top .scroll-btn {
  bottom: -2rem;
}
.product-inner .top .scroll-btn .icon-content {
  border: none;
  border-radius: 0;
  border-right: 1px solid #87CEFA;
}
.product-inner .top .scroll-btn .icon {
  background-image: url(../img/icon-scroll-down-type2.svg);
}
.product-inner .top .scroll-btn .write {
  color: #C1C1C1;
}
.products-area .write-area {
  height: 100%;
  display: table;
  padding-right: 2rem;
}
.products-area .write-area .center {
  display: table-cell;
  vertical-align: middle;
}
.products-area .write-area h4.title {
  color: #77A2E4;
  font-size: 4.125rem;
  font-family: 'gilmerbold';
}
.products-area .write-area p.text {
  color: #2B2160;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-family: 'gilmerlight';
}
.products-area .inner {
  padding-top: 6rem;
}
.products-area .inner p.text {
  color: #000;
  font-size: 1.125rem;
  font-family: 'gilmerlight';
}
@media (max-width:1200px) {
  .product-inner .top .line {
    top: 0;
  }
  .product-inner .top .scroll-btn {
    bottom: -3rem;
  }
}
@media (min-width:768px) {
  .products-area .list-area {
    display: flex!important;
  }
}
@media (max-width:991px) {
  .product-inner .top {
    padding: 1rem 0 0;
  }
  .products-area .inner {
    padding-top: 2rem;
  }
  .products-area .write-area h4.title {
    font-size: 2.25rem;
    text-align: center;
  }
  .dd-container{
    margin: 2rem auto;
    width: calc(100% - 2rem);
    position: relative;
  }
  .dd-select {
    border-radius: 1.875rem;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    height: 3.75rem;
  }
  .dd-select.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-width: 0;
  }
  .dd-selected {
    overflow: hidden;
    display: block;
    padding: 1rem 3.8rem;
    font-size: 0.875rem;
    font-family: 'gilmerbold';
    line-height: 1.75rem;
    text-align: center;
    color: #000;
    text-decoration: none;
  }
  .dd-selected:hover {
    color: #000;
    text-decoration: none;
  }
  .dd-icon {
    width: 2.813rem;
    height: 2.813rem;
    position: absolute;
    right: .625rem;
    top: .5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/icon-dropdown-down.svg);
    border-radius: 50%;
    border: 1px solid #E8E8E8;
  }
  .active .dd-icon {
    background-image: url(../img/icon-dropdown-up.svg);
  }
  .dd-options {
    width: 100%;
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: auto;
    border-bottom-left-radius: 1.875rem;
    border-bottom-right-radius: 1.875rem;
  }
  .dd-options.active {
    display: block;
  }
  .dd-options li {
    padding: .938rem 1.25rem;
    border-top: 1px solid #E8E8E8;
    cursor: pointer;
  }
  .dd-options li:nth-child(odd) {
    background-color: rgba(232, 232, 232, 0.4);
  }
}

@media (max-width:1366px) {
  .custom-large-visible {
    display: none !important;
  }
}
@media (min-width:1367px) {
  .custom-small-visible {
    display: none !important;
  }
}
