/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.feed_inno_life {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background-color: #041237;
}
.feed_inno_life .lg-view {
  display: none;
}
.feed_inno_life .sm-view {
  display: block;
}
.feed_inno_life img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.feed_inno_life .l-container {
  max-width: 1920px;
  margin: 0 auto;
}
.feed_inno_life .l-section {
  position: relative;
}
.feed_inno_life .l-section .l-btn {
  position: absolute;
  width: 6.875%;
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  cursor: pointer;
}
.feed_inno_life .l-section .l-btn:active {
  filter: brightness(1.2);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
  transform: translateX(-50%) translateY(-50%) scale(1.2);
}
@media (hover: hover) {
  .feed_inno_life .l-section .l-btn:hover {
    filter: brightness(1.2);
    -moz-transform: translateX(-50%) translateY(-50%) scale(1.2);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1.2);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
    transform: translateX(-50%) translateY(-50%) scale(1.2);
  }
}

@media (min-width: 992px) {
  .feed_inno_life .lg-view {
    display: block;
  }
  .feed_inno_life .sm-view {
    display: none;
  }
  .feed_inno_life .l-section .l-btn {
    width: 6.875%;
  }
  .feed_inno_life .kv .l-btn {
    top: 50%;
    left: 50%;
  }
  .feed_inno_life .section-1 .l-btn {
    top: 66.4%;
    left: 12.4%;
  }
  .feed_inno_life .section-2 .l-btn {
    top: 59.2%;
    left: 82.8%;
  }
  .feed_inno_life .section-3 .l-btn {
    top: 66.4%;
    left: 12.4%;
  }
  .feed_inno_life .section-4 .inner {
    position: absolute;
    top: 18vw;
    left: calc(50% - 78.75% / 2);
    max-width: 1512px;
    width: 78.75%;
    background-color: #26509a;
  }
  .feed_inno_life .section-4 .l-accordion {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .feed_inno_life .section-4 .item {
    position: relative;
    width: 100px;
    height: 250px;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    overflow: hidden;
  }
  .feed_inno_life .section-4 .item-1 .item-header {
    background-color: #26509a;
  }
  .feed_inno_life .section-4 .item-1.active .item-header {
    background-color: rgba(38, 80, 154, 0.75);
  }
  .feed_inno_life .section-4 .item-2 .item-header {
    background-color: #3a61a6;
  }
  .feed_inno_life .section-4 .item-2.active .item-header {
    background-color: rgba(58, 97, 166, 0.75);
  }
  .feed_inno_life .section-4 .item-3 .item-header {
    background-color: #6282bb;
  }
  .feed_inno_life .section-4 .item-3.active .item-header {
    background-color: rgba(98, 130, 187, 0.75);
  }
  .feed_inno_life .section-4 .item-4 .item-header {
    background-color: #88a5cf;
  }
  .feed_inno_life .section-4 .item-4.active .item-header {
    background-color: rgba(136, 165, 207, 0.75);
  }
  .feed_inno_life .section-4 .item.active {
    width: calc(100% - 100px * 3);
  }
  .feed_inno_life .section-4 .item.active .item-header__icon {
    bottom: calc(100% - 100px);
  }
  .feed_inno_life .section-4 .item.active .item-btn {
    right: 40px;
    pointer-events: auto;
  }
  .feed_inno_life .section-4 .item-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    cursor: pointer;
  }
  .feed_inno_life .section-4 .item-header__icon {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .feed_inno_life .section-4 .item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .feed_inno_life .section-4 .item-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feed_inno_life .section-4 .item-btn {
    position: absolute;
    bottom: 40px;
    right: -400px;
    width: 240px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: .1em;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    display: block;
    pointer-events: none;
  }
  .feed_inno_life .section-4 .item-btn--a {
    color: #000;
    background-color: #fce501;
  }
  .feed_inno_life .section-4 .item-btn--a:active {
    color: #fff;
    background-color: #26509a;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .feed_inno_life .section-4 .item-btn--a:hover {
    color: #fff;
    background-color: #26509a;
  }
}
@media (min-width: 992px) {
  .feed_inno_life .section-4 .item-btn--b {
    color: #fff;
    background-color: #d11f2b;
  }
  .feed_inno_life .section-4 .item-btn--b:active {
    color: #d11f2b;
    background-color: #fff;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .feed_inno_life .section-4 .item-btn--b:hover {
    color: #d11f2b;
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .feed_inno_life .section-5 .l-btn {
    width: 18.125%;
    top: 69.5%;
    left: 55.15%;
  }
}
@media (max-width: 991px) {
  .feed_inno_life .l-section .l-btn {
    width: 17.6%;
  }
  .feed_inno_life .kv .l-btn {
    top: 67.5%;
    left: 50%;
  }
  .feed_inno_life .section-1 .l-btn {
    top: 27.5%;
    left: 50%;
  }
  .feed_inno_life .section-2 .l-btn {
    top: 29%;
    left: 50%;
  }
  .feed_inno_life .section-3 .l-btn {
    top: 30%;
    left: 50%;
  }
  .feed_inno_life .section-4 .inner {
    position: absolute;
    top: 22%;
    left: calc(50% - 91.2% / 2);
    max-width: 91.2%;
    width: 91.2%;
    background-color: #26509a;
  }
  .feed_inno_life .section-4 .item {
    position: relative;
    width: 100%;
    height: 13.3333vw;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    overflow: hidden;
  }
  .feed_inno_life .section-4 .item-1 .item-header {
    background-color: #26509a;
  }
  .feed_inno_life .section-4 .item-1.active .item-header {
    background-color: rgba(38, 80, 154, 0.75);
  }
  .feed_inno_life .section-4 .item-2 .item-header {
    background-color: #3a61a6;
  }
  .feed_inno_life .section-4 .item-2.active .item-header {
    background-color: rgba(58, 97, 166, 0.75);
  }
  .feed_inno_life .section-4 .item-3 .item-header {
    background-color: #6282bb;
  }
  .feed_inno_life .section-4 .item-3.active .item-header {
    background-color: rgba(98, 130, 187, 0.75);
  }
  .feed_inno_life .section-4 .item-4 .item-header {
    background-color: #88a5cf;
  }
  .feed_inno_life .section-4 .item-4.active .item-header {
    background-color: rgba(136, 165, 207, 0.75);
  }
  .feed_inno_life .section-4 .item.active {
    height: 72vw;
  }
  .feed_inno_life .section-4 .item.active .item-btn {
    pointer-events: auto;
  }
  .feed_inno_life .section-4 .item-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 13.3333vw;
    z-index: 2;
    cursor: pointer;
  }
  .feed_inno_life .section-4 .item-header__icon {
    position: absolute;
    bottom: 0;
    left: 2vw;
    width: 13.3333vw;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .feed_inno_life .section-4 .item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .feed_inno_life .section-4 .item-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feed_inno_life .section-4 .item-btn {
    position: absolute;
    bottom: 6.6666vw;
    left: 50%;
    width: 66.6666vw;
    height: 80px;
    height: 10.6666vw;
    line-height: 10.6666vw;
    text-align: center;
    border-radius: 10px;
    font-size: 4vw;
    letter-spacing: .05em;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    display: block;
    pointer-events: none;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .feed_inno_life .section-4 .item-btn--a {
    color: #000;
    background-color: #fce501;
  }
  .feed_inno_life .section-4 .item-btn--a:active {
    color: #fff;
    background-color: #26509a;
  }
}
@media (max-width: 991px) and (hover: hover) {
  .feed_inno_life .section-4 .item-btn--a:hover {
    color: #fff;
    background-color: #26509a;
  }
}
@media (max-width: 991px) {
  .feed_inno_life .section-4 .item-btn--b {
    color: #fff;
    background-color: #d11f2b;
  }
  .feed_inno_life .section-4 .item-btn--b:active {
    color: #d11f2b;
    background-color: #fff;
  }
}
@media (max-width: 991px) and (hover: hover) {
  .feed_inno_life .section-4 .item-btn--b:hover {
    color: #d11f2b;
    background-color: #fff;
  }
}
@media (max-width: 991px) {
  .feed_inno_life .section-5 .l-btn {
    width: 75.2%;
    top: 82.5%;
    left: 48.5%;
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 66.6666%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.modal {
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-dialog {
  max-width: 1200px;
  margin: 50px auto;
  width: calc(100% - 15px * 2);
}
.modal-content {
  border: 0;
  border-radius: 0;
  padding: 0;
}
.modal-body {
  padding: 0;
}
.modal-header {
  padding: 0;
  border: 0;
}
.modal-footer {
  padding: 0;
  border: 0;
}
.modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  font-size: 0;
  overflow: hidden;
  appearance: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  background: none;
  box-shadow: 0;
  opacity: 1;
}
.modal .modal-close:hover, .modal .modal-close:active {
  opacity: 1;
}

.video-modal .modal-dialog {
  max-width: 1200px;
}
.video-modal .modal-content {
  padding: 0;
  background-color: transparent;
}
