body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #fff;
}

.main_color {
  color: #005277;
}

.sub_color {
  color: #008296;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}

.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}

.fix_aside .fx_item.is_primary {
  background: linear-gradient(94.17deg, #01FFFF 8.85%, #FEE92E 103.15%);
  color: #0F236C;
  line-height: 1.3;
}

.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}

.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}

.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("../img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header.is_active .nav_area .nav_link {
  color: #fff;
}

.g_header.is_active .nav_area .nav_link:hover {
  color: #008296;
}

.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #fff;
}

.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}

.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.g_header .menu_btn .icon::before {
  top: -200%;
}

.g_header .menu_btn .icon::after {
  bottom: -200%;
}

.g_header .menu_btn.sty_white {
  border-color: #fff;
}

.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}

.g_header .nav_area {
  position: relative;
  z-index: 3;
}

.g_header .nav_area .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .nav_area .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-color: #008296;
  color: #000;
}

.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header .nav_area .nav_link:hover {
  color: #008296;
  text-decoration: none;
}

.g_header .header_sns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}

.g_header .header_sns .hover {
  display: inline-block;
  position: relative;
}

.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}

.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}

.g_header .header_sns .hover_holder {
  cursor: pointer;
}

.g_header .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}

.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.bttn {
  display: inline-block;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #005277;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #000;
}

.bttn .bttn_inner:hover {
  text-decoration: none;
}

.bttn .xl_size {
  font-size: 2em;
}

.bttn .lg_size {
  font-size: 1.5em;
}

.bttn .sm_size {
  font-size: 1em;
}

.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}

.bttn .main_b {
  background-color: #005277;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.bttn .main_b:hover {
  background-color: #DBF0F3;
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #005277;
}

.bttn .dark_b:hover {
  background-color: #160f02;
}

.bttn .sub_b {
  background-color: #fff;
  color: #005277;
}

.bttn .sub_b:hover {
  background-color: rgba(219, 240, 243, 0.1);
}

.g_kv {
  position: relative;
  overflow: hidden;
}

.g_kv .desktop {
  position: relative;
  height: 40vw;
  max-height: 720px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.g_kv .kv_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.g_kv .kv_area-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.g_kv .kv_area-logo {
  position: absolute;
  top: 60px;
  left: 5%;
  width: 6.25%;
}

.g_kv .kv_area-logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 57%;
  width: 62.5%;
  -webkit-transform: translate(0, -35%);
          transform: translate(0, -35%);
}

.g_kv .tit .t1 {
  position: relative;
  width: 100%;
}

.g_kv .tit .cta {
  position: relative;
  margin: 5% 0 0 1%;
  display: inline-block;
  border-radius: 15px;
  cursor: pointer;
}

.g_kv .tit .cta span {
  font-weight: bold;
}

.g_kv .tit .cta a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #ffeff1;
  background-color: #ee7336;
  border: 2px solid #ee7336;
  font-size: 26px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 35px;
  border-radius: 15px;
}

.g_kv .tit .cta:hover a {
  color: #ee7336;
  background-color: #ffeff1;
}

.g_kv .tit img {
  position: relative;
  height: auto;
  display: block;
  
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.sc_title .tit {
  color: #ee7336;
  font-weight: 700;
  line-height: 1;
}

.sc_intro {
  position: relative;
  background-color: #fff;
}

.sc_intro .container {
  max-width: 1000px;
}

.intro_cnt {
  position: relative;
}

.intro_cnt p {
  position: relative;
  color: #000;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
}

.intro_cnt p span {
  color: #DBF0F3;
}

.intro_cnt .formImg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
}

.cta_cnt {
  margin: 10px 0 10px 0;
  padding-bottom: 20px;
}

.cta_cnt .before_cta {
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}

.cta_cnt .bttns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta_cnt .bttn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  margin: 0 0.5em;
}

.cta_cnt .cta {
  margin-top: 1rem;
  font-size: 0;
  text-align: center;
}

.cta_cnt .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}

