.hide {
  display: none !important;
}
body > section{
  overflow: hidden;
}
.btnStyle1, .btn, .btn2 {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-size: 24px;
  font-family: "ap_honda";
  width: 100%;
  min-width: 185px;
  max-width: 420px;
  height: 72px;
  line-height: 72px;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  overflow: hidden;
  font-weight: bold;
  font-style: italic;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.12);
  border: none;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}

@media (max-width: 428px) {
  .btnStyle1, .btn, .btn2 {
    font-size: 22px;
  }
}

.btnStyle1:hover, .btn:hover, .btn2:hover {
  background: linear-gradient(180deg, #ce1a7d 13.16%, #b81971 49.96%);
}

@media (max-width: 428px) {
  .btnStyle1, .btn, .btn2 {
    zoom: 0.8;
  }
}

.btn.outline {
  border: 1px solid #1258a7;
  background-color: transparent;
  color: #1258a7;
}

.btn.outline:hover {
  background-color: #950359;
  color: #ffffff;
}

.btn.facebook {
  background: linear-gradient(180deg, #72adfc 0%, #1376fb 100%);
}

.btn.facebook:hover {
  background: linear-gradient(180deg, #5f92d4 0%, #0f60ca 100%);
}

.btn.btnFb {
  min-width: inherit;
  width: 72px;
  background: linear-gradient(180deg, #0072ce 0%, #0067ba 100%);
}

.btn.btnFb:hover {
  background: linear-gradient(180deg, #0061b0 0%, #005398 100%);
}

.btn.btnLine {
  min-width: inherit;
  width: 72px;
  background: linear-gradient(180deg, #19d843 0%, #00b754 100%);
}

.btn.btnLine:hover {
  background: linear-gradient(180deg, #14b637 0%, #009144 100%);
}

.btn.google {
  background: linear-gradient(180deg, #ff9aa3 0%, #ff626f 75.69%);
}

.btn.google:hover {
  background: linear-gradient(180deg, #d17d84 0%, #d8515c 75.69%);
}

.btn.blue {
  background: linear-gradient(180deg, #1258a7 0%, #21409a 100%);
}

.btn.blue:hover {
  background: linear-gradient(180deg, #0e4481 0%, #182f72 100%);
}

.btn2 {
  border: 6px solid #ffffff;
  background: linear-gradient(180deg, #1258a7 0%, #21409a 100%);
  color: #ffffff;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
  min-width: 274px;
}

.btn2:hover {
  background: linear-gradient(180deg, #0f4a8d 0%, #1c3580 100%);
  color: #ffffff;
}

.btn2.pink {
  background: linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
}

.btn2.pink:hover {
  background: linear-gradient(180deg, #ce1a7d 13.16%, #b81971 49.96%);
}

.btn2.outline {
  max-width: 274px;
  background: #ffffff;
  border: 4px solid #1258a7;
  color: #1258a7;
  text-shadow: none;
}

.btn2.outline:hover {
  background: #1258a7;
  color: #ffffff;
  border-color: #ffffff;
}

.btn2.trophy:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico-tropy.svg) center center no-repeat;
  background-size: auto 100%;
  margin-right: 8px;
}

.btnTop {
  color: #272525;
  display: flex;
  align-items: center;
}

.btnTop:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/ico-top.svg) center center no-repeat;
  background-size: 100% auto;
  margin-right: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.btnTop:hover {
  color: #1258a7;
}

.btnTop:hover:before {
  background-image: url(../img/ico-top-red.svg);
}

.btnBack {
  font-size: 24px;
  color: #DF1D87;
  display: flex;
  align-items: center;
  margin-right: 12px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .btnBack {
    font-size: 22px;
  }
}

.btnBack:before {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/ico-arrow-back.svg) center center no-repeat;
  background-size: 100% auto;
  margin-right: 18px;
  left: 12px;
}

.btnBack:hover {
  color: #DF1D87;
}

.btnBack:hover:before {
  left: 0px;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}

@media (max-width: 428px) {
  .row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
  }
}

.inputStyle, input[list],
input[type="text"],
input[type="number"],
input[type="password"],
input[type="textarea"],
textarea,
input[type="date"],
input[type="email"], .select > select {
  appearance: none;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: none;
  background-color: transparent;
  outline: none;
  font-family: "ap_honda";
  font-size: 18px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;
  width: 100%;
  outline: 0;
  border: 0;
  box-shadow: none !important;
  background-color: #ffffff;
  border: none;
  color: #000000;
  height: 52px;
  line-height: 52px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #c4c4c4;
}

@media (max-width: 428px) {
  .inputStyle, input[list],
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="textarea"],
  textarea,
  input[type="date"],
  input[type="email"], .select > select {
    font-size: 16px;
  }
}

@media (max-width: 428px) {
  .inputStyle, input[list],
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="textarea"],
  textarea,
  input[type="date"],
  input[type="email"], .select > select {
    height: 45px;
    line-height: 45px;
  }
}

.inputStyle::placeholder, input[list]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="textarea"]::placeholder,
textarea::placeholder,
input[type="date"]::placeholder,
input[type="email"]::placeholder, .select > select::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #808285;
  opacity: 1;
  /* Firefox */
}

.inputStyle:-ms-input-placeholder, input:-ms-input-placeholder[list],
input:-ms-input-placeholder[type="text"],
input:-ms-input-placeholder[type="number"],
input:-ms-input-placeholder[type="password"],
input:-ms-input-placeholder[type="textarea"],
textarea:-ms-input-placeholder,
input:-ms-input-placeholder[type="date"],
input:-ms-input-placeholder[type="email"], .select > select:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

.inputStyle::-ms-input-placeholder, input[list]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="textarea"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder, .select > select::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8c8c8c;
}

input[list],
input[type="text"],
input[type="number"],
input[type="password"],
input[type="textarea"],
textarea,
input[type="date"],
input[type="email"] {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  resize: none;
}

select.readonly,
input[list]:read-only,
input[type="text"]:read-only,
input[type="number"]:read-only,
input[type="password"]:read-only,
input[type="textarea"]:read-only,
textarea:read-only,
input[type="date"]:read-only,
input[type="email"]:read-only,
input[list]:disabled,
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="textarea"]:disabled,
textarea:disabled,
input[type="date"]:disabled,
input[type="email"]:disabled {
  color: #828282;
  background: #f3f3f3;
  border: 1px solid #c4c4c4;
}

input[list]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="textarea"]:focus,
textarea:focus,
input[type="date"]:focus,
input[type="email"]:focus {
  border: 5px solid rgba(0, 114, 206, 0.12);
}

input[type="date"] {
  width: 100%;
  min-width: calc(100% - 18px);
  text-align: left;
}

.control {
  display: block;
  position: relative;
  padding: 0 14px;
  cursor: pointer;
  padding-left: 30px;
  line-height: 48px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 70%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media (max-width: 428px) {
  .control input {
    top: 50%;
  }
}

.control--checkbox .control__indicator {
  height: 20px;
  width: 20px;
  background: url(../img/ico-check.svg) center center no-repeat no-repeat;
  background-size: 100% 100%;
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  top: 14px;
}

.control--checkbox input:checked ~ .control__indicator {
  background-image: url(../img/ico-checked.svg);
}

.control--checkbox input:disabled ~ .control__indicator {
  background-image: url(../img/ico-checked-disabled.svg);
}

.control--radio {
  padding: 0;
  padding-left: 30px;
  color: #000000;
}

.control--radio .control__indicator {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  height: 20px;
  width: 20px;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  position: absolute;
  top: 4px;
  left: 0;
}

.control--radio input:checked ~ .control__indicator {
  background-color: #ffffff;
  border: 2px solid #0072ce;
}

.control--radio input:disabled ~ .control__indicator {
  background-color: #d2d2d2;
  opacity: 0.6;
  pointer-events: none;
  border-color: #c5c5c5;
}

.control--radio .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.control--radio input:checked ~ .control__indicator:after {
  display: block;
}

.control--radio .control__indicator:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #0072ce;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.select {
  width: 100%;
}

.select > select {
  appearance: none;
  box-shadow: none;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.select > select::-ms-expand {
  display: none;
}

.select > select:disabled {
  opacity: 1;
  pointer-events: none;
  color: #828282;
  background: #f3f3f3;
  border: 1px solid #c4c4c4;
}

.select:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  content: "";
  right: 16px;
  width: 20px;
  height: 20px;
  background: url(../img/ico-arrow-select.svg) center center no-repeat;
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #ffffff;
}

.select select:disabled ~ .select__arrow {
  opacity: 0.2;
}

.datalist {
  line-height: 33px;
}

datalist {
  display: none;
}

/* specifically hide the arrow on focus */
input::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

textarea {
  height: 110px;
  padding: 8px;
  border: 1px solid #d7d7d7;
  margin-top: 24px;
  line-height: normal;
  overflow: scroll;
}

input[type="date"] {
  padding: 15px 20px;
}

input[type="date"]:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  background: url(../img/ico-cal.svg) center center no-repeat;
  background-size: auto 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

input[type="password"] {
  padding-right: 36px;
}

.control-group {
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}

@media (max-width: 428px) {
  .control-group {
    margin-bottom: 16px;
  }
}

.control-group * {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.control-group .tTitle {
  font-size: 16px;
  color: #0072ce;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (max-width: 428px) {
  .control-group .tTitle {
    font-size: 14px;
  }
}

@media (max-width: 428px) {
  .control-group .tTitle {
    margin-bottom: 5px;
  }
}

.control-group .tTitle span {
  display: inline;
}

.control-group .text {
  line-height: normal;
}
.control-group span.is-invalid,
.control-group label.error {
  font-size: 16px;
  color: #ff0000;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-weight: 400;
}
select.is-valid{
  border-color : #ff0000;
}
@media (max-width: 428px) {
  .control-group label.error {
    font-size: 14px;
  }
}

.control-group .floatText {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(30%);
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
}

.control-group.displayFloat {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.control-group.displayFloat .control--checkbox {
  display: table;
  float: left;
  margin-right: 36px;
}

.control-group.size-s {
  width: 30%;
}

.control-group.inline > div {
  display: flex;
  align-items: flex-start;
  column-gap: 24px;
}

.control-group .bGroupDate {
  display: flex;
  column-gap: 20px;
}

@media (max-width: 428px) {
  .control-group .bGroupDate {
    column-gap: 12px;
  }
}

.checkboxPDPA {
  display: flex;
  align-items: flex-start;
}

.checkboxPDPA .control input {
  top: 50%;
}

.checkboxPDPA .text {
  line-height: normal;
}

.checkboxPDPA .text a:hover {
  color: #023e97;
}

.bCaptcha {
  margin-bottom: 25px;
}

.bCaptcha > div {
  zoom: 1.2;
}

@media (max-width: 428px) {
  .bCaptcha > div {
    zoom: inherit;
  }
}

@media (min-width: 1441px) {
  .bCaptcha > div {
    zoom: 1.04;
  }
}

.bCaptcha > img {
  width: 360px;
  height: auto;
}

@media (max-width: 428px) {
  .bCaptcha > img {
    width: 100%;
    max-width: 300px;
  }
}

.controlPass .btnshowPass {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 16px;
  color: #767676;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/invisible.svg) center center no-repeat;
  background-size: 100% auto;
}

.controlPass .btnshowPass:hover {
  color: #1258a7;
}

.controlPass .btnshowPass.show {
  background-image: url(../img/visibility.svg);
}

.floating-label {
  display: block;
  position: absolute;
  opacity: 0;
  top: 6px;
  left: 0px;
  transition: 0.2s ease-in-out transform;
  -webkit-transition: 0.2s ease-in-out transform;
  -moz-transition: 0.2s ease-in-out transform;
  -ms-transition: 0.2s ease-in-out transform;
  -o-transition: 0.2s ease-in-out transform;
  font-size: 16px;
  font-weight: 400;
  color: #272525;
  font-weight: 500;
  white-space: nowrap;
}

.form-control:placeholder-shown + .floating-label {
  visibility: hidden;
  z-index: -1;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}

.form-control:not(:placeholder-shown) + .floating-label,
.form-control:focus:not(:placeholder-shown) + .floating-label {
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transition: 0.2s ease-in-out transform;
  -webkit-transition: 0.2s ease-in-out transform;
  -moz-transition: 0.2s ease-in-out transform;
  -ms-transition: 0.2s ease-in-out transform;
  -o-transition: 0.2s ease-in-out transform;
}

.splide__pagination {
  bottom: 30px;
}

@media (max-width: 1024px)  {
  .splide__pagination {
    bottom: 15px;
  }
}

.splide__pagination li {
  margin: 0 5px;
}

.splide__pagination .splide__pagination__page {
  width: 16px;
  height: 16px;
  background: #d7d7d7;
  border: none;
  opacity: 1;
  box-sizing: border-box;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

@media (max-width: 1024px)  {
  .splide__pagination .splide__pagination__page {
    width: 12px;
    height: 12px;
  }
}

.splide__pagination .splide__pagination__page.is-active {
  background: #1258a7 !important;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.splide__pagination .splide__pagination__page:hover {
  background: #1258a7;
}

.splide__progress {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.splide__progress__bar {
  height: 5px;
  background-color: #a9176d;
}

.splide__arrows {
  position: absolute;
  bottom: inherit;
  top: 44%;
  left: 0;
  width: 100%;
}

.splide__arrows .splide__arrow {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
  width: 72px;
  height: 72px;
  border: 6px solid #ffffff;
  color: #ffffff;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media (min-width: 768px) and (max-width: 1194px) {
  .splide__arrows .splide__arrow {
    zoom: 0.7;
  }
}

@media (max-width: 428px) {
  .splide__arrows .splide__arrow {
    zoom: 0.4;
  }
}

.splide__arrows .splide__arrow svg {
  display: none;
}

.splide__arrows .splide__arrow:hover {
  text-shadow: none;
}

.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 42px;
  background: url(../img/ico-arrow-slide-l.svg) center center no-repeat, linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
}

@media (max-width: 428px) {
  .splide__arrows .splide__arrow.splide__arrow--prev {
    left: 20px;
  }
}

.splide__arrows .splide__arrow.splide__arrow--prev:hover {
  opacity: 0.8;
}

.splide__arrows .splide__arrow.splide__arrow--next {
  right: 42px;
  background: url(../img/ico-arrow-slide-r.svg) center center no-repeat, linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
}

@media (max-width: 428px) {
  .splide__arrows .splide__arrow.splide__arrow--next {
    right: 20px;
  }
}

.splide__arrows .splide__arrow.splide__arrow--next:hover {
  opacity: 0.8;
}

.splide .bNumber {
  display: table;
  margin: 12px auto 0;
  font-weight: bold;
  background-color: #1258a7;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 0 12px;
  line-height: 30px;
  color: #ffffff;
  width: fit-content;
}

.splide .bNumber span {
  display: inline;
}

#slideIcon {
  width: 100%;
}

#slideIcon .splide__pagination {
  position: relative;
  bottom: 0;
  margin-top: 15px;
}

#slideGallery .splide__pagination {
  position: relative;
  bottom: 0;
  margin-top: 15px;
}

#slideGallery .splide__pagination .splide__pagination__page {
  border: 1px solid #1258a7;
}

#slideGallery .splide__pagination .splide__pagination__page.is-active {
  background: #1258a7;
}

#accord {
  margin-bottom: 30px;
}

@media (max-width: 428px) {
  #accord {
    margin-bottom: 20px;
  }
}

.btnAccord {
  color: #1258a7;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.btnAccord:hover {
  color: #023e97;
}

.btnAccord:after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background: url(../img/ico-arrowBlue.svg) center center no-repeat;
  background-size: 100% auto;
  margin-left: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.btnAccord i.ico {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: -35px;
  top: 6px;
  display: block;
  background-color: #1258a7;
  width: 20px;
  height: 20px;
}

@media (max-width: 428px) {
  .btnAccord i.ico {
    width: 15px;
    height: 15px;
    left: -25px;
    top: 5px;
  }
}

.btnAccord i.ico:after, .btnAccord i.ico:before {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.btnAccord i.ico:before {
  width: 2px;
  height: 60%;
}

.btnAccord i.ico:after {
  width: 60%;
  height: 2px;
}

.btnAccord.opened:after {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.btnAccord.opened i.ico:before {
  height: 0;
}

.contentAccord {
  display: none;
}

.jBox-wrapper {
  z-index: 99999 !important;
}

.jBox-overlay {
  z-index: 99998 !important;
  background-color: rgba(0, 0, 0, 0.5);
}

.jBox-Modal .jBox-container {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: transparent;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  box-shadow: none;
}

.jBox-Modal .jBox-content {
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 428px) {
  .jBox-Modal .jBox-content {
    padding: 0;
    margin: 0 auto;
  }
}

.jBox-closeButton-box .jBox-closeButton {
  width: 30px;
  height: 30px;
  background: url(../img/ico-close.svg) center center no-repeat;
  background-size: 70% auto;
  background-color: #000000;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  overflow: hidden;
}

.jBox-closeButton-box .jBox-closeButton svg {
  display: none;
}

.bModal {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 12px 4px rgba(57, 109, 178, 0.24);
  padding: 0px;
  background-color: #f5f5f5;
  margin: 0px;
}

@media (max-width: 428px) {
  .bModal {
    margin: 17px;
  }
}

.bModal.rainbow {
  background: url(../img/pic-bg-rainbow-popup.svg) left top no-repeat #f5f5f5;
  background-size: 100%;
  padding: 60px;
}

@media (max-width: 428px) {
  .bModal.rainbow {
    padding: 20px;
  }
}

.bCard {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.bCard .bIcon {
  margin-bottom: 20px;
}

.bCard .bText {
  text-align: center;
}

.bCard .bText h2 {
  font-size: 36px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bCard .bText h2 {
    font-size: 28px;
  }
}

.bCard .bText h3 {
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bCard .bText h3 {
    font-size: 24px;
  }
}

.bCard .bText h3 span {
  font-weight: normal;
}

.bCard .bText h4 {
  color: #272525;
}

.bCard .bText h5 {
  font-weight: bold;
}

.bCard .bText p span {
  color: #272525;
}

.bCard .bText.hilight {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  background: #e2f4fd;
  border: 2px solid #ffffff;
  padding: 24px;
  margin-bottom: 24px;
}

.bCard .bText.hilight span {
  color: #0072ce;
}

.bCard .bText.hilight b {
  font-weight: bold;
}

.bCard .bBtn {
  margin-top: 36px;
}

.bPictext {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

@media (max-width: 428px) {
  .bPictext {
    margin-bottom: 20px;
  }
}

.bPictext img {
  display: block;
  width: auto;
  max-width: 100%;
}

@media (max-width: 428px) {
  .bPictext img {
    zoom: 0.8;
  }
}

.bListUser {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  margin-top: 36px;
}

.bListUser .bList {
  padding-top: 12px;
}

.bListUser .bList .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bListUser .bList .list .user {
  display: flex;
  align-items: center;
}

.bListUser .bList .list .user .display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background: url(../img/ico-user.svg) #0060ae center center no-repeat;
  background-size: 60%;
  margin-right: 16px;
}

.bListUser .bList .list .user .display img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bListUser .bList .list .host {
  color: #024DBC;
}

.btnCloseModal {
  width: 40px;
  height: 40px;
  background: url(../img/ico-close.svg) center center no-repeat;
  background-size: 70% auto;
  position: absolute;
  right: 10px;
  top: 10px;
}

#btnCopy {
  display: flex;
  align-items: center;
  max-width: 274px;
}

#btnCopy:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico-link.svg) center center no-repeat;
  background-size: auto 100%;
  margin-right: 8px;
}

#ModalRegister .bCard {
  padding: 40px;
}