.cta_cnt .cta .bttn::before {
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: linear-gradient(94.17deg, #01FFFF 8.85%, #FEE92E 103.15%);
}

.cta_cnt .cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0.9375rem 4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #0F236C;
  text-shadow: 0 1px 5px rgba(0, 82, 119, 0.3);
  -webkit-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cta_cnt .cta .bttn:hover {
  text-decoration: none;
}

.cta_cnt .cta .bttn:hover::before {
  left: 100%;
}

.cta_cnt .cta .bttn:hover div {
  color: #005277;
  text-shadow: 0 1px 5px rgba(0, 82, 119, 0);
}

.sc_download {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-color: #5771b8;
}

.sc_download .sc_title .tit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_download .sc_title .tit img {
  position: relative;
  margin: 0 15px 0 0;
}

.sc_download .container {
  max-width: 1200px;
}

.sc_download .videos {
  position: relative;
  width: 100%;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_download .videos .video {
  position: relative;
  width: 33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_download .videos .video_box {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.sc_download .videos .video_box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url(img/ui/playBtn.svg) center/cover no-repeat;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 99%;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.sc_download .videos .video_box:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.sc_download .videos .video_box:hover::after {
  opacity: 1;
}

.sc_download .videos .video img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.sc_download .videos .video p {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 15px auto;
  font-size: 21px;
  color: #FFF;
  text-align: center;
}

.sc_download .videos .video .info {
  white-space: nowrap;
}

.sc_download .videos .video .dBtn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #005277;
  border: 1px solid #005277;
  border-radius: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc_download .videos .video .dBtn:hover {
  color: #005277;
  background-color: #fff;
}

.sc_download .videos .video .sptit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #005277;
  margin: 15px auto 0 auto;
}

.sc_gift {
  padding: 20px 0 150px 0;
  background-color: #fbe7ec;
}

.sc_gift .container {
  max-width: 1000px;
}

.sc_gift .gift {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a2191e;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 40px;
  margin: 0 auto;
}

.sc_gift .gift img {
  position: relative;
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sc_gift .gift .info {
  position: relative;
  margin: 0 0 0 30px;
}

.sc_gift .gift .info p {
  position: relative;
  font-size: 22px;
  color: #fff;
  margin: 5px 0;
}

.sc_gift .gift .info .HL {
  font-size: 28px;
  /* color: #FFFF00; */
}

.sc_gift .ps {
  position: relative;
  width: 100%;
  margin: 30px auto;
  font-size: 22px;
  color: #a2191e;
  text-align:center;
}
  .sc_gift .note{
  font-size: 12px;
}
#nameinput , #mailinput{
    max-width: 500px;
    margin: 0 auto;
	text-align: center;}

.footerLogos {
  position: relative;
  padding: 15px 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerLogos .logo {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
}

.footerLogos .logo p {
  position: relative;
  font-size: 1rem;
  color: #082047;
  padding: 0;
  margin: 0 15px;
}

.footerLogos .logo img {
  position: relative;
  display: block;
  width: auto;
  height: 50px;
}

.footerCopy {
  position: relative;
  padding: 15px 0;
  color: #fff;
  background: linear-gradient(85.87deg, #005095 4.14%, #00398E 25.4%, #00317A 43.81%, #001E54 65.46%, #000D35 97.4%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12.3px;
}

.sc_detail {
  background-color: #fff;
}

.sc_detail .list {
  padding-left: 1.5em;
}

.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

.sc_detail .ps {
  font-size: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

.modal-title {
  font-size: 28px;
  line-height: 1;
}

.modal-title span {
  font-size: 16px;
}

.modal-title .web {
  position: relative;
  display: inline-block;
  margin: 0 0 0 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.modal-title .web a {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #005277;
  border: 1px solid #005277;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-title .web a:hover {
  color: #005277;
  background-color: #fff;
}

.modal-body ul {
  padding: 0 20px;
}

#videoBox .modal-dialog {
  max-width: 1035px;
}

.videoPop {
  position: relative;
  width: 100%;
}

.videoPop .ps {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.videoPop iframe {
  position: relative;
  width: 1000px;
  height: calc(1000px / 1.777778);
}

@media (max-width: 768px) {
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item {
    background: linear-gradient(85.87deg, #005095 4.14%, #00398E 25.4%, #00317A 43.81%, #001E54 65.46%, #000D35 97.4%);
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv .desktop {
    height: 120vw;
  }
  .g_kv .kv_area-bg {
    -webkit-transform: translate(-40%, 0);
            transform: translate(-40%, 0);
  }
  
  .g_kv .kv_area-logo {
    position: absolute;
    top: 50px;
    left: 7%;
    width: 80px;
  }
  .g_kv .tit {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    -webkit-transform: translate(0, -35%);
            transform: translate(0, -35%);
  }
  .g_kv .tit .t1 {
    position: relative;
    width: 100%;
  }
  .g_kv .tit .cta {
    font-size: 18px;
  }
  .g_kv .tit img {
  width: 100%;
  }
  .main_sc {
    padding: 20px 0;
  }
  .sc_title {
    font-size: 28px;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro {
    padding: 30px 0;
  }
  .intro_cnt {
    font-size: 1rem;
  }
  .intro_cnt .highlight_tit {
    font-size: 1.375rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin: 5px auto 15px auto;
  }
  .intro_cnt .highlight_cnt {
    margin: 30px auto;
  }
  .intro_cnt p {
    font-size: 18px;
    text-align: justify;
    margin: 0;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .cta_cnt .cta .bttn div {
    font-size: 1.625rem;
  }
  .sc_download {
    padding: 30px 0;
  }
  .sc_download .sc_title .tit img {
    position: relative;
    margin: 0 15px 0 0;
  }
  .sc_download .sc_title .tit p {
    text-align: left;
  }
  .sc_download .videos {
    margin: 20px auto;
  }
  .sc_download .videos .video {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding: 0 30px;
    margin: 20px auto;
  }
  .sc_download .videos .video p {
    margin: 15px auto;
    font-size: 21px;
    text-align: center;
  }
  .sc_download .videos .video .info {
    white-space: normal;
  }
  .sc_gift .gift {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
  .sc_gift .gift .info {
    margin: 15px 0 0 0;
  }
  .sc_gift .gift .info p {
    font-size: 18px;
    text-align: center;
  }
  .sc_gift .gift .info .HL {
    font-size: 21px;
  }
  
  .sc_gift .ps {
  font-size: 16px;
}
  .sc_gift .note{
  font-size: 12px;
}
  
  .footerLogos {
    padding: 10px 15px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footerLogos .logo {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 15px 0;
  }
  .footerLogos .logo p {
    position: relative;
    font-size: 0.875rem;
    color: #082047;
    padding: 0;
    margin: 0;
  }
  .footerLogos .logo img {
    position: relative;
    display: block;
    width: auto;
    height: 30px;
  }
  #videoBox .modal-dialog {
    max-width: 90vw;
    margin: 0 auto;
  }
  .videoPop iframe {
    position: relative;
    width: 80vw;
    height: calc(80vw / 1.777778);
  }
}
/*# sourceMappingURL=style.css.map */