#ModalRegister .bBtnMain {
  margin-top: 24px;
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  padding: 0 20px;
}

@media (max-width: 428px) {
  #ModalRegister .bBtnMain {
    flex-direction: column;
  }
}

#ModalWelcome .bPictext {
  margin-bottom: 12px;
}

#ModalWelcome .bDisplay {
  margin-bottom: 24px;
}

#ModalWelcome .bDisplay .bPic {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  width: calc(200px + 8px);
  height: calc(200px + 8px);
  border: 8px solid #f5f5f5;
  background: url(../img/ico-user.svg) #0060ae center center no-repeat;
  background-size: 60%;
}

#ModalWelcome .bDisplay .bPic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ModalWelcome .bText {
  margin-bottom: 24px;
}

#ModalWelcome .bText > *:first-child {
  margin-bottom: 8px;
}

#ModalInvite {
  padding: 36px 24px;
}

#ModalInvite .bText {
  width: 100%;
  padding: 36px;
  margin-bottom: 24px;
}

#ModalInvite .bText > *:first-child {
  margin-bottom: 8px;
}

#ModalInvite .bBtnMain {
  display: flex;
  justify-content: center;
}

#ModalCreateLeague .bBtnMain {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

#ModalMember {
  padding: 0;
}

#ModalMember .bTop, #ModalMember .bBottom {
  padding: 24px;
  width: 100%;
}

#ModalMember .bTop {
  display: flex;
  align-items: center;
  justify-content: center;
}

#ModalMember .bTop .bPictext {
  margin: 24px 0;
}

#ModalMember .bBottom {
  background-color: #F5F5F5;
}

#ModalMember .bBottom .bListUser {
  margin: 0;
}

#ModalMember .bBottom .bBtnMain {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
  flex-direction: column;
  margin-top: 24px;
}

#ModalMember .bBottom .bBtnMain a {
  width: 274px;
  min-width: inherit;
}

#ModalMemberHistory {
  padding: 0;
}

#ModalMemberHistory .bTop, #ModalMemberHistory .bBottom {
  padding: 24px;
  width: 100%;
}

#ModalMemberHistory .bTop {
  display: flex;
  align-items: center;
  justify-content: center;
}

#ModalMemberHistory .bTop .bPictext {
  margin: 24px 0;
}

#ModalMemberHistory .bBottom {
  background-color: #F5F5F5;
}

#ModalMemberHistory .bBottom .bListUser {
  margin: 0;
}

#ModalMemberHistory .bBottom .bBtnMain {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
  flex-direction: column;
  margin-top: 24px;
}

#ModalMemberHistory .bBottom .bBtnMain a {
  width: 274px;
  min-width: inherit;
}

.pPagination .bPagination {
  border-top: 2px solid #eaeaea;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 36px;
}

@media (max-width: 428px) {
  .pPagination .bPagination {
    column-gap: 10px;
  }
}

@media (max-width: 320px) {
  .pPagination .bPagination {
    zoom: 0.7;
  }
}

.pPagination .bPagination .btnPagination, .pPagination .bPagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: center center no-repeat;
  background-size: 40% auto;
  background-color: transparent;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  text-align: center;
  cursor: pointer;
  color: #222222;
  white-space: nowrap;
}

.pPagination .bPagination .btnPagination.active, .pPagination .bPagination a.active {
  background-color: #1258a7;
  color: #ffffff;
}

.pPagination .bPagination .btnPagination:hover, .pPagination .bPagination a:hover {
  background-color: #eaeaea;
}

.pPagination .bPagination .btnPagination.disable, .pPagination .bPagination a.disable {
  background-color: #ebebeb;
  color: #767676;
  border: none;
  cursor: default;
}

.pPagination .bPagination .btnPagination.disable:hover, .pPagination .bPagination a.disable:hover {
  background-color: #ebebeb;
  color: #767676;
}

@media (max-width: 428px) {
  .pPagination .bPagination .btnPagination, .pPagination .bPagination a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.pPagination .bPagination .bCenter {
  display: flex;
  column-gap: 16px;
  justify-content: center;
}

@media (max-width: 428px) {
  .pPagination .bPagination .bCenter {
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
  }
}

.pPagination .bPagination .bLeft a,
.pPagination .bPagination .bRight a {
  width: auto;
  padding: 0 20px;
}

.pPagination .bPagination .bLeft a:hover,
.pPagination .bPagination .bRight a:hover {
  color: #1258a7;
}

.pPagination .bPagination .bLeft a:before {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  background-image: url(../img/ico-arrowL.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-right: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.pPagination .bPagination .bLeft a:hover {
  color: #1258a7;
}

.pPagination .bPagination .bLeft a:hover:before {
  background-image: url(../img/ico-arrowL-hover.svg);
}

.pPagination .bPagination .bRight a:after {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  background-image: url(../img/ico-arrowR.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-left: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.pPagination .bPagination .bRight a:hover {
  color: #1258a7;
}

.pPagination .bPagination .bRight a:hover:after {
  background-image: url(../img/ico-arrowR-hover.svg);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
  background-color: #1258a7;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px){
  header {
    zoom: 0.85;
  }
}

@media (max-width: 767px) {
  header {
    zoom: 0.75;
  }
}
@media (max-width: 600px) {
    header {
      zoom: 0.9;
    }
  .bMenuPC{
    display: none;
  }
  header .pHeaderR .bMenuMemberMain ul a.btnTour img{
    margin-right: 0!important;
  }
  header .pHeaderR .bMenuMemberMain ul a.btnTour span{
    display: none;
  }
  .boxMain.small{
    padding: 40px!important;
  }
}

header .pHeaderL {
  display: flex;
  align-items: center;
}

header .pHeaderL img {
  display: block;
}

header .pHeaderL .bLogoMain {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

@media (max-width: 428px) {
  header .pHeaderL .bLogoMain {
    zoom: 0.7;
  }
}

header .pHeaderL .bLogoMain .group {
  display: flex;
  align-items: center;
}

header .pHeaderL .bLogoMain .group:before {
  content: "";
  display: block;
  width: 24px;
  height: 72px;
  background: url(../img/logo/line.svg) center center no-repeat;
  background-size: auto 80%;
}

header .pHeaderL .bLogoMain .group a {
  margin-right: 12px;
}

@media (max-width: 428px) {
  header .pHeaderL .bMenuPC {
    display: none;
  }
}

header .pHeaderL .bMenuPC nav {
  display: flex;
  column-gap: 24px;
}

header .pHeaderL .bMenuPC nav a {
  color: #ffffff;
  font-weight: bold;
}

header .pHeaderL .bMenuPC nav a:hover {
  color: #F2A900;
}

header .pHeaderR .bMenuMemberMain ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .pHeaderR .bMenuMemberMain ul a.btnSingle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 18px;
  background: linear-gradient(180deg, #fff 13.16%, #eee 49.96%);
  color: #000;
  font-weight: bold;
  opacity: 1;
}

header .pHeaderR .bMenuMemberMain ul a.btnTour {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 18px;
  background: linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
  color: #ffffff;
  font-weight: bold;
  opacity: 1;
}

@media (max-width: 428px) {
  header .pHeaderR .bMenuMemberMain ul a.btnSingle,
  header .pHeaderR .bMenuMemberMain ul a.btnTour {
    width: 50px;
    height: 50px;
    padding: 0;
  }
  header .pHeaderR .bMenuMemberMain ul a.btnTour span {
    display: none;
  }
}

header .pHeaderR .bMenuMemberMain ul a.btnSingle img ,
header .pHeaderR .bMenuMemberMain ul a.btnTour img {
  display: block;
  margin-right: 12px;
}

@media (max-width: 428px) {
  header .pHeaderR .bMenuMemberMain ul a.btnTour img {
    margin-right: 0;
  }
}

header .pHeaderR .bMenuMemberMain ul a.btnTour:before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #1258a7 0%, #21409a 100%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

header .pHeaderR .bMenuMemberMain ul a.btnTour:hover:before {
  height: 100%;
}

header .pHeaderR .bMenuMemberMain ul a.btnLogin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 72px;
  height: 72px;
  font-size: 14px;
  background: linear-gradient(180deg, #1258a7 0%, #21409a 100%);
  color: #ffffff;
  font-weight: bold;
  opacity: 1;
}

@media (max-width: 428px) {
  header .pHeaderR .bMenuMemberMain ul a.btnLogin {
    width: 50px;
    height: 50px;
  }
  header .pHeaderR .bMenuMemberMain ul a.btnLogin span {
    display: none;
  }
}

header .pHeaderR .bMenuMemberMain ul a.btnLogin img {
  display: block;
}

header .pHeaderR .bMenuMemberMain ul a.btnLogin:before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

header .pHeaderR .bMenuMemberMain ul a.btnLogin:hover:before {
  height: 100%;
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 72px;
  height: 72px;
  font-size: 14px;
  background: linear-gradient(180deg, #1258a7 0%, #21409a 100%);
  color: #ffffff;
  font-weight: bold;
  opacity: 1;
}

@media (max-width: 428px) {
  header .pHeaderR .bMenuMemberMain ul a.btnProfile {
    width: 50px;
    height: 50px;
  }
  header .pHeaderR .bMenuMemberMain ul a.btnProfile span {
    display: none;
  }
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile .display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background: url(../img/ico-user.svg) center center no-repeat;
  background-size: 100%;
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile .display span {
  width: 100%;
  height: 100%;
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile .display img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile:before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

header .pHeaderR .bMenuMemberMain ul a.btnProfile.active:before {
  height: 100%;
}

header .pHeaderR .bMenuMemberMain ul .bSubInner {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 270px;
  padding-top: 12px;
}

header .pHeaderR .bMenuMemberMain ul .bSubInner div {
  background: #ffffff;
  box-shadow: 0px 0px 12px 4px rgba(57, 109, 178, 0.24);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

header .pHeaderR .bMenuMemberMain ul .bSubInner div a {
  padding: 12px 16px;
  font-weight: bold;
}

header .pHeaderR .bMenuMemberMain ul .bSubInner div a:last-child {
  margin-top: 18px;
  text-align: center;
  color: #828282;
  border-top: 1px solid #e0e0e0;
}

header .pHeaderR .bMenuMemberMain ul .bSubInner div a:last-child:hover {
  color: #AA0061;
}

@media (min-width: 768px) and (max-width: 1194px) {
  footer {
    zoom: 0.8;
  }
}

footer .bTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
}

@media (max-width: 428px) {
  footer .bTop {
    align-items: flex-start;
    padding: 24px 0;
  }
}

footer .bTop .bNav {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  column-gap: 20px;
}

@media (max-width: 428px) {
  footer .bTop .bNav {
    font-size: 14px;
  }
}

@media (max-width: 428px) {
  footer .bTop .bNav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 12px;
  }
}

footer .bTop .bSocial {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
footer .bTop .bSocial > span{
  color: #1258a7;
  font-size: 16px;
  font-weight: bold;
}

footer .bTop .bSocial a img {
  display: block;
}

footer .bTop .bSocial a:hover {
  opacity: 0.8;
}

footer .bBottom {
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 36px;
}

@media (max-width: 428px) {
  footer .bBottom {
    flex-direction: column;
    row-gap: 20px;
    padding: 10px 0;
  }
}

footer .bBottom .bCopy {
  font-size: 12px;
  color: #515253;
}

@media (max-width: 428px) {
  footer .bBottom .bCopy {
    order: 2;
    text-align: center;
  }
}

footer .bBottom .bNav {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

@media (max-width: 428px) {
  footer .bBottom .bNav {
    font-size: 12px;
  }
}

@media (max-width: 428px) {
  footer .bBottom .bNav {
    order: 1;
    text-align: center;
  }
}

footer .bBottom .bNav a {
  padding: 0 8px;
  border-right: 1px solid #e0e0e0;
}

footer .bBottom .bNav a:last-child {
  padding-right: 0;
  border: none;
}

html {
  font-size: 20px;
}

body {
  font-family: "ap_honda";
  font-size: 20px;
  line-height: normal;
  color: #000000;
  background-color: #ffffff;
  min-height: -webkit-fill-available;
  padding-top: 72px;
}
body.cke_editable{
  padding-top: 0;
}
@media (max-width: 428px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1194px)  {
  body {
    padding-top: 50px;
  }
}

@media (max-width: 428px) {
  body {
    padding-top: 45px;
  }
}

@media (max-width: 375px) {
  body {
    padding-top: 45px;
  }
}

@media (max-width: 320px) {
  body {
    padding-top: 38px;
  }
}

body.openedMenu {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1194px) {
  .container {
    padding: 0 5%;
  }
}

@media (max-width: 1194px) {
  .container {
    padding: 0 20px;
  }
}

.SEOTitle {
  display: none;
}

#pin {
  position: absolute;
  top: 30vh;
  left: 0;
  display: block;
}

a {
  color: #1258a7;
}

a:hover {
  color: #023e97;
}

.bPreload {
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/loading.svg) center center no-repeat;
  background-color: rgba(0, 0, 0, 0.75);
  background-size: 100px auto;
  z-index: 94036;
}

hr.line {
  display: block;
  width: 36px;
  height: 6px;
  margin: 0;
  margin-bottom: 36px;
  background-color: #a9176d;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 428px) {
  hr.line {
    width: 23px;
    height: 4px;
    margin-bottom: 18px;
  }
}

.linePart {
  width: 100%;
  height: 12px;
  background-color: #eeeeee;
}

@media (max-width: 428px) {
  .linePart {
    height: 8px;
  }
}

.linePartLight {
  width: 100%;
  height: 2px;
  background-color: #eeeeee;
}

.lineDash {
  width: 100%;
  height: 1px;
  background: url(../img/pic-line.svg) center center no-repeat;
  background-size: auto 1px;
}

.lineDash.margin {
  margin-bottom: 24px;
}

.bFloatShare {
  position: fixed;
  left: 10%;
  top: 40vh;
  width: 48px;
  background-color: #ffffff;
  box-shadow: 0px 2px 12px 2px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  overflow: hidden;
  overflow: visible;
  z-index: 9999;
  padding: 4px;
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .bFloatShare {
    left: 5%;
  }
}

@media (min-width: 768px) and (max-width: 1194px) {
  .bFloatShare {
    left: 20px;
  }
}

@media (max-width: 428px) {
  .bFloatShare {
    display: flex;
    flex-direction: row;
    width: auto;
    top: inherit;
    left: inherit;
    bottom: 20px;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    position: fixed;
  }
}

.bFloatShare > * {
  display: block;
  width: 40px;
}

.bFloatShare i.share {
  height: 40px;
  background: url(../img/ico-share.svg) center center no-repeat;
}

.bFloatShare > a {
  background: center center no-repeat #ffffff;
  height: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.bFloatShare > a:hover {
  background-color: #0072ce;
}

.bFloatShare a.ico-fb {
  background-image: url(../img/ico-fb-red2.svg);
}

.bFloatShare a.ico-twitter {
  background-image: url(../img/ico-twitter.svg);
}

.bFloatShare a.ico-line {
  background-image: url(../img/ico-line-red2.svg);
}

.bFloatShare a.ico-copy {
  background-image: url(../img/ico-copy.svg);
  overflow: hidden;
}

.bFloatShare a.ico-copy .tagCopy {
  position: absolute;
  right: -370%;
  top: 11px;
  padding: 5px 12px;
  width: 140px;
  text-align: center;
  color: #272525;
  background-color: #f5f5f5;
}

@media (max-width: 428px) {
  .bFloatShare a.ico-copy .tagCopy {
    right: -34px;
    top: -37px;
    width: 130px;
  }
}

.bFloatShare a.ico-copy.show {
  overflow: inherit;
}

.bPdpa {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 94036;
}

@media (max-width: 428px) {
  .bPdpa {
    padding: 20px 0;
  }
}

.bPdpa .bWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: inherit;
  height: 90px;
  padding: 0;
}

@media (max-width: 428px) {
  .bPdpa .bWrap {
    flex-direction: column;
    height: auto;
  }
}

.bPdpa .bDetails {
  margin-right: 30px;
  line-height: normal;
}

@media (max-width: 428px) {
  .bPdpa .bDetails {
    margin: 0 0 12px;
  }
}

.bPdpa .bDetails a {
  display: inline;
  color: #1258a7;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.bPdpa .bDetails a:hover {
  color: #a9176d;
}

.bPdpa .bBtn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}

.bDetailsCMS h1 {
  margin-bottom: 0;
  font-size: 44px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h1 {
    font-size: 30px;
  }
}

.bDetailsCMS h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h2 {
    font-size: 28px;
  }
}

.bDetailsCMS h3 {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h3 {
    font-size: 26px;
  }
}

.bDetailsCMS h4 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h4 {
    font-size: 24px;
  }
}

.bDetailsCMS h5 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h5 {
    font-size: 22px;
  }
}

.bDetailsCMS h6 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 428px) {
  .bDetailsCMS h6 {
    font-size: 20px;
  }
}

.bDetailsCMS p {
  font-size: 24px;
}

@media (max-width: 428px) {
  .bDetailsCMS p {
    font-size: 20px;
  }
}

.bDetailsCMS b {
  font-weight: bold;
}

.bDetailsCMS i {
  font-style: italic;
}

.bDetailsCMS u {
  text-decoration: underline;
}

.bDetailsCMS strong {
  font-weight: 500;
}

.bDetailsCMS sup {
  vertical-align: super;
  font-size: smaller;
}

.bDetailsCMS sub {
  vertical-align: sub;
  font-size: smaller;
}

.bDetailsCMS a {
  color: #1258a7;
  text-decoration: underline;
}

.bDetailsCMS a:hover {
  color: #023e97;
}

.bDetailsCMS ul {
  display: block;
  list-style-type: disc;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.bDetailsCMS ol {
  display: block;
  list-style-type: decimal;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.bDetailsCMS img {
  border: 1px solid #f5f5f5;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.bgTown {
  min-height: 80vh;
  margin: 0 auto;
  background: url(../img/pic-mrhonda.png), url(../img/pic-bg-town-bottomR.png), url(../img/pic-bg-rainbow.svg), url(../img/pic-bg-town-topL.png);
  background-repeat: no-repeat;
  background-position: 12% 55%, right bottom, left bottom, left top;
  background-size: 20% auto, 65% auto, 100% auto, 60% auto;
}

@media (min-width: 768px) and (max-width: 1194px) and (orientation: landscape) {
  .bgTown {
    background-position: 0% 30%, right bottom, left bottom, left top;
  }
}

@media (max-width: 428px) {
  .bgTown {
    background: url(../img/pic-bg-town-bottomR.png) right bottom no-repeat, url(../img/pic-bg-rainbow.svg) left bottom no-repeat, url(../img/pic-bg-town-topL.png) left top no-repeat;
    background-size: 65% auto, 100% auto, 60% auto;
  }
}

.bgTownFull {
  background: url(../img/pic-mrhonda.png) left 25% no-repeat, url(../img/pic-bg-town-bottomR.png) right bottom no-repeat, url(../img/pic-bg-rainbow.svg) left bottom no-repeat, url(../img/pic-bg-town-topL.png) left top no-repeat, url(../img/pic-bg-town-topR.png) right top no-repeat;
  background-size: 20% auto, 65% auto, 100% auto, 54% auto, 43% auto;
}

.boxMain {
  box-shadow: 0px 0px 12px 4px rgba(57, 109, 178, 0.24);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 64px 100px;
  margin: 128px 0 100px;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 1194px){
  .boxMain {
    margin: 36px 0;
    padding: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1194px){
  .boxMain {
    padding: 50px 36px;
  }
}

@media (max-width: 428px) {
  .boxMain {
    padding: 36px 20px;
    min-height: inherit;
  }
}

.boxMain.small {
  width: 100%;
  max-width: 560px;
  margin: 128px auto 100px;
  padding: 64px 70px;
}

@media (max-width: 1194px) {
  .boxMain.small {
    margin: 64px auto;
  }
}

@media (max-width: 428px) {
  .boxMain.small {
    padding: 36px 20px;
  }
}

section#pMission {
  background: url(../img/home/bg-rainbow.jpg) bottom center no-repeat;
  background-size: 100% auto;
  padding: 64px 0 120px;
}

@media (max-width: 1024px)  {
  section#pMission {
    background-size: 130% auto;
  }
}

@media (max-width: 428px) {
  section#pMission {
    padding: 40px 0 60px;
  }
}

section#pMission .bTitlePart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 428px) {
  section#pMission .bTitlePart {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
}

section#pMission .bTitlePart h3 {
  font-size: 36px;
  font-weight: bold;
}

@media (max-width: 428px) {
  section#pMission .bTitlePart h3 {
    font-size: 28px;
  }
}

@media (max-width: 428px) {
  section#pMission .bTitlePart h3 {
    margin-bottom: 12px;
  }
}

section#pMission .bTitlePart .btn {
  zoom: 0.7;
}

section#pMission .bBtnCategory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 428px) {
  section#pMission .bBtnCategory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    margin-bottom: 40px;
  }
}

section#pMission .bBtnCategory .btnCate {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  width: 100%;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
}

@media (max-width: 1024px)  {
  section#pMission .bBtnCategory .btnCate {
    zoom: 0.8;
  }
}

section#pMission .bBtnCategory .btnCate.active {
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate1 {
  border-color: #024DBC;
  color: #024DBC;
}

section#pMission .bBtnCategory .btnCate.cate1:hover {
  border-color: #CADFFF;
  background-color: #CADFFF;
}

section#pMission .bBtnCategory .btnCate.cate1.active {
  background-color: #024DBC;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate2 {
  border-color: #AA0061;
  color: #AA0061;
}

section#pMission .bBtnCategory .btnCate.cate2:hover {
  border-color: #F4DFEB;
  background-color: #F4DFEB;
}

section#pMission .bBtnCategory .btnCate.cate2.active {
  background-color: #AA0061;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate3 {
  border-color: #F2A900;
  color: #F2A900;
}

section#pMission .bBtnCategory .btnCate.cate3:hover {
  border-color: #FFF4DA;
  background-color: #FFF4DA;
}

section#pMission .bBtnCategory .btnCate.cate3.active {
  background-color: #F2A900;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate4 {
  border-color: #009CA6;
  color: #009CA6;
}

section#pMission .bBtnCategory .btnCate.cate4:hover {
  border-color: #B9E6E9;
  background-color: #B9E6E9;
}

section#pMission .bBtnCategory .btnCate.cate4.active {
  background-color: #009CA6;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate5 {
  border-color: #8002BC;
  color: #8002BC;
}

section#pMission .bBtnCategory .btnCate.cate5:hover {
  border-color: #E4C0F4;
  background-color: #E4C0F4;
}

section#pMission .bBtnCategory .btnCate.cate5.active {
  background-color: #8002BC;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate6 {
  border-color: #E15845;
  color: #E15845;
}

section#pMission .bBtnCategory .btnCate.cate6:hover {
  border-color: #FED3D6;
  background-color: #FED3D6;
}

section#pMission .bBtnCategory .btnCate.cate6.active {
  background-color: #E15845;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate7 {
  border-color: #239ADD;
  color: #239ADD;
}

section#pMission .bBtnCategory .btnCate.cate7:hover {
  border-color: #B8DFF5;
  background-color: #B8DFF5;
}

section#pMission .bBtnCategory .btnCate.cate7.active {
  background-color: #239ADD;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate8 {
  border-color: #00A66A;
  color: #00A66A;
}

section#pMission .bBtnCategory .btnCate.cate8:hover {
  border-color: #B5E9D6;
  background-color: #B5E9D6;
}

section#pMission .bBtnCategory .btnCate.cate8.active {
  background-color: #00A66A;
  color: #ffffff;
}

section#pMission .bBtnCategory .btnCate.cate9 {
  border-color: #1258a7;
  color: #1258a7;
}

section#pMission .bBtnCategory .btnCate.cate9:hover {
  border-color: #CADFFF;
  background-color: #CADFFF;
}

section#pMission .bBtnCategory .btnCate.cate9.active {
  background-color: #1258a7;
  color: #ffffff;
}

section#pMission .bMissionMain .bMissionDetails {
  margin-bottom: 48px;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails {
    margin-bottom: 24px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tTitle {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tTitle {
    flex-direction: column;
    margin-bottom: 12px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tTitle .bTag {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  margin-right: 24px;
  border: 4px solid #ffffff;
  display: flex;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tTitle .bTag {
    zoom: 0.8;
    margin-bottom: 12px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tTitle .bTag span {
  padding: 16px;
  background: linear-gradient(280.87deg, #104581 -0.69%, #2470c4 24.48%, #3b8de9 48.6%, #1258a7 100%);
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-transform: capitalize;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tTitle .bTag span {
    font-size: 20px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tTitle .bTag:before {
  content: "NEW";
  display: none;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  padding: 16px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(124.42deg, #ff1529 4.17%, #ff6a77 34.67%, #ff1529 71.48%, #a2000e 105.13%);
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tTitle .bTag:before {
    font-size: 20px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tTitle .bTag.new:before {
  display: block;
}

section#pMission .bMissionMain .bMissionDetails .tTitle h3 {
  flex: 1;
  font-size: 44px;
  color: #a9176d;
  font-weight: bold;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tTitle h3 {
    font-size: 36px;
  }
}

section#pMission .bMissionMain .bMissionDetails .tDes {
  font-size: 28px;
  color: #565656;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMissionDetails .tDes {
    font-size: 24px;
  }
}

@media (max-width: 1280px) {
  section#pMission .bMissionMain .bMission {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px)  {
  section#pMission .bMissionMain .bMission {
    /*width: 100%;
    margin: 0 auto;*/
  }
}

section#pMission .bMissionMain .bMission .mission {
  border: 12px solid #1258a7;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  overflow: hidden;
  padding: 5px;
}
section#pMission .bMissionMain .bMission .mission > iframe{
    width: 100%;
    height: 605px;
    float: left;
}

@media (min-width: 768px) and (max-width: 1194px)  {
  section#pMission .bMissionMain .bMission .mission {
    margin-bottom: 24px;
  }
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bMission .mission {
    margin-bottom: 12px;
    border-width: 6px;
  }
}

section#pMission .bMissionMain .bMission .mission img {
  display: block;
  width: 100%;
  height: auto;
}

section#pMission .bMissionMain .bMission .bArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

section#pMission .bMissionMain .bMission .bArrow .btnArrow {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
  width: 72px;
  height: 72px;
  border: 6px solid #ffffff;
  color: #ffffff;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

section#pMission .bMissionMain .bMission .bArrow .btnArrow.left {
  left: -100px;
  background: url(../img/ico-arrow-slide-l.svg) center center no-repeat, linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
}

section#pMission .bMissionMain .bMission .bArrow .btnArrow.left:hover {
  opacity: 0.8;
}

section#pMission .bMissionMain .bMission .bArrow .btnArrow.right {
  right: -100px;
  background: url(../img/ico-arrow-slide-r.svg) center center no-repeat, linear-gradient(180deg, #df1d87 13.16%, #c31b77 49.96%);
}

section#pMission .bMissionMain .bMission .bArrow .btnArrow.right:hover {
  opacity: 0.8;
}

@media (max-width: 1024px)  {
  section#pMission .bMissionMain .bMission .bArrow {
    zoom: 0.8;
    /*
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    display: flex;
    justify-content: space-between;*/
  }
  section#pMission .bMissionMain .bMission .bArrow .btnArrow.left,
  section#pMission .bMissionMain .bMission .bArrow .btnArrow.right {
    /*position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;*/
  }
}
@media (max-width: 550px) {
  section#pMission .bMissionMain .bMission .bArrow {
    zoom: 0.7;
  }
}
@media (max-width: 428px) {
  section#pMission .bMissionMain .bMission .bArrow {
    zoom: 0.7;
  }
}
section#pMission .bMissionMain .bMessage {
  background: red;
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 767px) {
  section#pMission .bMissionMain .bMessage {
    font-size: 14px;
  } 
}
@media (max-width: 575px) {
  section#pMission .bMissionMain .bMessage {
    margin-top: 70px;  
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }
  section#pMission .bMissionMain .bAction{
    margin-top: 15px!important;
  }
}
@media (max-width: 320px) {
  section#pMission .bMissionMain .bMessage {
    font-size: 11px;
  }
}
section#pMission .bMissionMain .bAction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

@media (min-width: 768px) and (max-width: 1194px)  {
  section#pMission .bMissionMain .bAction {
    margin-top: 36px;
  }
}

@media (max-width: 1024px)  {
  section#pMission .bMissionMain .bAction {
    justify-content: space-between;
  }
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bAction {
    margin-top: 12px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}

section#pMission .bMissionMain .bAction .bBtn {
  display: flex;
  column-gap: 36px;
}

@media (max-width: 1024px)  {
  section#pMission .bMissionMain .bAction .bBtn {
    column-gap: 24px;
  }
}

section#pMission .bMissionMain .bAction .btn.blue,
section#pMission .bMissionMain .bAction .btn.outline {
  max-width: 274px;
  height: 62px;
  line-height: 62px;
}

section#pMission .bMissionMain .bAction .btn.outline {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-width: 2px;
  color: #1258a7;
}

section#pMission .bMissionMain .bAction .btn.outline:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico-tropy.svg) center center no-repeat;
  background-size: auto 100%;
  margin-right: 8px;
}

section#pMission .bMissionMain .bAction .btn.outline:hover {
  background: #e2f4fd;
}

section#pMission .bMissionMain .bAction .bShare {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bAction .bShare {
    column-gap: 12px;
  }
}

section#pMission .bMissionMain .bAction .bShare span {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .bAction .bShare span {
    font-size: 16px;
  }
}

section#pMission .bMissionMain .bAction .bShare .btnFb {
  flex: 1;
}

section#pMission .bMissionMain .bAction .bShare .btnLine {
  flex: 1;
}

section#pMission .bMissionMain .btimeCountdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: -17px;
  background-color: #ff3d43;
  border: 2px solid #ffffff;
  color: #ffffff;
  height: 44px;
  padding: 0 12px;
  box-shadow: 0px 0px 12px 4px rgba(57, 109, 178, 0.24);
  border-radius: 22px;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  overflow: hidden;
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

@media (max-width: 428px) {
  section#pMission .bMissionMain .btimeCountdown {
    font-size: 20px;
  }
}

section#pMission .bMissionMain .btimeCountdown:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico-time.svg) center center no-repeat;
  background-size: auto 100%;
  margin-right: 8px;
}

section#pAllMission {
  background-color: #1258a7;
  padding: 64px 0;
}

@media (max-width: 428px) {
  section#pAllMission {
    padding: 40px 0;
  }
}

section#pAllMission .bAllMissionMain .bTitle {
  margin-bottom: 24px;
}

section#pAllMission .bAllMissionMain .bTitle h3 {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
}

@media (max-width: 428px) {
  section#pAllMission .bAllMissionMain .bTitle h3 {
    font-size: 28px;
  }
}

section#pAllMission .bAllMissionMain .bMissionGroup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1024px)  {
  section#pAllMission .bAllMissionMain .bMissionGroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 24px;
  }
}

section#pAllMission .bAllMissionMain .bMissionGroup#missionHide {
  display: none;
}

section#pAllMission .bAllMissionMain .bMissionGroup article .bPic {
  margin-bottom: 12px;
}

section#pAllMission .bAllMissionMain .bMissionGroup article .bPic img {
  display: block;
  width: 100%;
  height: 139px;
  object-fit: cover;
}

section#pAllMission .bAllMissionMain .bMissionGroup article .bPic .bTag {
  font-size: 12px;
  background-color: #eb2031;
  color: #ffffff;
  padding: 4px 10px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}

section#pAllMission .bAllMissionMain .bMissionGroup article .tTitle {
  color: #ffffff;
  font-weight: bold;
}

section#pAllMission .bAllMissionMain .bBtn {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

section#pAllMission .bAllMissionMain .bBtn .btn2 {
  max-width: 274px;
}