@charset "UTF-8";
/* -------------------------------------------------------------
  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

------------------------------------------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.ctbc-retirement {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
.ctbc-retirement .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.ctbc-retirement .animated.infinite {
  animation-iteration-count: infinite;
}
.ctbc-retirement .animated.hinge {
  animation-duration: 2s;
}
.ctbc-retirement .animated.flipOutX,
.ctbc-retirement .animated.flipOutY,
.ctbc-retirement .animated.bounceIn,
.ctbc-retirement .animated.bounceOut {
  animation-duration: .75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.ctbc-retirement .bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.ctbc-retirement .flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-retirement .pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-retirement .rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.ctbc-retirement .shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.ctbc-retirement .headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.ctbc-retirement .swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-retirement .tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.ctbc-retirement .wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.ctbc-retirement .jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.ctbc-retirement .bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-retirement .bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-retirement .bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.ctbc-retirement .bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-retirement .bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.ctbc-retirement .bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.ctbc-retirement .bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.ctbc-retirement .bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.ctbc-retirement .bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.ctbc-retirement .bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ctbc-retirement .fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ctbc-retirement .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.ctbc-retirement .fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.ctbc-retirement .fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.ctbc-retirement .fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.ctbc-retirement .fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.ctbc-retirement .fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.ctbc-retirement .fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.ctbc-retirement .fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.ctbc-retirement .fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.ctbc-retirement .animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.ctbc-retirement .flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.ctbc-retirement .flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.ctbc-retirement .flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.ctbc-retirement .flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.ctbc-retirement .lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.ctbc-retirement .rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.ctbc-retirement .rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.ctbc-retirement .rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.ctbc-retirement .rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.ctbc-retirement .rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.ctbc-retirement .rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.ctbc-retirement .hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ctbc-retirement .jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ctbc-retirement .rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.ctbc-retirement .rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.ctbc-retirement .zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.ctbc-retirement .zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.ctbc-retirement .zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.ctbc-retirement .zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.ctbc-retirement .zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-retirement .slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-retirement .slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-retirement .slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.ctbc-retirement .slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.ctbc-retirement .slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.ctbc-retirement .slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.ctbc-retirement .slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.ctbc-retirement .slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Swiper 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  display: block;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: none;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #ffc600;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 15px;
  height: 30px;
  margin-top: -15px;
  border-radius: 0;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 100;
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev_s.png);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next_s.png);
  right: 0;
}

html {
  min-width: 100%;
}

.ctbc-retirement {
  font: 1em/1.6 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-color: #fff;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.ctbc-retirement * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ctbc-retirement a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.ctbc-retirement :focus {
  outline: none;
}
.ctbc-retirement a:focus,
.ctbc-retirement a:active,
.ctbc-retirement a:hover {
  outline: 0;
  -moz-outline-style: none;
}
.ctbc-retirement img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.ctbc-retirement table {
  border-spacing: 0;
  border-collapse: collapse;
}
.ctbc-retirement p {
  margin: 0;
}
.ctbc-retirement strong {
  font-weight: 700;
}
.ctbc-retirement h1,
.ctbc-retirement h2,
.ctbc-retirement h3,
.ctbc-retirement h4,
.ctbc-retirement h5,
.ctbc-retirement h6 {
  margin: 0;
  padding: 0;
}
.ctbc-retirement textarea,
.ctbc-retirement select,
.ctbc-retirement input[type="text"],
.ctbc-retirement input[type='number'],
.ctbc-retirement input[type="button"],
.ctbc-retirement input[type="search"],
.ctbc-retirement input[type="submit"],
.ctbc-retirement button,
.ctbc-retirement input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-retirement textarea:focus,
.ctbc-retirement select:focus,
.ctbc-retirement input[type="text"]:focus,
.ctbc-retirement input[type='number']:focus,
.ctbc-retirement input[type="button"]:focus,
.ctbc-retirement input[type="search"]:focus,
.ctbc-retirement input[type="submit"]:focus,
.ctbc-retirement button:focus,
.ctbc-retirement input[type="radio"]:focus {
  outline: 0;
}
.ctbc-retirement input::-webkit-outer-spin-button,
.ctbc-retirement input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ctbc-retirement input[type=number] {
  -moz-appearance: textfield !important;
}
.ctbc-retirement .container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0;
  position: relative;
}
.ctbc-retirement .lg-view {
  display: none;
}
.ctbc-retirement .sm-view {
  display: block;
}
.ctbc-retirement .in-view {
  opacity: 0;
}
.ctbc-retirement .in-view.animated {
  opacity: 1;
}
.ctbc-retirement .post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.ctbc-retirement .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) {
  .ctbc-retirement .post-iframe {
    padding-top: 0;
  }
}
.ctbc-retirement .floating {
  animation-name: floating;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}
@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.ctbc-retirement .btn-a:first-child:active,
.ctbc-retirement :not(.btn-check) + .btn-a:active {
  color: #198a8a;
  background-color: #c4eab9;
  border-color: none;
}
.ctbc-retirement .btn-b:first-child:active,
.ctbc-retirement :not(.btn-check) + .btn-b:active {
  color: #d27704;
  background-color: #ffe0b2;
  border-color: none;
}
.ctbc-retirement .range {
  background: #c5c5c5;
  height: 5px;
  max-width: 100%;
  width: 100%;
  position: relative;
  border: none;
  border-radius: 10px;
  margin: 3.33333px 0;
  appearance: none;
}
.ctbc-retirement .range [type="range"] {
  appearance: none;
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 5px;
}
.ctbc-retirement .range [type="range"]:focus {
  outline: none;
}
.ctbc-retirement .range [type="range"]::-webkit-slider-runnable-track {
  background: transparent;
}
.ctbc-retirement .range [type="range"]::-moz-range-track {
  background: transparent;
}
.ctbc-retirement .range [type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 32px;
  height: 14px;
  border-radius: 5px;
  background: #188a8a;
  cursor: pointer;
  border: none;
}
.ctbc-retirement .range [type="range"]::-moz-range-thumb {
  appearance: none;
  width: 32px;
  height: 14px;
  border-radius: 5px;
  background: #188a8a;
  cursor: pointer;
  border: none;
}
.ctbc-retirement .range [type="range"]::-ms-thumb {
  appearance: none;
  width: 32px;
  height: 14px;
  border-radius: 5px;
  background: #188a8a;
  cursor: pointer;
  border: none;
}
.ctbc-retirement .range [type="range"]::-ms-fill-lower {
  background: #c5c5c5;
}
.ctbc-retirement .range [type="range"]::-ms-fill-upper {
  background: #e2e2ea;
}
.ctbc-retirement .range [type="range"]::-ms-track {
  color: transparent;
  border: 0 solid transparent;
  background: transparent;
}
.ctbc-retirement .range [type="range"]::-ms-tooltip {
  display: none;
}
.ctbc-retirement .range {
  max-width: 100%;
}
.ctbc-retirement .range-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.ctbc-retirement .btn-tooltip {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  width: 25px;
  height: 25px;
}
.ctbc-retirement .btn-tooltip .icon {
  display: block;
}
.ctbc-retirement .icon-info {
  width: 25px;
  height: 25px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-info.png);
  display: block;
}
.ctbc-retirement .icon-plus {
  width: 25px;
  height: 25px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-plus.png);
  display: block;
}
.ctbc-retirement .plus-text {
  position: relative;
}
.ctbc-retirement .plus-text .form-select {
  background-position: right 40px center;
}
.ctbc-retirement .plus-text .text {
  position: absolute;
  top: 0;
  right: 12px;
  line-height: 48px;
}
.ctbc-retirement .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px !important;
  padding: 0 60px 0 14px;
  height: 48px;
  line-height: 44px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-retirement .form-control:focus {
  color: #000;
  border-color: #e0e0e0;
  box-shadow: none;
}
.ctbc-retirement .form-select {
  border: 2px solid #e0e0e0;
  background-image: url("../images/select-arrow_s.png");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px auto;
  border-radius: 8px;
  padding: 0 60px 0 14px;
  height: 48px;
  line-height: 44px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-retirement .form-checkbox input[type=checkbox],
.ctbc-retirement .form-radio input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
}
.ctbc-retirement .form-check-inline {
  margin-right: 0;
}
.ctbc-retirement .form-check-inline + .form-check-inline {
  margin-left: 20px;
}
.ctbc-retirement .form-radio {
  position: relative;
  min-height: inherit;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 8px;
}
.ctbc-retirement .form-radio input[type="radio"] {
  opacity: 0;
}
.ctbc-retirement .form-radio label {
  padding-left: 38px;
  cursor: pointer;
  line-height: 25px;
  display: block;
}
.ctbc-retirement .form-radio label:before {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #c7c7c7;
  background: #c7c7c7;
}
.ctbc-retirement .form-radio input[type="radio"] {
  margin: 0px;
}
.ctbc-retirement .form-radio input[type="radio"]:disabled ~ .form-check-label {
  opacity: 1;
}
.ctbc-retirement .form-radio input[type="radio"]:disabled + label {
  color: #c7c7c7;
}
.ctbc-retirement .form-radio input[type="radio"]:disabled + label:before {
  background-color: #c7c7c7;
}
.ctbc-retirement .form-radio input[type="radio"]:checked + label::after,
.ctbc-retirement .form-radio input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #198a8a;
  border-radius: 4px;
  background-image: url(../images/icon-check.png);
  background-size: 100% auto;
  background-position: center center;
}
.ctbc-retirement .form-radio input[type="checkbox"] {
  opacity: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.ctbc-retirement .form-radio2 {
  position: relative;
  min-height: inherit;
  padding: 0;
}
.ctbc-retirement .form-radio2 input[type="radio"] {
  opacity: 0;
}
.ctbc-retirement .form-radio2 input[type="checkbox"] {
  opacity: 0;
}
.ctbc-retirement .form-radio2 label {
  padding-left: 35px;
  cursor: pointer;
  line-height: 25px;
  display: block;
}
.ctbc-retirement .form-radio2 label:before {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #fff;
}
.ctbc-retirement .form-radio2 input[type="radio"] {
  margin: 0px;
}
.ctbc-retirement .form-radio2 input[type="radio"]:disabled + label {
  color: #999;
}
.ctbc-retirement .form-radio2 input[type="radio"]:disabled + label:before {
  background-color: #c7c7c7;
}
.ctbc-retirement .form-radio2 input[type="radio"] + label::after {
  content: '';
  position: absolute;
  top: calc(28px / 2 - 14px / 2);
  left: calc(28px / 2 - 14px / 2);
  width: 14px;
  height: 14px;
  background-color: #198a8a;
  border-radius: 50%;
  opacity: 0;
}
.ctbc-retirement .form-radio2 input[type="radio"]:checked + label::after, .ctbc-retirement .form-radio2 input[type="radio"] + label.is-checked::after {
  opacity: 1;
}
.ctbc-retirement .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ctbc-retirement .form-section + .form-section {
  margin-top: 15px;
}
.ctbc-retirement .form-section .form-label {
  width: 140px;
  line-height: 48px;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .form-section .form-content {
  width: calc(100% - 140px);
}
.ctbc-retirement .form-section-full .form-label {
  width: 100%;
  line-height: 30px;
  margin: 0 0 10px;
}
.ctbc-retirement .form-section-full .form-content {
  width: 100%;
}
.ctbc-retirement .icon {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ctbc-retirement .btn-a {
  background-color: #c4eab9;
  line-height: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #198a8a;
  box-shadow: 5px 5px 0 0 #6ebe83;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .btn-a:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .btn-a:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .btn-a .icon-send {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-send.png);
  margin-right: 8px;
  margin-left: -18px;
}
.ctbc-retirement .btn-a .icon-calculator {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-calculator.png);
  margin-right: 8px;
  margin-left: -18px;
}
.ctbc-retirement .btn-a .icon-web {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-web.png);
  margin-right: 8px;
  margin-left: -18px;
}
.ctbc-retirement .btn-a .icon-download {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-download.png);
  margin-right: 8px;
  margin-left: -18px;
}
.ctbc-retirement .note-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
}
.ctbc-retirement .note-text p {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  font-weight: 500;
}

@media (min-width: 751px) {
  .ctbc-retirement .lg-view {
    display: block;
  }
  .ctbc-retirement .sm-view {
    display: none;
  }
}
.ctbc-retirement .site-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0b6d6c;
  height: 72px;
  width: 100%;
  z-index: 3;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.ctbc-retirement .site-header .container {
  max-width: 1140px;
}
.ctbc-retirement .site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctbc-retirement .site-header li {
  position: relative;
}
.ctbc-retirement .site-header a {
  text-decoration: none;
}
.ctbc-retirement .site-header .logo {
  position: absolute;
  top: 12px;
  left: 20px;
  width: 175px;
  height: 48px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.svg);
  font-size: 0;
  z-index: 10;
}
.ctbc-retirement .header-sticky {
  padding-top: 72px;
}
.ctbc-retirement .site-menu {
  position: absolute;
  top: 0;
  right: 20px;
}
.ctbc-retirement .main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.ctbc-retirement .main-menu li {
  margin: 0 16px;
}
.ctbc-retirement .main-menu a {
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  color: #fff;
  padding: 24px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .main-menu a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .ctbc-retirement .main-menu a:hover {
    filter: brightness(1.1);
  }
}
.ctbc-retirement .menu-trigger {
  position: fixed;
  top: 3px;
  right: 15px;
  cursor: pointer;
  display: none;
  z-index: 2;
}
.ctbc-retirement .menu-trigger .icon {
  width: 50px;
  height: 50px;
  background-image: url(../images/menu-toggle.png);
  display: block;
}
.ctbc-retirement .menu-close {
  position: fixed;
  top: 3px;
  right: 15px;
  cursor: pointer;
  display: none;
  z-index: 10;
  opacity: 0;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  transition-delay: 1s;
}
.ctbc-retirement .menu-close .icon {
  width: 50px;
  height: 50px;
  background-image: url(../images/menu-close.png);
  display: block;
}

@media (max-width: 1023px) {
  .ctbc-retirement .header-sticky {
    padding-top: 56px;
  }
  .ctbc-retirement .site-header {
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    border-radius: 0;
  }
  .ctbc-retirement .site-header .logo {
    top: 8px;
    left: 15px;
    width: 146px;
    height: 40px;
  }
  .ctbc-retirement .site-menu {
    top: 0;
    right: 0;
  }
  .ctbc-retirement .menu-trigger {
    display: block;
  }
  .ctbc-retirement .menu-close {
    display: none;
  }
  .ctbc-retirement .menu-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    padding-top: 74px;
    padding-bottom: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 6;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    background-color: #0b6d6c;
  }
  .ctbc-retirement .menu-panel.is-toggle {
    left: 0;
  }
  .ctbc-retirement .menu-panel.is-toggle .menu-close {
    display: block;
    opacity: 1;
  }
  .ctbc-retirement .main-menu {
    display: block;
  }
  .ctbc-retirement .main-menu li {
    margin: 0;
  }
  .ctbc-retirement .main-menu a {
    padding: 16px 0;
  }
}
.ctbc-retirement .site-footer {
  position: relative;
  background-color: #007e7d;
  font-size: 14px;
  color: #fff;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.ctbc-retirement .site-footer .container {
  max-width: 1140px;
}
.ctbc-retirement .site-footer .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 18px 20px;
}
.ctbc-retirement .site-footer .logo {
  width: 180px;
  margin-bottom: .5rem;
}
.ctbc-retirement .site-footer .menu {
  margin: 0;
  padding: 0;
}
.ctbc-retirement .site-footer .menu .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .site-footer .menu .item + .item {
  margin-top: .5rem;
}
.ctbc-retirement .site-footer .menu .icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.ctbc-retirement .site-footer .menu .icon-line {
  background-image: url(../images/icon-line.png);
}
.ctbc-retirement .site-footer .menu .icon-global {
  background-image: url(../images/icon-global.png);
}
.ctbc-retirement .site-footer .menu .icon-book {
  background-image: url(../images/icon-book.png);
}
.ctbc-retirement .site-footer .menu a {
  color: #fff;
}

@media (max-width: 750px) {
  .ctbc-retirement .site-footer {
    font-size: 12px;
  }
  .ctbc-retirement .site-footer .grid {
    display: block;
    padding: 0;
  }
  .ctbc-retirement .site-footer .grid-left {
    border-bottom: 1px solid #fff;
    padding: 10px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
  .ctbc-retirement .site-footer .grid-right {
    padding: 10px 15px;
  }
  .ctbc-retirement .site-footer .logo {
    width: 120px;
    margin: 0;
  }
  .ctbc-retirement .site-footer .copyright {
    width: calc(100% - 120px);
    padding-left: 10px;
    text-align: right;
    font-size: 12px;
  }
}
@media (min-width: 960px) {
  .ctbc-retirement .site-footer .grid-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .site-footer .grid-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .ctbc-retirement .site-footer .logo {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .ctbc-retirement .site-footer .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .site-footer .menu .item + .item {
    margin-top: 0;
    margin-left: 20px;
  }
}
.modal:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .modal:focus {
    outline: none !important;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 920px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border-radius: 0;
  background: #e2f7e8;
  padding: 64px 35px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  border: 0;
  font-family: "Noto Serif TC", "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Arial, Helvetica, sans-serif, "Microsoft YaHei";
}
.modal .btn-close {
  width: 48px;
  height: 48px;
  padding: 0;
  background: url(../images/modal-close2.png);
  background-size: 100% auto;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.modal .btn-close:focus {
  box-shadow: none;
}
.modal p {
  margin: 0;
  font-size: 16px;
  line-height: 36px;
  font-weight: 700;
  font-family: "Noto Serif TC", "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Arial, Helvetica, sans-serif, "Microsoft YaHei";
}
.modal ol, .modal ul {
  padding-left: 1rem;
}
.modal .action {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.modal .btn {
  max-width: 200px;
  margin: 0 18px;
}
.modal .btn:active {
  filter: brightness(1.05);
}
.modal .btn-a {
  background-color: #c4eab9;
  line-height: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #198a8a;
  box-shadow: 5px 5px 0 0 #6ebe83;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.modal .btn-a:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .modal .btn-a:hover {
    filter: brightness(1.05);
  }
}
.modal .btn-a .icon-send {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-send.png);
  margin-right: 8px;
  margin-left: -18px;
}
.modal .btn-a .icon-calculator {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-calculator.png);
  margin-right: 8px;
  margin-left: -18px;
}
.modal .btn-a .icon-web {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-web.png);
  margin-right: 8px;
  margin-left: -18px;
}
.modal .btn-a .icon-download {
  width: 36px;
  height: 36px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-download.png);
  margin-right: 8px;
  margin-left: -18px;
}
.modal .btn-a:first-child:active,
.modal :not(.btn-check) + .btn-a:active {
  color: #198a8a;
  background-color: #c4eab9;
  border-color: none;
}
.modal .btn-b {
  background-color: #ffe0b2;
  line-height: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #d27704;
  box-shadow: 5px 5px 0 0 #e39d3b;
  position: relative;
}
.modal .btn-b:first-child:active,
.modal :not(.btn-check) + .btn-b:active {
  color: #d27704;
  background-color: #ffe0b2;
  border-color: none;
}

@media (max-width: 750px) {
  .modal-dialog {
    max-width: 325px;
  }
  .modal-content {
    padding: 56px 24px 44px;
    font-size: 15px;
    line-height: 24px;
  }
  .modal .btn-close {
    width: 44px;
    height: 44px;
  }
  .modal p {
    font-size: 15px;
    line-height: 24px;
  }
  .modal .action {
    margin-top: 15px;
    display: block;
  }
  .modal .btn {
    max-width: 100%;
    margin: 0;
  }
  .modal .btn + .btn {
    margin-top: 25px;
  }
}
.ctbc-retirement .index-section {
  position: relative;
  z-index: 0;
  font-size: 18px;
  line-height: 30px;
}
.ctbc-retirement .index-section.fadeInUp {
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.ctbc-retirement .index-section .section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ctbc-retirement .index-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ctbc-retirement .index-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ctbc-retirement .index-section .container {
  max-width: 375px;
  padding: 0;
}
.ctbc-retirement .index-kv {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 56px;
}
.ctbc-retirement .index-kv .bg {
  z-index: 0;
}
.ctbc-retirement .index-kv .container {
  max-width: 100%;
  padding: 0;
}
.ctbc-retirement .index-kv .slogan {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  transform-origin: center 25%;
}
.ctbc-retirement .index-kv .sub {
  -moz-animation: fadeInUp 0.5s both;
  -webkit-animation: fadeInUp 0.5s both;
  animation: fadeInUp 0.5s both;
  animation-delay: .5s;
}
.ctbc-retirement .index-kv .scroll {
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
  animation-delay: .8s;
}
.ctbc-retirement .index-kv .swiper-pagination {
  position: absolute;
  bottom: 20px;
}
.ctbc-retirement .index-kv .swiper-pagination-bullet-active {
  background: #ffc600 !important;
}
.ctbc-retirement .index-kv .action {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  -moz-animation: fadeInUp 0.5s both;
  -webkit-animation: fadeInUp 0.5s both;
  animation: fadeInUp 0.5s both;
  animation-delay: 1s;
}
.ctbc-retirement .index-kv .btn {
  border: 2px solid #0c6d6d;
  background-color: #dae5d5;
  border-radius: 10px;
  width: 200px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #0c6d6d;
  font-size: 21px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 0;
  margin: 0 auto;
}
.ctbc-retirement .index-kv .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .index-kv .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .index-kv .icon-search {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/index-kv-icon_search_s.png);
  margin-right: 16px;
}
.ctbc-retirement .index-a {
  padding-top: 30px;
  padding-bottom: 70px;
  overflow: hidden;
}
.ctbc-retirement .index-a .bg {
  background-image: url(../images/index-a-bg_s.png);
  background-size: cover;
}
.ctbc-retirement .index-a .box {
  width: 375px;
  height: 409px;
  margin: 0 auto;
  background-image: url(../images/index-a1-box_s.png);
  background-size: 100% auto;
  padding-top: 72px;
  margin-bottom: 20px;
}
.ctbc-retirement .index-a .box-header {
  font-size: 27px;
  line-height: 38px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.ctbc-retirement .index-a .box-header:before {
  content: "";
  position: absolute;
  top: 25%;
  left: 62%;
  background-image: url(../images/index-header_s.png);
  width: 74px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.ctbc-retirement .index-a .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .index-a .action .item {
  width: 50%;
  max-width: 154px;
  margin: 0 2px;
}
.ctbc-retirement .index-a .action .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .ctbc-retirement .index-a .action .item:hover {
    filter: brightness(1.1);
  }
}
.ctbc-retirement .index-a .section-header {
  max-width: 375px;
  margin: 0 auto;
  margin-bottom: 45px;
}
.ctbc-retirement .index-a .section-header .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.ctbc-retirement .index-a .section-header .main-text:before {
  content: "";
  position: absolute;
  top: 56%;
  left: 63%;
  background-image: url(../images/index-header_s.png);
  width: 74px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.ctbc-retirement .index-a .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .index-a .section .list {
  max-width: 246px;
  margin: 0 auto;
}
.ctbc-retirement .index-a .section .item {
  position: relative;
  width: 246px;
  margin: 0 auto;
  display: block;
}
.ctbc-retirement .index-a .section .item.fadeInUp {
  animation-name: zoomIn;
}
.ctbc-retirement .index-a .section .item + .item {
  margin-top: 45px;
}
.ctbc-retirement .index-b .container {
  max-width: 375px;
  margin: 0 auto;
}
.ctbc-retirement .index-b .bg {
  background-image: url(../images/index-b-bg_s.png);
  background-size: auto 130px;
  background-position: center bottom;
}
.ctbc-retirement .index-b .content {
  padding: 35px 32px 80px;
}
.ctbc-retirement .index-b .main-text {
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #0c6d6d;
  margin-bottom: 20px;
}
.ctbc-retirement .index-b .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
}
.ctbc-retirement .index-b .action {
  margin-top: 40px;
}
.ctbc-retirement .index-b .btn {
  border: 2px solid #0c6d6d;
  background-color: #dae5d5;
  border-radius: 10px;
  width: 200px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #0c6d6d;
  font-size: 21px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 0;
}
.ctbc-retirement .index-b .icon-video {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/index-b-icon_play_s.png);
  margin-right: 16px;
}

@media (min-width: 751px) {
  .ctbc-retirement .index-section .container {
    max-width: 1300px;
    padding: 0 20px;
  }
  .ctbc-retirement .index-kv {
    margin-top: 0;
  }
  .ctbc-retirement .index-kv .container {
    max-width: 100%;
    padding: 0;
  }
  .ctbc-retirement .index-kv .btn {
    width: 224px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
  }
  .ctbc-retirement .index-a {
    padding-top: 30px;
    padding-bottom: 70px;
  }
  .ctbc-retirement .index-a .container {
    max-width: 1150px;
  }
  .ctbc-retirement .index-a .bg {
    background-image: url(../images/index-a-bg.png);
  }
  .ctbc-retirement .index-a .box {
    width: 1020px;
    height: 427px;
    background-image: url(../images/index-a1-box.png);
    padding-top: 114px;
    margin: 0;
    margin-bottom: 40px;
    position: relative;
    left: calc(50% - 1020px / 2);
  }
  .ctbc-retirement .index-a .box-header {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 20px;
  }
  .ctbc-retirement .index-a .box-header:before {
    top: 25%;
    left: calc(50% + 55px);
    background-image: url(../images/index-header.png);
    width: 84px;
    height: 28px;
  }
  .ctbc-retirement .index-a .action .item {
    max-width: 284px;
    margin: 0 15px;
  }
  .ctbc-retirement .index-a .section-header {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  .ctbc-retirement .index-a .section-header .main-text {
    margin-bottom: 25px;
  }
  .ctbc-retirement .index-a .section-header .main-text:before {
    top: 56%;
    left: calc(50% + 55px);
    background-image: url(../images/index-header.png);
    width: 84px;
    height: 28px;
  }
  .ctbc-retirement .index-a .section-header .sub-text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: .075em;
    max-width: 520px;
  }
  .ctbc-retirement .index-a .section .list {
    max-width: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin: 0 -15px;
  }
  .ctbc-retirement .index-a .section .item {
    width: calc(100% / 4 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .index-a .section .item .image {
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .ctbc-retirement .index-a .section .item .image img {
    position: relative;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .ctbc-retirement .index-a .section .item + .item {
    margin-top: 0;
  }
  .ctbc-retirement .index-a .section .item:active .image {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    top: -10px;
  }
  .ctbc-retirement .index-a .section .item:active .image img {
    top: -10px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .ctbc-retirement .index-a .section .item:hover .image {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    top: -10px;
  }
  .ctbc-retirement .index-a .section .item:hover .image img {
    top: -10px;
  }
}
@media (min-width: 751px) {
  .ctbc-retirement .index-b {
    padding-top: 80px;
    padding-bottom: 116px;
  }
  .ctbc-retirement .index-b .container {
    max-width: 1150px;
    padding: 0 20px;
  }
  .ctbc-retirement .index-b .bg {
    background-image: url(../images/index-b-bg.png);
    background-size: auto 255px;
  }
  .ctbc-retirement .index-b .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .index-b .grid-left {
    width: 65%;
  }
  .ctbc-retirement .index-b .grid-right {
    width: calc(100% - 65%);
  }
  .ctbc-retirement .index-b .content {
    padding: 30px;
    padding-right: 0;
  }
  .ctbc-retirement .index-b .main-text {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .index-b .sub-text {
    font-size: 16px;
    line-height: 30px;
  }
  .ctbc-retirement .index-b .action {
    margin-top: 20px;
  }
  .ctbc-retirement .index-b .btn {
    width: 224px;
    height: 48px;
    font-size: 24px;
    line-height: 44px;
  }
}
.ctbc-retirement .ca-section {
  position: relative;
  z-index: 0;
  font-size: 18px;
  line-height: 30px;
}
.ctbc-retirement .ca-section.fadeInUp {
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.ctbc-retirement .ca-section .section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ctbc-retirement .ca-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ctbc-retirement .ca-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ctbc-retirement .ca-section .container {
  max-width: 375px;
  margin: 0 auto;
}
.ctbc-retirement .ca-a {
  padding-top: 30px;
  padding-bottom: 56px;
}
.ctbc-retirement .ca-a .section-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ctbc-retirement .ca-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.ctbc-retirement .ca-a .section-header .main-text:before {
  content: "";
  position: absolute;
  top: 60%;
  left: 61%;
  background-image: url(../images/index-header_s.png);
  width: 74px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.ctbc-retirement .ca-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .ca-a .block-1 {
  padding: 15px 0 24px;
  margin-bottom: 55px;
  position: relative;
}
.ctbc-retirement .ca-a .block-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100vw / 2);
  width: 100vw;
  height: calc(100% + 300px);
  background-image: url(../images/cd-a-bg_s.png);
  background-size: cover;
  z-index: -1;
}
.ctbc-retirement .ca-a .block-1 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 5px;
}
.ctbc-retirement .ca-a .block-1 .sub-text {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 15px;
}
.ctbc-retirement .ca-a .block-2 .item {
  position: relative;
  overflow: hidden;
  width: 286px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
  display: block;
}
.ctbc-retirement .ca-a .block-2 .image {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.ctbc-retirement .ca-a .block-2 .image:before {
  content: "";
  display: block;
  padding-top: 139.160839161%;
}
.ctbc-retirement .ca-a .block-2 .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.ctbc-retirement .ca-a .block-2 .image:after {
  content: "";
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/gradient.png);
  z-index: 9;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s;
  display: block;
}
.ctbc-retirement .ca-a .block-2 .content {
  padding: 24px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.ctbc-retirement .ca-a .block-2 .main-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ctbc-retirement .ca-a .block-2 .sub-text {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.ctbc-retirement .ca-a .block-2 .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #fff;
}
.ctbc-retirement .ca-a .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}
.ctbc-retirement .ca-a .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #d9d9d9;
}
.ctbc-retirement .ca-a .swiper-button-prev,
.ctbc-retirement .ca-a .swiper-button-next {
  top: calc(398px / 2);
}
.ctbc-retirement .ca-a .swiper-button-prev {
  left: 14px;
}
.ctbc-retirement .ca-a .swiper-button-next {
  right: 14px;
}
.ctbc-retirement .ca-b {
  padding-bottom: 140px;
}
.ctbc-retirement .ca-b .bg {
  background-image: url(../images/index-b-bg_s.png);
  background-size: auto 130px;
  background-position: center bottom;
}
.ctbc-retirement .ca-b .content {
  padding: 35px 24px;
}
.ctbc-retirement .ca-b .main-text {
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #0c6d6d;
  margin-bottom: 20px;
}
.ctbc-retirement .ca-b .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
}
.ctbc-retirement .ca-b .gallery-thumbs {
  margin: 0 30px;
}
.ctbc-retirement .ca-b .gallery-thumbs .swiper-slide {
  width: 78px;
  padding: 0 4px;
}
.ctbc-retirement .ca-b .btn {
  border: 2px solid #0c6d6d;
  background-color: #dae5d5;
  border-radius: 0;
  width: 100%;
  height: 44px;
  color: #0c6d6d;
  font-size: 18px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 0;
  text-align: center;
}
.ctbc-retirement .ca-b .swiper-button-prev,
.ctbc-retirement .ca-b .swiper-button-next {
  top: calc(100% - 22px);
}
.ctbc-retirement .ca-b .swiper-button-prev {
  left: 10px;
}
.ctbc-retirement .ca-b .swiper-button-next {
  right: 10px;
}

@media (min-width: 751px) {
  .ctbc-retirement .ca-section .container {
    max-width: 1300px;
    padding: 0 20px;
  }
  .ctbc-retirement .ca-a {
    padding-top: 30px;
    padding-bottom: 45px;
  }
  .ctbc-retirement .ca-a .container {
    padding: 0;
  }
  .ctbc-retirement .ca-a .section-header {
    margin-bottom: 20px;
  }
  .ctbc-retirement .ca-a .section-header .main-text {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #0c6d6d;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
  }
  .ctbc-retirement .ca-a .section-header .main-text:before {
    top: 60%;
    left: calc(50% + 55px);
    background-image: url(../images/index-header.png);
    width: 84px;
    height: 28px;
  }
  .ctbc-retirement .ca-a .section-header .sub-text {
    font-size: 27px;
    line-height: 36px;
    font-weight: 700;
    color: #000;
    text-align: center;
  }
  .ctbc-retirement .ca-a .block-1:before {
    height: calc(100% + 320px);
    background-image: url(../images/cd-a-bg.png);
  }
  .ctbc-retirement .ca-a .block-1 .main-text {
    margin-bottom: 10px;
  }
  .ctbc-retirement .ca-a .block-1 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .ca-a .block-1 .main-text br {
    display: none;
  }
  .ctbc-retirement .ca-a .block-1 .sub-text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .ctbc-retirement .ca-a .block-1 .image {
    max-width: 400px;
    margin: 0 auto;
  }
  .ctbc-retirement .ca-a .block-2 .ca-swiper {
    padding: 0 40px;
  }
  .ctbc-retirement .ca-a .block-2 .swiper-slide {
    width: calc(100% / 4);
    visibility: hidden;
  }
  .ctbc-retirement .ca-a .block-2 .swiper-slide .item {
    display: none;
  }
  .ctbc-retirement .ca-a .block-2 .swiper-slide-visible {
    visibility: visible;
  }
  .ctbc-retirement .ca-a .block-2 .swiper-slide-visible .item {
    display: block;
  }
  .ctbc-retirement .ca-a .block-2 .item {
    width: calc(100% - 10px * 2);
    max-width: 286px;
    margin: 0 10px;
    display: none;
  }
  .ctbc-retirement .ca-a .block-2 .content {
    padding: 20px 15px;
  }
  .ctbc-retirement .ca-a .block-2 .sub-text {
    font-size: 13px;
    line-height: 18px;
  }
  .ctbc-retirement .ca-a .block-2 .text {
    font-size: 13px;
    line-height: 18px;
  }
  .ctbc-retirement .ca-a .swiper-pagination {
    display: none;
  }
  .ctbc-retirement .ca-a .swiper-button-prev,
  .ctbc-retirement .ca-a .swiper-button-next {
    top: 50%;
  }
  .ctbc-retirement .ca-a .swiper-button-prev {
    left: 14px;
  }
  .ctbc-retirement .ca-a .swiper-button-next {
    right: 14px;
  }
  .ctbc-retirement .ca-a .swiper-button-disabled {
    display: none;
  }
  .ctbc-retirement .ca-b {
    padding-top: 45px;
    padding-bottom: 248px;
  }
  .ctbc-retirement .ca-b .container {
    max-width: 1300px;
    padding: 0 20px;
  }
  .ctbc-retirement .ca-b .bg {
    background-image: url(../images/index-b-bg.png);
    background-size: auto 255px;
  }
  .ctbc-retirement .ca-b .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  .ctbc-retirement .ca-b .grid-left {
    width: calc(100% - 455px);
    padding-left: 75px;
  }
  .ctbc-retirement .ca-b .grid-right {
    width: 455px;
  }
  .ctbc-retirement .ca-b .content {
    padding: 30px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 70px;
  }
  .ctbc-retirement .ca-b .main-text {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .ca-b .sub-text {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    max-width: 350px;
  }
  .ctbc-retirement .ca-b .swiper-slide-active .grid {
    opacity: 1;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .ctbc-retirement .ca-b .gallery-top .swiper-wrapper {
    transition-duration: 0ms !important;
  }
  .ctbc-retirement .ca-b .gallery-thumbs {
    position: absolute;
    bottom: 0;
    right: 65px;
    max-width: 312px;
    margin: 0 30px;
  }
  .ctbc-retirement .ca-b .swiper-button-group {
    position: absolute;
    bottom: 0;
    right: 65px;
    width: 100%;
    max-width: 372px;
    pointer-events: none;
  }
  .ctbc-retirement .ca-b .swiper-button-group .swiper-button-prev,
  .ctbc-retirement .ca-b .swiper-button-group .swiper-button-next {
    pointer-events: auto;
  }
  .ctbc-retirement .ca-b .swiper-button-disabled {
    display: none;
  }
}
@media (min-width: 751px) and (max-width: 1140px) {
  .ctbc-retirement .ca-b .grid-left {
    padding-left: 0;
  }
}
.ctbc-retirement .cc-section {
  position: relative;
  z-index: 0;
  font-size: 18px;
  line-height: 30px;
}
.ctbc-retirement .cc-section.fadeInUp {
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.ctbc-retirement .cc-section .section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ctbc-retirement .cc-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ctbc-retirement .cc-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ctbc-retirement .cc-section .container {
  max-width: 375px;
  margin: 0 auto;
}
.ctbc-retirement .cc-a {
  padding-top: 30px;
  padding-bottom: 40px;
  background-image: url(../images/cc-a-bg_s.png);
  background-size: cover;
}
.ctbc-retirement .cc-a .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cc-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.ctbc-retirement .cc-a .section-header .main-text:before {
  content: "";
  position: absolute;
  top: 60%;
  left: 61%;
  background-image: url(../images/index-header_s.png);
  width: 74px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.ctbc-retirement .cc-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cc-a .text {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
  max-width: 320px;
  margin: 0 auto 10px;
  text-align: justify;
}
.ctbc-retirement .cc-c {
  margin-top: 65px;
}
.ctbc-retirement .cc-c .section-header {
  margin-bottom: 30px;
}
.ctbc-retirement .cc-c .section-header .main-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cc-c .item {
  max-width: 320px;
  margin: 0 auto;
}
.ctbc-retirement .cc-c .item + .item {
  margin-top: 20px;
}
.ctbc-retirement .cc-c .item .image {
  width: 186px;
  margin: 0 auto 10px;
}
.ctbc-retirement .cc-c .item .main-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #ff9600;
  text-align: center;
  margin: 0 auto 10px;
}
.ctbc-retirement .cc-c .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cc-c .item-2 .main-text {
  color: #e85d00;
}
.ctbc-retirement .cc-c .item-3 .main-text {
  color: #198a8a;
}
.ctbc-retirement .cc-d {
  margin-top: 65px;
  padding-top: 35px;
  padding-bottom: 80px;
  background-image: url(../images/cc-d-bg_s.png);
  background-size: cover;
}
.ctbc-retirement .cc-d .container {
  max-width: 320px;
  margin: 0 auto;
}
.ctbc-retirement .cc-d .section-header {
  margin-bottom: 10px;
}
.ctbc-retirement .cc-d .section-header .main-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cc-d .text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
}
.ctbc-retirement .cc-d .action {
  margin-top: 25px;
}

@media (min-width: 751px) {
  .ctbc-retirement .cc-section .container {
    max-width: 1110px;
  }
  .ctbc-retirement .cc-a {
    padding-top: 45px;
    padding-bottom: 60px;
    background-image: url(../images/cc-a-bg.png);
  }
  .ctbc-retirement .cc-a .section-header .main-text:before {
    top: 60%;
    left: calc(50% + 55px);
    background-image: url(../images/index-header.png);
    width: 84px;
    height: 28px;
  }
  .ctbc-retirement .cc-a .section-header .sub-text {
    font-size: 28px;
  }
  .ctbc-retirement .cc-a .text {
    font-size: 18px;
    line-height: 30px;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
  }
  .ctbc-retirement .cc-a .text span {
    display: block;
  }
  .ctbc-retirement .cc-c {
    margin-top: 45px;
  }
  .ctbc-retirement .cc-c .section-header {
    margin-bottom: 40px;
  }
  .ctbc-retirement .cc-c .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cc-c .section-content {
    max-width: 1060px;
    margin: 0 auto;
  }
  .ctbc-retirement .cc-c .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    margin: 0 -15px;
  }
  .ctbc-retirement .cc-c .item {
    width: calc(100% / 3 - 15px * 2);
    max-width: inherit;
    margin: 0 15px;
  }
  .ctbc-retirement .cc-c .item + .item {
    margin-top: 0;
  }
  .ctbc-retirement .cc-c .item .image {
    margin: 0 auto 8px;
  }
  .ctbc-retirement .cc-c .item .main-text {
    margin: 0 auto 8px;
  }
  .ctbc-retirement .cc-c .item .sub-text {
    font-size: 18px;
    line-height: 30px;
  }
  .ctbc-retirement .cc-d {
    margin-top: 95px;
    padding-top: 70px;
    padding-bottom: 95px;
    background-image: url(../images/cc-d-bg.png);
  }
  .ctbc-retirement .cc-d .container {
    max-width: 1110px;
  }
  .ctbc-retirement .cc-d .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cc-d .text {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
  }
  .ctbc-retirement .cc-d .action {
    margin-top: 30px;
  }
  .ctbc-retirement .cc-d .btn {
    max-width: 320px;
    margin: 0 auto;
  }
}
.tooltip-inner {
  background-color: #70d7d6 !important;
  opacity: 1 !important;
  box-shadow: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  padding: 10px;
  text-align: left;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #70d7d6 !important;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: #70d7d6 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #70d7d6 !important;
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: #70d7d6 !important;
}

.ctbc-retirement.plus-sticky-bottom {
  padding-bottom: 75px;
}
.ctbc-retirement .cd-section {
  position: relative;
  font-size: 16px;
  line-height: 24px;
}
.ctbc-retirement .cd-section.fadeInUp {
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.ctbc-retirement .cd-section .section-anchor {
  position: absolute;
  top: -56px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ctbc-retirement .cd-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ctbc-retirement .cd-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ctbc-retirement .cd-section .container {
  max-width: 375px;
  padding: 0;
}
.ctbc-retirement .tabs-menu {
  position: relative;
  z-index: 100;
}
.ctbc-retirement .tabs-menu.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f7f0;
  padding: 12px 0 16px;
  box-shadow: 0 -10px 10px rgba(12, 109, 109, 0.25);
}
.ctbc-retirement .tabs-menu.sticky .nav-pills {
  margin-bottom: 0;
}
.ctbc-retirement .tabs-menu.sticky .nav-link:before {
  display: none;
}
.ctbc-retirement .tabs-menu .nav-pills {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}
.ctbc-retirement .tabs-menu .nav-item {
  width: 77px;
  margin: 0 5px;
  max-width: 77px;
}
.ctbc-retirement .tabs-menu .nav-link {
  color: #b9b9b9;
  background-color: #e6e6e6;
  height: 47px;
  font-size: 24px;
  line-height: 47px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  position: relative;
  box-shadow: 5px 5px 0 0 #cacaca;
}
.ctbc-retirement .tabs-menu .nav-link:before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: calc(50% - 12px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #6ebd83 transparent transparent transparent;
  opacity: 0;
}
.ctbc-retirement .tabs-menu .nav-link.active {
  color: #198a8a;
  background-color: #c5eab9;
  box-shadow: 5px 5px 0 0 #6ebd83;
}
.ctbc-retirement .tabs-menu .nav-link.active:before {
  opacity: 1;
}
.ctbc-retirement .cd-a {
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}
.ctbc-retirement .cd-a .section-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ctbc-retirement .cd-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd-a .section-header br {
  display: block;
}
.ctbc-retirement .cd-a .section-header .lg-view {
  display: none;
}
.ctbc-retirement .cd-a .block-1 {
  position: relative;
  padding: 20px 0 35px;
}
.ctbc-retirement .cd-a .block-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100vw / 2);
  width: 100vw;
  height: calc(100% + 300px);
  background-image: url(../images/cd-a-bg_s.png);
  background-size: cover;
  z-index: -1;
}
.ctbc-retirement .cd-a .block-1 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 15px;
}
.ctbc-retirement .cd-a .block-2 {
  margin-top: 50px;
}
.ctbc-retirement .cd-a .block-2 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 15px;
}
.ctbc-retirement .cd-a .block-2 .sub-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 25px;
  margin-bottom: 40px;
}
.ctbc-retirement .cd-a .block-2 .image + .image {
  margin-top: 10px;
}
.ctbc-retirement .cd-a .block-2 .note-text {
  padding: 0 0 40px;
  border-bottom: 1px solid #bcbcbc;
  margin: 15px 25px 0;
}
.ctbc-retirement .cd-a .block-2 .note-text p + p {
  margin-top: 10px;
}
.ctbc-retirement .cd-a .block-3 {
  margin-top: 36px;
}
.ctbc-retirement .cd-a .block-3 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd-a .block-3 .sub-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 25px;
}
.ctbc-retirement .cd-b {
  padding-top: 30px;
  padding-bottom: 64px;
  background-color: #e5faeb;
}
.ctbc-retirement .cd-b .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #6ebd83;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-b .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  max-width: 300px;
  margin: 0 auto 40px;
}
.ctbc-retirement .cd-b .highlight {
  color: #32aaaa;
}
.ctbc-retirement .cd-b .cd-b-swiper .swiper-slide .item {
  opacity: 0;
}
.ctbc-retirement .cd-b .cd-b-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd-b .cd-b-swiper .swiper-button-prev,
.ctbc-retirement .cd-b .cd-b-swiper .swiper-button-next {
  width: 25px;
  height: 88px;
  margin-top: -44px;
}
.ctbc-retirement .cd-b .cd-b-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev2_s.png);
}
.ctbc-retirement .cd-b .cd-b-swiper .swiper-button-next {
  background-image: url(../images/swiper-next2_s.png);
}
.ctbc-retirement .cd-c {
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}
.ctbc-retirement .cd-c .section-header {
  max-width: 325px;
  margin: 0 auto 25px;
}
.ctbc-retirement .cd-c .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-c .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
}
.ctbc-retirement .cd-c .section-content {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd-c .tabs-menu {
  position: sticky;
  top: 66px;
}
.ctbc-retirement .cd-c .tabs-menu .nav-pills {
  margin-bottom: 40px;
}
.ctbc-retirement .cd-c .tabs-menu .nav-item {
  width: 152px;
  margin: 0 8px;
  max-width: 152px;
}
.ctbc-retirement .cd-c .tabs-menu .nav-link {
  color: #b9b9b9;
  background-color: #e6e6e6;
  height: 48px;
  font-size: 24px;
  line-height: 48px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  position: relative;
  box-shadow: 5px 5px 0 0 #cacaca;
}
.ctbc-retirement .cd-c .tabs-menu .nav-link:before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: calc(50% - 12px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #6ebd83 transparent transparent transparent;
  opacity: 0;
}
.ctbc-retirement .cd-c .tabs-menu .nav-link.active {
  color: #198a8a;
  background-color: #c5eab9;
  box-shadow: 5px 5px 0 0 #6ebd83;
}
.ctbc-retirement .cd-c .tabs-menu .nav-link.active:before {
  opacity: 1;
}
.ctbc-retirement .cd-c .block + .block {
  margin-top: 40px;
}
.ctbc-retirement .cd-c .block-header {
  max-width: 325px;
  margin: 0 auto 25px;
  text-align: center;
}
.ctbc-retirement .cd-c .block-header .top-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #e39e3b;
}
.ctbc-retirement .cd-c .block-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
}
.ctbc-retirement .cd-c .action {
  margin-top: 40px;
}
.ctbc-retirement .cd-d {
  padding-top: 35px;
  padding-bottom: 50px;
  background-color: #e5faeb;
  overflow: hidden;
}
.ctbc-retirement .cd-d .section-header {
  margin: 0 auto 35px;
}
.ctbc-retirement .cd-d .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd-d .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd-d .section-header .highlight {
  color: #0c6d6d;
}
.ctbc-retirement .cd-d .block-1 {
  max-width: 325px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}
.ctbc-retirement .cd-d .block-1 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 0 -6px;
}
.ctbc-retirement .cd-d .block-1 .group .item {
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  width: calc(50% - 6px * 2);
  margin: 0 6px;
  overflow: hidden;
}
.ctbc-retirement .cd-d .block-1 .group .item-header {
  background-color: #188a8a;
  color: #fff;
}
.ctbc-retirement .cd-d .block-1 .group .item-content {
  background-color: #fff;
  padding: 10px 0;
}
.ctbc-retirement .cd-d .block-1 .bottom {
  background-color: #e39d3b;
  color: #fff;
  text-align: center;
  margin-top: 15px;
  padding: 18px 0;
  border-radius: 5px;
}
.ctbc-retirement .cd-d .block-2 {
  max-width: 325px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 36px;
}
.ctbc-retirement .cd-d .block-2 .top-text {
  margin-bottom: 15px;
}
.ctbc-retirement .cd-d .block-2 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd-d .block-2 .group .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d .block-2 .group .item .color-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 12px;
}
.ctbc-retirement .cd-d .block-2 .group .item .color-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd-d .block-2 .group .item .color-2 {
  background-color: #32aaaa;
}
.ctbc-retirement .cd-d .block-2 .group .item .color-3 {
  background-color: #006363;
}
.ctbc-retirement .cd-d .block-2 .group .item + .item {
  margin-left: 10px;
}
.ctbc-retirement .cd-d .block-2 .scroll-box {
  width: calc(100% + 25px * 2);
  overflow: auto;
  padding: 10px 25px;
  margin-left: -25px;
  margin-bottom: 25px;
}
.ctbc-retirement .cd-d .block-2 .box {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  width: 720px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  font-weight: 700;
}
.ctbc-retirement .cd-d .block-2 .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d .block-2 .box-row + .box-row {
  margin-top: 15px;
}
.ctbc-retirement .cd-d .block-2 .box-row__header {
  font-size: 18px;
  color: #198a8a;
  width: 90px;
}
.ctbc-retirement .cd-d .block-2 .box-row__content {
  width: calc(100% - 90px);
  position: relative;
  min-height: 14px;
}
.ctbc-retirement .cd-d .block-2 .box-row__line {
  height: 14px;
  border-radius: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 545px;
}
.ctbc-retirement .cd-d .block-2 .box .line-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd-d .block-2 .box .line-2 {
  background-color: #32aaaa;
  z-index: 1;
}
.ctbc-retirement .cd-d .block-2 .box .line-3 {
  background-color: #006363;
}
.ctbc-retirement .cd-d .block-2 .box .bottom {
  margin-top: 20px;
}
.ctbc-retirement .cd-d .block-2 .box .bottom .box-row__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d .block-2 .box .bottom .text {
  width: 10%;
  text-align: center;
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ctbc-retirement .cd-d .block-2 .box .bottom .text:before {
  content: "";
  position: absolute;
  top: -7px;
  left: calc(50% - 1px);
  width: 2px;
  height: 7px;
  background-color: #999;
}
.ctbc-retirement .cd-d .block-2 .text2 {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  border-radius: 10px;
  border: 1px solid #32aaaa;
  padding: 15px;
}
.ctbc-retirement .cd-d .block-2 .text2 .highlight {
  color: #0c6d6d;
}
.ctbc-retirement .cd-d .block-2 .text2 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 1.25em;
}
.ctbc-retirement .cd-d .block-2 .text2 .list li {
  width: 100%;
}
.ctbc-retirement .cd-d .block-3 {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd-d .block-3 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 0 -6px;
  padding-top: 36px;
}
.ctbc-retirement .cd-d .block-3 .btn {
  width: calc(50% - 6px * 2);
  margin: 0 6px;
  background-color: #c4eab9;
  line-height: 30px;
  height: 74px;
  padding: 7px 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #198a8a;
  box-shadow: 5px 5px 0 0 #6ebe83;
  position: relative;
}
.ctbc-retirement .cd-d .block-3 .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .cd-d .block-3 .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .cd-d .block-3 .image {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -32px;
  left: calc(50% - 48px / 2);
  background-color: #c4eab9;
  border-radius: 50%;
}
.ctbc-retirement .cd-d .block-3 .image img {
  position: relative;
  top: -4px;
}
.ctbc-retirement .cd-d .block-3 .main-text {
  position: relative;
}
.ctbc-retirement .cd-d .block-3 .btn-2 {
  color: #d07b00;
  background-color: #ffe0b2;
  box-shadow: 5px 5px 0 0 #e39d3b;
}
.ctbc-retirement .cd-d .block-3 .btn-2 .image {
  background-color: #ffe0b2;
}
.ctbc-retirement .cd-d2 {
  padding-top: 35px;
  padding-bottom: 50px;
  background-color: #e5faeb;
  overflow: hidden;
}
.ctbc-retirement .cd-d2 .section-header {
  margin: 0 auto 35px;
}
.ctbc-retirement .cd-d2 .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd-d2 .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 0 25px;
}
.ctbc-retirement .cd-d2 .section-header .highlight {
  color: #0c6d6d;
}
.ctbc-retirement .cd-d2 .block-1 {
  max-width: 325px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}
.ctbc-retirement .cd-d2 .block-1 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 0 -6px;
}
.ctbc-retirement .cd-d2 .block-1 .group .item {
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  width: calc(50% - 6px * 2);
  margin: 0 6px;
  overflow: hidden;
}
.ctbc-retirement .cd-d2 .block-1 .group .item-header {
  background-color: #188a8a;
  color: #fff;
}
.ctbc-retirement .cd-d2 .block-1 .group .item-content {
  background-color: #fff;
  padding: 10px 0;
}
.ctbc-retirement .cd-d2 .block-1 .bottom {
  background-color: #e39d3b;
  color: #fff;
  text-align: center;
  margin-top: 15px;
  padding: 18px 0;
  border-radius: 5px;
}
.ctbc-retirement .cd-d2 .block-2 {
  max-width: 325px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 36px;
}
.ctbc-retirement .cd-d2 .block-2 .top-text {
  margin-bottom: 15px;
}
.ctbc-retirement .cd-d2 .block-2 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd-d2 .block-2 .group .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d2 .block-2 .group .item .color-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 12px;
}
.ctbc-retirement .cd-d2 .block-2 .group .item .color-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd-d2 .block-2 .group .item .color-2 {
  background-color: #32aaaa;
}
.ctbc-retirement .cd-d2 .block-2 .group .item .color-3 {
  background-color: #006363;
}
.ctbc-retirement .cd-d2 .block-2 .group .item + .item {
  margin-left: 10px;
}
.ctbc-retirement .cd-d2 .block-2 .scroll-box {
  width: calc(100% + 25px * 2);
  overflow: auto;
  padding: 10px 25px;
  margin-left: -25px;
  margin-bottom: 25px;
}
.ctbc-retirement .cd-d2 .block-2 .box {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  width: 720px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  font-weight: 700;
}
.ctbc-retirement .cd-d2 .block-2 .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d2 .block-2 .box-row + .box-row {
  margin-top: 15px;
}
.ctbc-retirement .cd-d2 .block-2 .box-row__header {
  font-size: 18px;
  color: #198a8a;
  width: 90px;
}
.ctbc-retirement .cd-d2 .block-2 .box-row__content {
  width: calc(100% - 90px);
  position: relative;
  min-height: 14px;
}
.ctbc-retirement .cd-d2 .block-2 .box-row__line {
  height: 14px;
  border-radius: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 545px;
}
.ctbc-retirement .cd-d2 .block-2 .box .line-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd-d2 .block-2 .box .line-2 {
  background-color: #32aaaa;
  z-index: 1;
}
.ctbc-retirement .cd-d2 .block-2 .box .line-3 {
  background-color: #006363;
}
.ctbc-retirement .cd-d2 .block-2 .box .bottom {
  margin-top: 20px;
}
.ctbc-retirement .cd-d2 .block-2 .box .bottom .box-row__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd-d2 .block-2 .box .bottom .text {
  width: 10%;
  text-align: center;
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ctbc-retirement .cd-d2 .block-2 .box .bottom .text:before {
  content: "";
  position: absolute;
  top: -7px;
  left: calc(50% - 1px);
  width: 2px;
  height: 7px;
  background-color: #999;
}
.ctbc-retirement .cd-d2 .block-2 .text2 {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #32aaaa;
  padding: 15px;
}
.ctbc-retirement .cd-d2 .block-2 .text2 .highlight {
  color: #0c6d6d;
}
.ctbc-retirement .cd-d2 .block-2 .text2 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 1.25em;
}
.ctbc-retirement .cd-d2 .block-2 .text2 .list li {
  width: 100%;
}
.ctbc-retirement .cd-d2 .block-3 {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd-d2 .block-3 .group {
  margin: 0;
  padding-top: 36px;
}
.ctbc-retirement .cd-d2 .block-3 .btn {
  width: 100%;
  margin: 0;
  background-color: #c4eab9;
  padding: 20px 24px 16px;
  border: 0;
  border-radius: 0;
  width: 100%;
  color: #198a8a;
  font-weight: 700;
  box-shadow: 5px 5px 0 0 #6ebe83;
  position: relative;
  cursor: default;
}
.ctbc-retirement .cd-d2 .block-3 .btn + .btn {
  margin-top: 56px;
}
.ctbc-retirement .cd-d2 .block-3 .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .cd-d2 .block-3 .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .cd-d2 .block-3 .image {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -32px;
  left: calc(50% - 48px / 2);
  background-color: #c4eab9;
  border-radius: 50%;
}
.ctbc-retirement .cd-d2 .block-3 .image img {
  position: relative;
  top: -4px;
}
.ctbc-retirement .cd-d2 .block-3 .main-text {
  position: relative;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 12px;
}
.ctbc-retirement .cd-d2 .block-3 .sub-text {
  font-size: 14px;
  line-height: 24px;
  color: #000;
  text-align: justify;
  margin-bottom: 14px;
  min-height: 112px;
  border-bottom: 1px solid #198a8a;
}
.ctbc-retirement .cd-d2 .block-3 .link {
  font-size: 24px;
  line-height: 26px;
  color: #198a8a;
}
.ctbc-retirement .cd-d2 .block-3 .btn-2 {
  color: #d07b00;
  background-color: #ffe0b2;
  box-shadow: 5px 5px 0 0 #e39d3b;
}
.ctbc-retirement .cd-d2 .block-3 .btn-2 .image {
  background-color: #ffe0b2;
}
.ctbc-retirement .cd-d2 .block-3 .btn-2 .sub-text {
  border-bottom: 1px solid #ce7900;
}
.ctbc-retirement .cd-d2 .block-3 .btn-2 .link {
  color: #d07b00;
}
.ctbc-retirement .cd-e {
  padding-top: 45px;
  padding-bottom: 56px;
  overflow: hidden;
}
.ctbc-retirement .cd-e .section-header {
  max-width: 325px;
  margin: 0 auto 35px;
}
.ctbc-retirement .cd-e .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-e .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  letter-spacing: -.025em;
}
.ctbc-retirement .cd-e .block + .block {
  margin-top: 70px;
}
.ctbc-retirement .cd-e .block .image {
  margin-bottom: 35px;
}
.ctbc-retirement .cd-e .block .block-header .main-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #6ebd83;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd-e .block .block-header .sub-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 45px;
}
.ctbc-retirement .cd-e .block-1 .cd-e-swiper .item {
  min-height: 285px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.ctbc-retirement .cd-e .block-1 .cd-e-swiper .action {
  margin-top: auto;
}
.ctbc-retirement .cd-e .block-2 .cd-e-swiper .item .main-text img {
  width: 120px;
  margin: 0 auto;
}
.ctbc-retirement .cd-e .cd-e-swiper {
  overflow: visible;
  padding: 0 25px;
}
.ctbc-retirement .cd-e .cd-e-swiper .swiper-slide {
  width: 278px;
  padding: 0 8px;
}
.ctbc-retirement .cd-e .cd-e-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd-e .cd-e-swiper .item {
  max-width: 262px;
  margin: 0 auto;
  background-color: #e5faeb;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  padding: 10px 15px 20px;
  min-height: 224px;
  opacity: .7;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #198a8a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .main-text img {
  width: 50px;
  margin-right: 10px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  padding: 0 15px;
  margin-bottom: 0;
  min-height: 100px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .btn-a {
  line-height: 38px;
  height: 38px;
  font-size: 20px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .btn-a + .btn-a {
  margin-top: 14px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .icon-send {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-left: -15px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .icon-web {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-left: -15px;
}
.ctbc-retirement .cd-e .cd-e-swiper .item .icon-download {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-left: -15px;
}
.ctbc-retirement .cd-e .cd-e-swiper .swiper-button-prev,
.ctbc-retirement .cd-e .cd-e-swiper .swiper-button-next {
  width: 36px;
  height: 36px;
  margin-top: -18px;
}
.ctbc-retirement .cd-e .cd-e-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev3_s.png);
  left: 10px;
}
.ctbc-retirement .cd-e .cd-e-swiper .swiper-button-next {
  background-image: url(../images/swiper-next3_s.png);
  right: 10px;
}
.ctbc-retirement .cd-e .note-text {
  padding: 0 25px;
  margin-top: 20px;
  text-align: center;
}
.ctbc-retirement .cd-f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e5faeb;
}
.ctbc-retirement .cd-f .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cd-f .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd-f .cd-f-swiper .item {
  max-width: 288px;
  margin: 0 auto;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd-f .cd-f-swiper .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .group .category {
  margin-right: 10px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .group .counts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .group .icon-view {
  background-image: url(../images/icon-view.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  margin-bottom: 8px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #198a8a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd-f .cd-f-swiper .item .icon-more {
  background-image: url(../images/icon-plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd-f .cd-f-swiper .swiper-slide .item {
  opacity: 0;
}
.ctbc-retirement .cd-f .cd-f-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd-f .cd-f-swiper .swiper-button-prev,
.ctbc-retirement .cd-f .cd-f-swiper .swiper-button-next {
  width: 25px;
  height: 88px;
  margin-top: -44px;
}
.ctbc-retirement .cd-f .cd-f-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev2_s.png);
}
.ctbc-retirement .cd-f .cd-f-swiper .swiper-button-next {
  background-image: url(../images/swiper-next2_s.png);
}
.ctbc-retirement .cd-g {
  padding-top: 70px;
  padding-bottom: 35px;
}
.ctbc-retirement .cd-g .block + .block {
  margin-top: 70px;
}
.ctbc-retirement .cd-g .block .block-header .main-text {
  font-size: 28px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd-g .block-1 .block-header {
  margin-bottom: 30px;
}
.ctbc-retirement .cd-g .block-1 .list {
  max-width: 330px;
  margin: 0 auto;
}
.ctbc-retirement .cd-g .block-1 .item {
  width: 100%;
  margin: 0;
  border: 2px solid #198a8a;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  min-height: 332px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.ctbc-retirement .cd-g .block-1 .item + .item {
  margin-top: 25px;
}
.ctbc-retirement .cd-g .block-1 .item .main-text {
  font-size: 24px;
  line-height: 36px;
  color: #0c6d6d;
  font-weight: 700;
  margin-bottom: 15px;
}
.ctbc-retirement .cd-g .block-1 .item .image {
  max-width: 230px;
  margin: 0 auto;
}
.ctbc-retirement .cd-g .block-1 .item:active {
  background-color: #e5faeb;
  top: -16px;
}
@media (hover: hover) {
  .ctbc-retirement .cd-g .block-1 .item:hover {
    background-color: #e5faeb;
    top: -16px;
  }
}
.ctbc-retirement .cd-g .block-2 .block-header {
  margin: 0 auto 60px;
}
.ctbc-retirement .cd-g .block-2 .list {
  max-width: 222px;
  margin: 0 auto;
}
.ctbc-retirement .cd-g .block-2 .item {
  position: relative;
  width: 100%;
  margin: 0;
  background-color: #e5faeb;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  padding: 34px 0 10px;
}
.ctbc-retirement .cd-g .block-2 .item + .item {
  margin-top: 40px;
}
.ctbc-retirement .cd-g .block-2 .item .main-text {
  position: absolute;
  top: -17px;
  left: calc(50% - 134px / 2);
  background-color: #198a8a;
  width: 134px;
  font-size: 24px;
  line-height: 44px;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}
.ctbc-retirement .cd-g .block-2 .item .image {
  max-width: 180px;
  margin: 0 auto;
}
.ctbc-retirement .cd-g .block-2 .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 5px;
}
.ctbc-retirement .cd-g .note-text {
  margin-top: 20px;
  text-align: center;
}
.ctbc-retirement .cd2-a {
  padding-top: 30px;
  padding-bottom: 55px;
  overflow: hidden;
}
.ctbc-retirement .cd2-a .section-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ctbc-retirement .cd2-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd2-a .section-header br {
  display: block;
}
.ctbc-retirement .cd2-a .section-header .lg-view {
  display: none;
}
.ctbc-retirement .cd2-a .block-1 {
  position: relative;
  padding: 20px 0 35px;
  margin-bottom: 40px;
}
.ctbc-retirement .cd2-a .block-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100vw / 2);
  width: 100vw;
  height: calc(100% + 300px);
  background-image: url(../images/cd-a-bg_s.png);
  background-size: cover;
  z-index: -1;
}
.ctbc-retirement .cd2-a .block-1 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 15px;
}
.ctbc-retirement .cd2-a .block-2 {
  margin-top: 25px;
}
.ctbc-retirement .cd2-a .block-2 .number {
  background-color: #c4eab9;
  color: #67bd80;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}
.ctbc-retirement .cd2-a .block-2 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-a .block-2 .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  padding: 0 25px;
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-a .block-2 .image {
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-a .block-2 .text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  padding: 0 25px;
}
.ctbc-retirement .cd2-a .block-2 .note-text {
  font-weight: 500;
  padding: 0 25px;
  margin-top: 5px;
}
.ctbc-retirement .cd2-a .block-3 {
  border-top: 1px solid #bbb;
  max-width: 325px;
  margin: 0 auto;
  margin-top: 50px;
  padding-top: 35px;
}
.ctbc-retirement .cd2-a .block-3 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 15px;
}
.ctbc-retirement .cd2-a .block-3 .sub-text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -.05em;
  margin-bottom: 32px;
}
.ctbc-retirement .cd2-a .block-3 .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  max-width: 287px;
  margin: 0 auto;
  position: relative;
  padding-left: 45px;
  min-height: 92px;
}
.ctbc-retirement .cd2-a .block-3 .info + .info {
  margin-top: 12px;
}
.ctbc-retirement .cd2-a .block-3 .info-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 100%;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-a .block-3 .info-content {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 15px 10px 10px;
  text-align: justify;
}
.ctbc-retirement .cd2-a .block-3 .info-1 .info-header {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-a .block-3 .info-2 .info-header {
  background-color: #e85d00;
  padding: 15px 0;
}
.ctbc-retirement .cd2-a .block-3 .info-3 .info-header {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-b {
  background-color: #e5faeb;
  padding-top: 25px;
  padding-bottom: 50px;
  overflow: hidden;
}
.ctbc-retirement .cd2-b .cd2-b-swiper {
  overflow: visible;
}
.ctbc-retirement .cd2-b .cd2-b-swiper .swiper-slide .box {
  opacity: 0;
}
.ctbc-retirement .cd2-b .cd2-b-swiper .swiper-slide-active .box {
  opacity: 1;
}
.ctbc-retirement .cd2-b .box {
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  max-width: 325px;
  margin: 0 auto;
  margin-top: 48px;
}
.ctbc-retirement .cd2-b .box-header {
  background-color: #6ebe83;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  position: relative;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}
.ctbc-retirement .cd2-b .box-header .image {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 126px;
}
.ctbc-retirement .cd2-b .box-header .top-text {
  font-size: 15px;
  line-height: 24px;
}
.ctbc-retirement .cd2-b .box-content {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
.ctbc-retirement .cd2-b .text {
  padding: 16px;
}
.ctbc-retirement .cd2-b .text + .text {
  border-top: 1px solid #d3d3d3;
}
.ctbc-retirement .cd2-b .text .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd2-b .text .sub-text {
  font-weight: 700;
  text-align: justify;
}
.ctbc-retirement .cd2-b .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -6px;
}
.ctbc-retirement .cd2-b .list .item {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #ff9600;
  width: calc(100% / 2 - 6px * 2);
  margin: 6px;
  padding: 4px;
}
.ctbc-retirement .cd2-b .list .bg-2 {
  background-color: #e85d00;
}
.ctbc-retirement .cd2-b .list .bg-3 {
  background-color: #198a8a;
}
.ctbc-retirement .cd2-b .box-4 .box-header .image {
  right: -10px;
}
.ctbc-retirement .cd2-b .notice {
  max-width: 325px;
  margin: 0 auto;
  margin-top: 45px;
  padding: 12px 16px 20px;
  background-color: #fff;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
  border-radius: 5px;
  position: relative;
}
.ctbc-retirement .cd2-b .notice .image {
  position: absolute;
  top: -29px;
  left: calc(50% - 48px / 2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
}
.ctbc-retirement .cd2-b .notice .main-text {
  font-size: 24px;
  line-height: 41px;
  font-weight: 700;
  color: #6ebd83;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd2-b .notice .sub-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: justify;
}
.ctbc-retirement .cd2-c {
  padding-top: 48px;
  padding-bottom: 40px;
}
.ctbc-retirement .cd2-c .tabs-menu {
  position: sticky;
  top: 66px;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-pills {
  margin-bottom: 40px;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-item {
  width: 60px;
  margin: 0 4px;
  max-width: 60px;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-link {
  color: #b9b9b9;
  background-color: #e6e6e6;
  height: 58px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 4px 0;
  border-radius: 0;
  position: relative;
  box-shadow: 5px 5px 0 0 #cacaca;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-link:before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: calc(50% - 12px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #6ebd83 transparent transparent transparent;
  opacity: 0;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-link.active {
  color: #198a8a;
  background-color: #c5eab9;
  box-shadow: 5px 5px 0 0 #6ebd83;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-link.active:before {
  opacity: 1;
}
.ctbc-retirement .cd2-c .tabs-menu .nav-link.active .icon {
  filter: grayscale(0);
  opacity: 1;
}
.ctbc-retirement .cd2-c .tabs-menu .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: .5;
}
.ctbc-retirement .cd2-c .tabs-menu .icon-1 {
  background-image: url(../images/cd2-4-1_s.png);
}
.ctbc-retirement .cd2-c .tabs-menu .icon-2 {
  background-image: url(../images/cd2-4-2_s.png);
}
.ctbc-retirement .cd2-c .tabs-menu .icon-3 {
  background-image: url(../images/cd2-4-3_s.png);
}
.ctbc-retirement .cd2-c .tabs-menu .icon-4 {
  background-image: url(../images/cd2-4-4_s.png);
}
.ctbc-retirement .cd2-c .tabs-menu .icon-5 {
  background-image: url(../images/cd2-4-5_s.png);
}
.ctbc-retirement .cd2-c .box {
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  max-width: 325px;
  margin: 0 auto;
  margin-top: 48px;
}
.ctbc-retirement .cd2-c .box-header {
  background-color: #198a8a;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  position: relative;
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}
.ctbc-retirement .cd2-c .box-content {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
.ctbc-retirement .cd2-c .box-2 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -6px;
}
.ctbc-retirement .cd2-c .box-2 .item {
  width: calc(100% / 2 - 6px * 2);
  margin: 0 6px;
}
.ctbc-retirement .cd2-c .box-2 .item .hd {
  background-color: #ff9600;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-c .box-2 .item-2 .hd {
  background-color: #e85d00;
}
.ctbc-retirement .cd2-c .box-2 .item .bd {
  max-width: 140px;
  margin: 0 auto;
}
.ctbc-retirement .cd2-c .box-3 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
.ctbc-retirement .cd2-c .box-3 .item + .item {
  margin-top: 24px;
}
.ctbc-retirement .cd2-c .box-3 .item-left {
  width: 80px;
}
.ctbc-retirement .cd2-c .box-3 .item-left img {
  width: 30px;
  margin: 0 auto;
}
.ctbc-retirement .cd2-c .box-3 .item-right {
  width: calc(100% - 80px);
  padding-left: 14px;
}
.ctbc-retirement .cd2-c .box-3 .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  background-color: #ff9600;
  color: #fff;
  font-size: 24px;
  line-height: 80px;
  text-align: center;
}
.ctbc-retirement .cd2-c .box-3 .text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-c .box-3 .text2 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: justify;
}
.ctbc-retirement .cd2-c .box-3 .item-1 .circle {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-c .box-3 .item-1 .text {
  color: #ff9600;
}
.ctbc-retirement .cd2-c .box-3 .item-2 .circle {
  background-color: #e85d00;
}
.ctbc-retirement .cd2-c .box-3 .item-2 .text {
  color: #e85d00;
}
.ctbc-retirement .cd2-c .box-3 .item-3 .circle {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-c .box-3 .item-3 .text {
  color: #188a8a;
}
.ctbc-retirement .cd2-c .box-4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  padding-top: 34px;
  position: relative;
}
.ctbc-retirement .cd2-c .box-4 .item + .item {
  margin-top: 24px;
}
.ctbc-retirement .cd2-c .box-4 .item-left {
  width: 80px;
}
.ctbc-retirement .cd2-c .box-4 .item-right {
  width: calc(100% - 80px);
  padding-left: 14px;
}
.ctbc-retirement .cd2-c .box-4 .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ff9600;
  color: #fff;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  padding: 16px 0;
}
.ctbc-retirement .cd2-c .box-4 .text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.ctbc-retirement .cd2-c .box-4 .text img {
  margin-left: auto;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
}
.ctbc-retirement .cd2-c .box-4 .highlight {
  color: #000;
  padding-left: .25em;
}
.ctbc-retirement .cd2-c .box-4 .text2 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: justify;
}
.ctbc-retirement .cd2-c .box-4 .item-1 .circle {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-c .box-4 .item-1 .text {
  color: #ff9600;
}
.ctbc-retirement .cd2-c .box-4 .item-2 .circle {
  background-color: #e85d00;
}
.ctbc-retirement .cd2-c .box-4 .item-2 .text {
  color: #e85d00;
}
.ctbc-retirement .cd2-c .box-4 .item-3 .circle {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-c .box-4 .item-3 .text {
  color: #188a8a;
}
.ctbc-retirement .cd2-c .box-5 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.ctbc-retirement .cd2-c .box-5 .item {
  width: 80px;
  font-weight: 700;
}
.ctbc-retirement .cd2-c .box-5 .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ff9600;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  padding: 14px 0;
  margin-bottom: 12px;
}
.ctbc-retirement .cd2-c .box-5 .text-lg {
  font-size: 30px;
  line-height: 1;
}
.ctbc-retirement .cd2-c .box-5 .text {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.ctbc-retirement .cd2-c .box-5 .item-1 .circle {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-c .box-5 .item-1 .text {
  color: #bd6200;
}
.ctbc-retirement .cd2-c .box-5 .item-2 .circle {
  background-color: #e85d00;
}
.ctbc-retirement .cd2-c .box-5 .item-2 .text {
  color: #e85d00;
}
.ctbc-retirement .cd2-c .box-5 .item-3 .circle {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-c .box-5 .item-3 .text {
  color: #188a8a;
}
.ctbc-retirement .cd2-c .block {
  padding: 16px 14px;
}
.ctbc-retirement .cd2-c .block .main-text {
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  color: #6ebd83;
  text-align: center;
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-c .block .sub-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: justify;
}
.ctbc-retirement .cd2-c .block-2 {
  padding-top: 8px;
}
.ctbc-retirement .cd2-c .l-table {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd2-c .l-table td {
  border: 1px solid #bbb;
  padding: 15px 8px;
  text-align: justify;
}
.ctbc-retirement .cd2-c .l-table .hd {
  background-color: #ff9600;
  color: #fff;
  text-align: center;
  padding: 10px 8px;
}
.ctbc-retirement .cd2-c .l-table .hd-1 {
  background-color: #ff9600;
  border-color: #ff9600;
}
.ctbc-retirement .cd2-c .l-table .hd-2 {
  background-color: #e85d00;
  border-color: #e85d00;
}
.ctbc-retirement .cd2-c .l-table .hd-3 {
  background-color: #6ebe83;
  border-color: #6ebe83;
}
.ctbc-retirement .cd2-c .l-table .text-small {
  font-size: 13px;
  line-height: 18px;
}
.ctbc-retirement .cd2-c .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  max-width: 287px;
  margin: 0 auto;
  position: relative;
  padding-left: 45px;
  min-height: 60px;
}
.ctbc-retirement .cd2-c .info + .info {
  margin-top: 12px;
}
.ctbc-retirement .cd2-c .info-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 100%;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-c .info-content {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px;
}
.ctbc-retirement .cd2-c .info-1 .info-header {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-c .info-2 .info-header {
  background-color: #e85d00;
  padding: 15px 0;
}
.ctbc-retirement .cd2-c .info-3 .info-header {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-c .note-text {
  margin-top: 15px;
}
.ctbc-retirement .cd2-d {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #e5faeb;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
}
.ctbc-retirement .cd2-d .section-header {
  margin-bottom: 25px;
}
.ctbc-retirement .cd2-d .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-d .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  padding: 0 25px;
  margin-bottom: 20px;
  text-align: justify;
}
.ctbc-retirement .cd2-d .section-header .form-section {
  padding: 0 25px;
}
.ctbc-retirement .cd2-d .section-header .form-label {
  width: 85px;
  color: #198a8a;
}
.ctbc-retirement .cd2-d .section-header .form-content {
  width: calc(100% - 85px);
}
.ctbc-retirement .cd2-d .section-header .plus-text {
  padding-right: 28px;
}
.ctbc-retirement .cd2-d .section-header .plus-text .form-select {
  background-position: right 15px center;
}
.ctbc-retirement .cd2-d .section-header .plus-text .text {
  right: 0;
}
.ctbc-retirement .cd2-d .tabs-menu {
  position: sticky;
  top: 66px;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-pills {
  margin-bottom: 40px;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-item {
  width: 60px;
  margin: 0 4px;
  max-width: 60px;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-link {
  color: #b9b9b9;
  background-color: #e6e6e6;
  height: 58px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 4px 0;
  border-radius: 0;
  position: relative;
  box-shadow: 5px 5px 0 0 #cacaca;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-link:before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: calc(50% - 12px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #6ebd83 transparent transparent transparent;
  opacity: 0;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-link.active {
  color: #198a8a;
  background-color: #c5eab9;
  box-shadow: 5px 5px 0 0 #6ebd83;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-link.active:before {
  opacity: 1;
}
.ctbc-retirement .cd2-d .tabs-menu .nav-link.active .icon {
  filter: grayscale(0);
  opacity: 1;
}
.ctbc-retirement .cd2-d .tabs-menu .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: .5;
}
.ctbc-retirement .cd2-d .tabs-menu .icon-1 {
  background-image: url(../images/cd2-4-1_s.png);
}
.ctbc-retirement .cd2-d .tabs-menu .icon-2 {
  background-image: url(../images/cd2-4-2_s.png);
}
.ctbc-retirement .cd2-d .tabs-menu .icon-3 {
  background-image: url(../images/cd2-4-3_s.png);
}
.ctbc-retirement .cd2-d .tabs-menu .icon-4 {
  background-image: url(../images/cd2-4-4_s.png);
}
.ctbc-retirement .cd2-d .tabs-menu .icon-5 {
  background-image: url(../images/cd2-4-5_s.png);
}
.ctbc-retirement .cd2-d .tab-content {
  padding: 0 25px;
}
.ctbc-retirement .cd2-d .block + .block {
  margin-top: 40px;
}
.ctbc-retirement .cd2-d .block-header {
  max-width: 325px;
  margin: 0 auto 25px;
  text-align: center;
}
.ctbc-retirement .cd2-d .block-header .top-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #e39e3b;
}
.ctbc-retirement .cd2-d .block-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
}
.ctbc-retirement .cd2-d .action {
  margin-top: 20px;
}
.ctbc-retirement .cd2-e {
  padding-top: 35px;
  padding-bottom: 60px;
  overflow: hidden;
}
.ctbc-retirement .cd2-e .section-header {
  margin: 0 auto 15px;
}
.ctbc-retirement .cd2-e .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd2-e .section-header .sub-text {
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd2-e .section-header .text-small {
  font-size: 15px;
  line-height: 30px;
}
.ctbc-retirement .cd2-e .section-header .highlight {
  color: #198a8a;
}
.ctbc-retirement .cd2-e .block-1 {
  max-width: 325px;
  margin: 0 auto 25px;
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}
.ctbc-retirement .cd2-e .block-1 .main-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
  margin-bottom: 10px;
}
.ctbc-retirement .cd2-e .block-1 .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-e .block-1 .info {
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.ctbc-retirement .cd2-e .block-1 .info-header {
  background-color: #188a8a;
  color: #fff;
  text-align: center;
}
.ctbc-retirement .cd2-e .block-1 .info-content {
  background-color: #fff;
  padding: 10px 20px;
}
.ctbc-retirement .cd2-e .block-1 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 24px;
}
.ctbc-retirement .cd2-e .block-1 .item-left {
  width: 115px;
}
.ctbc-retirement .cd2-e .block-1 .item-right {
  width: calc(100% - 115px);
}
.ctbc-retirement .cd2-e .block-1 .item .highlight {
  color: #ff9600;
}
.ctbc-retirement .cd2-e .block-1 .item .text-small {
  font-size: 12px;
}
.ctbc-retirement .cd2-e .block-1 .note-text {
  margin-top: 10px;
  text-align: right;
}
.ctbc-retirement .cd2-e .block-2 {
  max-width: 325px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 36px;
}
.ctbc-retirement .cd2-e .block-2 .top-text {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ctbc-retirement .cd2-e .block-2 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd2-e .block-2 .group .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-e .block-2 .group .item .color-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 12px;
}
.ctbc-retirement .cd2-e .block-2 .group .item .color-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd2-e .block-2 .group .item .color-2 {
  background-color: #32aaaa;
}
.ctbc-retirement .cd2-e .block-2 .group .item .color-3 {
  background-color: #006363;
}
.ctbc-retirement .cd2-e .block-2 .group .item + .item {
  margin-left: 10px;
}
.ctbc-retirement .cd2-e .block-2 .scroll-box {
  width: calc(100% + 25px * 2);
  overflow: auto;
  padding: 10px 25px;
  margin-left: -25px;
  margin-bottom: 25px;
}
.ctbc-retirement .cd2-e .block-2 .box {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  width: 720px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  font-weight: 700;
}
.ctbc-retirement .cd2-e .block-2 .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-e .block-2 .box-row + .box-row {
  margin-top: 15px;
}
.ctbc-retirement .cd2-e .block-2 .box-row__header {
  font-size: 18px;
  color: #198a8a;
  width: 90px;
}
.ctbc-retirement .cd2-e .block-2 .box-row__content {
  width: calc(100% - 90px);
  position: relative;
  min-height: 14px;
}
.ctbc-retirement .cd2-e .block-2 .box-row__line {
  height: 14px;
  border-radius: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 545px;
}
.ctbc-retirement .cd2-e .block-2 .box .line-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd2-e .block-2 .box .line-2 {
  background-color: #32aaaa;
  z-index: 1;
}
.ctbc-retirement .cd2-e .block-2 .box .line-3 {
  background-color: #006363;
}
.ctbc-retirement .cd2-e .block-2 .box .bottom {
  margin-top: 20px;
}
.ctbc-retirement .cd2-e .block-2 .box .bottom .box-row__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-e .block-2 .box .bottom .text {
  width: 10%;
  text-align: center;
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ctbc-retirement .cd2-e .block-2 .box .bottom .text:before {
  content: "";
  position: absolute;
  top: -7px;
  left: calc(50% - 1px);
  width: 2px;
  height: 7px;
  background-color: #999;
}
.ctbc-retirement .cd2-e .block-3 {
  max-width: 325px;
  margin: 0 auto;
  margin-top: 50px;
}
.ctbc-retirement .cd2-e .block-3 .box {
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd2-e .block-3 .box-header {
  background-color: #6ebe83;
  color: #fff;
  border-radius: 5px;
  padding: 24px 16px;
  position: relative;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}
.ctbc-retirement .cd2-e .block-3 .box-header .image {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 126px;
}
.ctbc-retirement .cd2-e .block-3 .box-header .text-small {
  font-size: 15px;
}
.ctbc-retirement .cd2-e .block-3 .box-content {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  color: #000;
}
.ctbc-retirement .cd2-e .block-3 .text {
  padding: 24px 20px;
  border-bottom: 1px solid #d3d3d3;
}
.ctbc-retirement .cd2-e .block-3 .text2 {
  padding: 20px;
}
.ctbc-retirement .cd2-e .block-3 .text2 .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-e .block-3 .note-text {
  margin-top: 10px;
}
.ctbc-retirement .cd2-e .block-3 .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  max-width: 287px;
  margin: 0 auto;
  position: relative;
  padding-left: 45px;
  min-height: 92px;
}
.ctbc-retirement .cd2-e .block-3 .info + .info {
  margin-top: 12px;
}
.ctbc-retirement .cd2-e .block-3 .info-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 100%;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd2-e .block-3 .info-content {
  width: 100%;
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  padding: 10px;
}
.ctbc-retirement .cd2-e .block-3 .info .text-lg {
  font-size: 24px;
}
.ctbc-retirement .cd2-e .block-3 .info-1 .info-header {
  background-color: #ff9600;
}
.ctbc-retirement .cd2-e .block-3 .info-1 .text-lg {
  color: #ff9600;
}
.ctbc-retirement .cd2-e .block-3 .info-2 .info-header {
  background-color: #e85d00;
  padding: 15px 0;
}
.ctbc-retirement .cd2-e .block-3 .info-2 .text-lg {
  color: #e85d00;
}
.ctbc-retirement .cd2-e .block-3 .info-3 .info-header {
  background-color: #188a8a;
}
.ctbc-retirement .cd2-e .block-3 .info-3 .text-lg {
  color: #188a8a;
}
.ctbc-retirement .cd2-e .block-3 .btn {
  width: 100%;
  margin: 0;
  background-color: #c4eab9;
  line-height: 30px;
  height: 48px;
  padding: 9px 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #198a8a;
  box-shadow: 5px 5px 0 0 #6ebe83;
  position: relative;
  margin-top: 45px;
}
.ctbc-retirement .cd2-e .block-3 .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .cd2-e .block-3 .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .cd2-e .block-3 .btn .image {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -32px;
  left: calc(50% - 48px / 2);
  background-color: #c4eab9;
  border-radius: 50%;
}
.ctbc-retirement .cd2-e .block-3 .btn .image img {
  position: relative;
  top: -4px;
}
.ctbc-retirement .cd2-e .block-3 .btn-2 {
  color: #d07b00;
  background-color: #ffe0b2;
  box-shadow: 5px 5px 0 0 #e39d3b;
}
.ctbc-retirement .cd2-e .block-3 .btn-2 .image {
  background-color: #ffe0b2;
}
.ctbc-retirement .cd2-f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e5faeb;
}
.ctbc-retirement .cd2-f .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cd2-f .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item {
  max-width: 288px;
  margin: 0 auto;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .group .category {
  margin-right: 10px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .group .counts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .group .icon-view {
  background-image: url(../images/icon-view.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  margin-bottom: 8px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #198a8a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd2-f .cd-f-swiper .item .icon-more {
  background-image: url(../images/icon-plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-slide .item {
  opacity: 0;
}
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-button-prev,
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-button-next {
  width: 25px;
  height: 88px;
  margin-top: -44px;
}
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev2_s.png);
}
.ctbc-retirement .cd2-f .cd-f-swiper .swiper-button-next {
  background-image: url(../images/swiper-next2_s.png);
}
.ctbc-retirement .cd3-a {
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}
.ctbc-retirement .cd3-a .section-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ctbc-retirement .cd3-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd3-a .section-header br {
  display: block;
}
.ctbc-retirement .cd3-a .section-header .lg-view {
  display: none;
}
.ctbc-retirement .cd3-a .block-1 {
  position: relative;
  padding: 20px 0 35px;
}
.ctbc-retirement .cd3-a .block-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100vw / 2);
  width: 100vw;
  height: calc(100% + 300px);
  background-image: url(../images/cd-a-bg_s.png);
  background-size: cover;
  z-index: -1;
}
.ctbc-retirement .cd3-a .block-1 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 30px;
}
.ctbc-retirement .cd3-a .block-2 {
  max-width: 325px;
  margin: 0 auto;
  margin-top: 30px;
  font-weight: 700;
}
.ctbc-retirement .cd3-a .block-2 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12px -10px;
}
.ctbc-retirement .cd3-a .block-2 .item {
  width: calc(50% - 10px * 2);
  margin: 12px 10px;
}
.ctbc-retirement .cd3-a .block-2 .item-2 .main-text,
.ctbc-retirement .cd3-a .block-2 .item-3 .main-text {
  background-color: #198a8a;
}
.ctbc-retirement .cd3-a .block-2 .main-text {
  color: #fff;
  background-color: #7fc1a5;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-a .block-2 .image {
  max-width: 100px;
  margin: 0 auto 15px;
}
.ctbc-retirement .cd3-a .block-2 .text {
  font-size: 13px;
  line-height: 20px;
  text-align: justify;
}
.ctbc-retirement .cd3-a .block-3 {
  margin-top: 50px;
}
.ctbc-retirement .cd3-a .block-3 .cd3-a-swiper {
  overflow: visible;
}
.ctbc-retirement .cd3-a .block-3 .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd3-a .block-3 .item {
  background-color: #e5faeb;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  width: calc(100% - 25px * 2);
  margin: 0 25px;
  opacity: 0;
  border-radius: 5px;
  padding: 16px;
  min-height: 348px;
}
.ctbc-retirement .cd3-a .block-3 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% + 10px);
  margin-bottom: 15px;
}
.ctbc-retirement .cd3-a .block-3 .image {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
}
.ctbc-retirement .cd3-a .block-3 .main-text {
  width: calc(100% - 120px);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #198a8a;
  padding-left: 10px;
}
.ctbc-retirement .cd3-a .block-3 .sub-text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-align: justify;
}
.ctbc-retirement .cd3-b {
  padding-top: 30px;
  padding-bottom: 48px;
}
.ctbc-retirement .cd3-b .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cd3-b .section-header .main-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 18px;
}
.ctbc-retirement .cd3-b .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd3-b .section-content {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd3-b .block + .block {
  margin-top: 30px;
}
.ctbc-retirement .cd3-b .box {
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd3-b .box-header {
  background-color: #188a8a;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.ctbc-retirement .cd3-b .box-header .number {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #6ebe83;
  margin-right: 8px;
  font-size: 18px;
  line-height: 27px;
}
.ctbc-retirement .cd3-b .box-content {
  padding: 30px 20px;
}
.ctbc-retirement .cd3-b .box .image {
  margin-bottom: 20px;
}
.ctbc-retirement .cd3-b .box .text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
}
.ctbc-retirement .cd3-b .box .action {
  margin-top: 20px;
}
.ctbc-retirement .cd3-b .box .btn {
  background-color: #ffe0b2;
  line-height: 48px;
  height: 48px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #d27704;
  box-shadow: 5px 5px 0 0 #e39d3b;
  position: relative;
}
.ctbc-retirement .cd3-b .box .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .cd3-b .box .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .cd3-b .box .icon-arrow {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-arrow_down_s.png);
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 10px;
}
.ctbc-retirement .cd3-b .collapse-inner {
  margin-top: 20px;
  background-color: #e2f7e8;
  border-radius: 0 0 5px 5px;
}
.ctbc-retirement .cd3-b .collapse-inner .image {
  width: 331px;
  position: relative;
  left: calc(50% - 331px / 2);
}
.ctbc-retirement .cd3-b .collapse-inner .content {
  padding: 25px 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd3-b .collapse-inner .main-text {
  font-size: 24px;
  line-height: 41px;
  font-weight: 700;
  color: #6ebd83;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-b .collapse-inner .sub-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
}
.ctbc-retirement .cd3-b .collapse-inner .list {
  padding-left: 1em;
  margin-bottom: 20px;
}
.ctbc-retirement .cd3-b .collapse-inner .text {
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-b .collapse-inner .action {
  margin-top: 20px;
}
.ctbc-retirement .cd3-c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e5faeb;
}
.ctbc-retirement .cd3-c .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cd3-c .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item {
  max-width: 288px;
  margin: 0 auto;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .group .category {
  margin-right: 10px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .group .counts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .group .icon-view {
  background-image: url(../images/icon-view.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  margin-bottom: 8px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #198a8a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd3-c .cd-f-swiper .item .icon-more {
  background-image: url(../images/icon-plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-slide .item {
  opacity: 0;
}
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-button-prev,
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-button-next {
  width: 25px;
  height: 88px;
  margin-top: -44px;
}
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev2_s.png);
}
.ctbc-retirement .cd3-c .cd-f-swiper .swiper-button-next {
  background-image: url(../images/swiper-next2_s.png);
}
.ctbc-retirement .cd4-a {
  padding-top: 30px;
  padding-bottom: 35px;
  overflow: hidden;
}
.ctbc-retirement .cd4-a .section-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ctbc-retirement .cd4-a .section-header .main-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-a .section-header .sub-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.ctbc-retirement .cd4-a .section-header br {
  display: block;
}
.ctbc-retirement .cd4-a .section-header .lg-view {
  display: none;
}
.ctbc-retirement .cd4-a .block-1 {
  position: relative;
  padding: 20px 0 35px;
}
.ctbc-retirement .cd4-a .block-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100vw / 2);
  width: 100vw;
  height: calc(100% + 210px);
  background-image: url(../images/cd-a-bg_s.png);
  background-size: cover;
  z-index: -1;
}
.ctbc-retirement .cd4-a .block-1 .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 30px;
}
.ctbc-retirement .cd4-a .block-2 {
  margin-top: 35px;
}
.ctbc-retirement .cd4-a .block-2 .title {
  font-size: 27px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  color: #198a8a;
  margin-bottom: 20px;
}
.ctbc-retirement .cd4-a .block-2 .swiper-button-prev {
  left: 5px;
}
.ctbc-retirement .cd4-a .block-2 .swiper-button-next {
  right: 5px;
}
.ctbc-retirement .cd4-a .block-2 .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd4-a .block-2 .item {
  opacity: 0;
  text-align: center;
  font-weight: 700;
}
.ctbc-retirement .cd4-a .block-2 .image {
  width: 186px;
  margin: 0 auto 8px;
}
.ctbc-retirement .cd4-a .block-2 .main-text {
  font-size: 24px;
  line-height: 30px;
  color: #198a8a;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-a .block-2 .sub-text {
  font-size: 16px;
  line-height: 24px;
}
.ctbc-retirement .cd4-a .block-2 .item-1 .main-text {
  color: #ff9600;
}
.ctbc-retirement .cd4-a .block-2 .item-2 .main-text {
  color: #e85d00;
}
.ctbc-retirement .cd4-a .block-2 .item-3 .main-text {
  color: #198a8a;
}
.ctbc-retirement .cd4-b {
  padding-top: 30px;
  padding-bottom: 48px;
  overflow: hidden;
}
.ctbc-retirement .cd4-b .section-header {
  margin-bottom: 55px;
}
.ctbc-retirement .cd4-b .section-header .main-text {
  font-size: 27px;
  line-height: 36px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
  margin-bottom: 18px;
}
.ctbc-retirement .cd4-b .section-header .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  padding: 0 25px;
}
.ctbc-retirement .cd4-b .section-content {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd4-b .block + .block {
  margin-top: 50px;
}
.ctbc-retirement .cd4-b .box {
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  background-color: #e5faeb;
  margin-top: 24px;
  font-weight: 700;
  position: relative;
}
.ctbc-retirement .cd4-b .box-header {
  background-color: #198a8a;
  color: #fff;
  padding: 0;
  text-align: center;
  font-size: 24px;
  line-height: 48px;
  font-weight: 700;
  width: 155px;
  position: absolute;
  top: -24px;
  left: calc(50% - 155px / 2);
  border-radius: 5px;
}
.ctbc-retirement .cd4-b .box-content {
  padding: 30px 20px;
}
.ctbc-retirement .cd4-b .box .sub-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
}
.ctbc-retirement .cd4-b .box .text {
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-b .box .action {
  margin-top: 20px;
}
.ctbc-retirement .cd4-b .box .btn {
  background-color: #ffe0b2;
  line-height: 48px;
  height: 48px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #d27704;
  box-shadow: 5px 5px 0 0 #e39d3b;
  position: relative;
}
.ctbc-retirement .cd4-b .box .btn:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .ctbc-retirement .cd4-b .box .btn:hover {
    filter: brightness(1.05);
  }
}
.ctbc-retirement .cd4-b .box .icon-arrow {
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/icon-arrow_down_s.png);
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 10px;
}
.ctbc-retirement .cd4-b .collapse-item {
  margin-top: 54px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  position: relative;
}
.ctbc-retirement .cd4-b .collapse-item + .collapse-item {
  margin-top: 48px;
}
.ctbc-retirement .cd4-b .collapse-item .collapse-header {
  background-color: #ff9600;
  color: #fff;
  padding: 0 7px;
  text-align: center;
  font-size: 20px;
  line-height: 42px;
  font-weight: 700;
  width: 162px;
  position: absolute;
  top: -20px;
  left: calc(50% - 162px / 2);
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.ctbc-retirement .cd4-b .collapse-item .collapse-header .number {
  background-color: #fff;
  color: #ff9600;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}
.ctbc-retirement .cd4-b .collapse-item .collapse-header .text {
  width: calc(100% - 28px);
}
.ctbc-retirement .cd4-b .collapse-item .collapse-content {
  padding: 30px 20px 25px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd4-b .collapse-item p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd4-b .collapse-item .indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}
.ctbc-retirement .cd4-b .collapse-item .highlight {
  color: #ff9600;
}
.ctbc-retirement .cd4-b .collapse-item .image {
  margin-bottom: 10px;
}
.ctbc-retirement .cd4-b .collapse-item .list {
  padding-left: 1em;
  margin-bottom: 20px;
}
.ctbc-retirement .cd4-b .collapse-item .action {
  margin-top: 20px;
}
.ctbc-retirement .cd4-b .collapse-item .btn + .btn {
  margin-top: 16px;
}
.ctbc-retirement .cd4-b .item-2 .collapse-header {
  background-color: #e85d00;
}
.ctbc-retirement .cd4-b .item-2 .collapse-header .number {
  color: #e85d00;
}
.ctbc-retirement .cd4-b .item-3 .collapse-header {
  background-color: #188a8a;
}
.ctbc-retirement .cd4-b .item-3 .collapse-header .number {
  color: #188a8a;
}
.ctbc-retirement .cd4-c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e5faeb;
}
.ctbc-retirement .cd4-c .section-header {
  margin-bottom: 20px;
}
.ctbc-retirement .cd4-c .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item {
  max-width: 288px;
  margin: 0 auto;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .group .category {
  margin-right: 10px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .group .counts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .group .icon-view {
  background-image: url(../images/icon-view.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #198a8a;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #198a8a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd4-c .cd-f-swiper .item .icon-more {
  background-image: url(../images/icon-plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-slide .item {
  opacity: 0;
}
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-slide-active .item {
  opacity: 1;
}
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-button-prev,
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-button-next {
  width: 25px;
  height: 88px;
  margin-top: -44px;
}
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-button-prev {
  background-image: url(../images/swiper-prev2_s.png);
}
.ctbc-retirement .cd4-c .cd-f-swiper .swiper-button-next {
  background-image: url(../images/swiper-next2_s.png);
}
.ctbc-retirement .cd4-d {
  padding-top: 45px;
  padding-bottom: 60px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}
.ctbc-retirement .cd4-d .section-header {
  max-width: 325px;
  margin: 0 auto 25px;
}
.ctbc-retirement .cd4-d .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #198a8a;
  text-align: center;
  margin-bottom: 8px;
}
.ctbc-retirement .cd4-d .section-content {
  max-width: 325px;
  margin: 0 auto;
}
.ctbc-retirement .cd4-d .form-radio {
  padding-left: 0;
}
.ctbc-retirement .cd4-d .form-radio label {
  padding-left: 42px;
  line-height: 32px;
}
.ctbc-retirement .cd4-d .form-radio label:before {
  width: 32px;
  height: 32px;
  border: 2px solid #e0e0e0;
  background: #fff;
}
.ctbc-retirement .cd4-d .form-radio input[type="radio"]:checked + label::after {
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-image: url(../images/icon-check2.png);
  background-size: 100% auto;
}
.ctbc-retirement .cd4-d .action {
  margin-top: 40px;
}
.ctbc-retirement .cd4-e {
  padding-top: 15px;
  padding-bottom: 50px;
  background-color: #e5faeb;
  overflow: hidden;
}
.ctbc-retirement .cd4-e .section-header {
  margin: 0 auto 20px;
}
.ctbc-retirement .cd4-e .section-header .main-text {
  font-size: 27px;
  line-height: 41px;
  font-weight: 700;
  color: #0c6d6d;
  text-align: center;
}
.ctbc-retirement .cd4-e .block-2 {
  max-width: 325px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 36px;
}
.ctbc-retirement .cd4-e .block-2 .top-text {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ctbc-retirement .cd4-e .block-2 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.ctbc-retirement .cd4-e .block-2 .group .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd4-e .block-2 .group .item .color-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 12px;
}
.ctbc-retirement .cd4-e .block-2 .group .item .color-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd4-e .block-2 .group .item .color-2 {
  background-color: #32aaaa;
}
.ctbc-retirement .cd4-e .block-2 .group .item .color-3 {
  background-color: #006363;
}
.ctbc-retirement .cd4-e .block-2 .group .item + .item {
  margin-left: 10px;
}
.ctbc-retirement .cd4-e .block-2 .scroll-box {
  width: calc(100% + 25px * 2);
  overflow: auto;
  padding: 10px 25px;
  margin-left: -25px;
  margin-bottom: 10px;
}
.ctbc-retirement .cd4-e .block-2 .box {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
  position: relative;
  width: 720px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  font-weight: 700;
}
.ctbc-retirement .cd4-e .block-2 .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd4-e .block-2 .box-row + .box-row {
  margin-top: 15px;
}
.ctbc-retirement .cd4-e .block-2 .box-row__header {
  font-size: 18px;
  color: #198a8a;
  width: 90px;
}
.ctbc-retirement .cd4-e .block-2 .box-row__content {
  width: calc(100% - 90px);
  position: relative;
  min-height: 14px;
}
.ctbc-retirement .cd4-e .block-2 .box-row__line {
  height: 14px;
  border-radius: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 545px;
}
.ctbc-retirement .cd4-e .block-2 .box .line-1 {
  background-color: #7fc1a5;
}
.ctbc-retirement .cd4-e .block-2 .box .line-2 {
  background-color: #32aaaa;
  z-index: 1;
}
.ctbc-retirement .cd4-e .block-2 .box .line-3 {
  background-color: #006363;
}
.ctbc-retirement .cd4-e .block-2 .box .bottom {
  margin-top: 20px;
}
.ctbc-retirement .cd4-e .block-2 .box .bottom .box-row__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ctbc-retirement .cd4-e .block-2 .box .bottom .text {
  width: 10%;
  text-align: center;
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ctbc-retirement .cd4-e .block-2 .box .bottom .text:before {
  content: "";
  position: absolute;
  top: -7px;
  left: calc(50% - 1px);
  width: 2px;
  height: 7px;
  background-color: #999;
}
.ctbc-retirement .cd4-e .block-2 .action {
  margin-top: 25px;
}

@media (min-width: 751px) {
  .ctbc-retirement.plus-sticky-bottom {
    padding-bottom: 84px;
  }
  .ctbc-retirement .section-anchor {
    top: -100px;
  }
  .ctbc-retirement .cd-section .container {
    max-width: 1300px;
    padding: 0 20px;
  }
  .ctbc-retirement .tabs-menu .nav-item {
    width: 93px;
    margin: 0 15px;
    max-width: 93px;
  }
  .ctbc-retirement .tabs-menu .nav-link {
    height: 56px;
    font-size: 30px;
    line-height: 56px;
  }
  .ctbc-retirement .cd-a {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .ctbc-retirement .cd-a .container {
    max-width: 1150px;
    padding: 0 20px;
  }
  .ctbc-retirement .cd-a .section-header .main-text {
    font-size: 36px;
    line-height: 48px;
  }
  .ctbc-retirement .cd-a .section-header .sub-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd-a .section-header br {
    display: none;
  }
  .ctbc-retirement .cd-a .section-header .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd-a .block-1 {
    padding: 15px 0 24px;
  }
  .ctbc-retirement .cd-a .block-1:before {
    height: calc(100% + 320px);
    background-image: url(../images/cd-a-bg.png);
  }
  .ctbc-retirement .cd-a .block-1 .main-text {
    font-size: 28px;
    line-height: 41px;
  }
  .ctbc-retirement .cd-a .block-1 .main-text br {
    display: none;
  }
  .ctbc-retirement .cd-a .block-1 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd-a .block-1 .image {
    max-width: 440px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd-a .block-2 {
    margin-top: 45px;
  }
  .ctbc-retirement .cd-a .block-2 .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd-a .block-2 .sub-text {
    padding: 0;
    text-align: center;
  }
  .ctbc-retirement .cd-a .block-2 .sub-text span {
    display: block;
  }
  .ctbc-retirement .cd-a .block-2 .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
    width: calc(100% + 15px * 2);
  }
  .ctbc-retirement .cd-a .block-2 .image {
    width: 397px;
    max-width: 397px;
    margin: 0 -9px;
  }
  .ctbc-retirement .cd-a .block-2 .image + .image {
    margin-top: 0;
  }
  .ctbc-retirement .cd-a .block-2 .note-text {
    padding: 0 0 48px;
    margin: 15px 0 0;
  }
  .ctbc-retirement .cd-a .block-3 {
    margin-top: 0;
    padding-top: 48px;
    padding-bottom: 75px;
  }
  .ctbc-retirement .cd-a .block-3 .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd-a .block-3 .sub-text {
    padding: 0;
    text-align: center;
  }
  .ctbc-retirement .cd-b {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ctbc-retirement .cd-b .container {
    padding: 0;
  }
  .ctbc-retirement .cd-b .cd-b-swiper {
    padding: 0 50px;
  }
  .ctbc-retirement .cd-b .main-text {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd-b .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd-b .main-text br {
    display: none;
  }
  .ctbc-retirement .cd-b .sub-text {
    font-size: 18px;
    line-height: 30px;
    max-width: 100%;
    text-align: center;
  }
  .ctbc-retirement .cd-b .sub-text span {
    display: block;
  }
  .ctbc-retirement .cd-b .image {
    margin: 0 auto;
  }
  .ctbc-retirement .cd-b .item-1 .image {
    max-width: 1120px;
  }
  .ctbc-retirement .cd-b .item-2 .image {
    max-width: 520px;
  }
  .ctbc-retirement .cd-b .item-3 .image {
    max-width: 630px;
  }
  .ctbc-retirement .cd-b .item-4 .image {
    max-width: 360px;
  }
  .ctbc-retirement .cd-b .item-4 .sub-text span {
    display: inline;
  }
  .ctbc-retirement .cd-c {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .ctbc-retirement .cd-c .container {
    max-width: 1150px;
    padding: 0 20px;
  }
  .ctbc-retirement .cd-c .section-header {
    max-width: 100%;
    margin: 0 auto 40px;
  }
  .ctbc-retirement .cd-c .section-header .main-text {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd-c .section-header .sub-text {
    font-size: 18px;
    text-align: center;
  }
  .ctbc-retirement .cd-c .section-content {
    max-width: 100%;
  }
  .ctbc-retirement .cd-c .tabs-menu {
    top: 82px;
  }
  .ctbc-retirement .cd-c .tabs-menu .nav-pills {
    margin-bottom: 45px;
  }
  .ctbc-retirement .cd-c .tabs-menu .nav-item {
    width: 158px;
    margin: 0 18px;
    max-width: 158px;
  }
  .ctbc-retirement .cd-c .tabs-menu .nav-link {
    font-size: 24px;
  }
  .ctbc-retirement .cd-c .block-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -30px;
  }
  .ctbc-retirement .cd-c .block {
    width: calc(100% / 3 - 30px * 2);
    margin: 0 30px;
  }
  .ctbc-retirement .cd-c .block + .block {
    margin-top: 0;
  }
  .ctbc-retirement .cd-c .block-header {
    max-width: 100%;
  }
  .ctbc-retirement .cd-c .block-header .main-text {
    font-size: 24px;
  }
  .ctbc-retirement .cd-c .action {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #bcbcbc;
  }
  .ctbc-retirement .cd-c .action .btn {
    max-width: 316px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd-c .cd-c-2 .block-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0 -30px;
  }
  .ctbc-retirement .cd-d {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd-d .container {
    max-width: 960px;
    padding: 0 20px;
  }
  .ctbc-retirement .cd-d .section-header {
    margin: 0 auto 60px;
  }
  .ctbc-retirement .cd-d .section-header .main-text {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd-d .section-header .sub-text {
    font-size: 18px;
  }
  .ctbc-retirement .cd-d .section-header .sub-text br {
    display: none;
  }
  .ctbc-retirement .cd-d .block-1 {
    max-width: 730px;
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd-d .block-1 .group {
    margin: 0 -15px;
  }
  .ctbc-retirement .cd-d .block-1 .group .item {
    width: calc(50% - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd-d .block-1 .group .item-content {
    padding: 15px 0;
  }
  .ctbc-retirement .cd-d .block-1 .group .item-content br {
    display: none;
  }
  .ctbc-retirement .cd-d .block-1 .bottom {
    margin-top: 20px;
    padding: 12px 0;
    font-size: 24px;
    line-height: 36px;
  }
  .ctbc-retirement .cd-d .block-2 {
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd-d .block-2 .scroll-box {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .ctbc-retirement .cd-d .block-2 .box {
    border-radius: 10px;
    width: 920px;
  }
  .ctbc-retirement .cd-d .block-2 .box-row__content {
    min-height: 15px;
  }
  .ctbc-retirement .cd-d .block-2 .box-row__line {
    height: 15px;
    border-radius: 15px;
    max-width: 770px;
  }
  .ctbc-retirement .cd-d .block-2 .box .bottom {
    margin-top: 20px;
  }
  .ctbc-retirement .cd-d .block-2 .box .bottom .text {
    min-width: 77px;
  }
  .ctbc-retirement .cd-d .block-2 .text2 {
    font-size: 18px;
    line-height: 30px;
    padding: 15px 20px;
  }
  .ctbc-retirement .cd-d .block-2 .text2 .list {
    margin: 10px 0;
  }
  .ctbc-retirement .cd-d .block-2 .text2 .list li {
    width: auto;
    margin-right: 40px;
  }
  .ctbc-retirement .cd-d .block-3 {
    max-width: 540px;
  }
  .ctbc-retirement .cd-d .block-3 .group {
    margin: 0 -18px;
  }
  .ctbc-retirement .cd-d .block-3 .btn {
    width: calc(50% - 18px * 2);
    margin: 0 18px;
    line-height: 57px;
    height: 57px;
    padding: 0;
    font-size: 24px;
  }
  .ctbc-retirement .cd-d .block-3 .btn br {
    display: none;
  }
  .ctbc-retirement .cd-d .block-3 .image {
    width: 48px;
    height: 48px;
    position: absolute;
    top: -32px;
    left: calc(50% - 48px / 2);
    background-color: #c4eab9;
    border-radius: 50%;
  }
  .ctbc-retirement .cd-d .block-3 .image img {
    position: relative;
    top: -4px;
  }
  .ctbc-retirement .cd-d2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd-d2 .container {
    max-width: 960px;
    padding: 0 20px;
  }
  .ctbc-retirement .cd-d2 .section-header {
    margin: 0 auto 60px;
  }
  .ctbc-retirement .cd-d2 .section-header .main-text {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd-d2 .section-header .sub-text {
    font-size: 18px;
  }
  .ctbc-retirement .cd-d2 .section-header .sub-text br {
    display: none;
  }
  .ctbc-retirement .cd-d2 .block-1 {
    max-width: 730px;
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd-d2 .block-1 .group {
    margin: 0 -15px;
  }
  .ctbc-retirement .cd-d2 .block-1 .group .item {
    width: calc(50% - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd-d2 .block-1 .group .item-content {
    padding: 15px 0;
  }
  .ctbc-retirement .cd-d2 .block-1 .group .item-content br {
    display: none;
  }
  .ctbc-retirement .cd-d2 .block-1 .bottom {
    margin-top: 20px;
    padding: 12px 0;
    font-size: 24px;
    line-height: 36px;
  }
  .ctbc-retirement .cd-d2 .block-2 {
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd-d2 .block-2 .scroll-box {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .ctbc-retirement .cd-d2 .block-2 .box {
    border-radius: 10px;
    width: 920px;
  }
  .ctbc-retirement .cd-d2 .block-2 .box-row__content {
    min-height: 15px;
  }
  .ctbc-retirement .cd-d2 .block-2 .box-row__line {
    height: 15px;
    border-radius: 15px;
    max-width: 770px;
  }
  .ctbc-retirement .cd-d2 .block-2 .box .bottom {
    margin-top: 20px;
  }
  .ctbc-retirement .cd-d2 .block-2 .box .bottom .text {
    min-width: 77px;
  }
  .ctbc-retirement .cd-d2 .block-2 .text2 {
    font-size: 18px;
    line-height: 30px;
    padding: 15px 20px;
  }
  .ctbc-retirement .cd-d2 .block-2 .text2 .list {
    margin: 10px 0;
  }
  .ctbc-retirement .cd-d2 .block-2 .text2 .list li {
    width: auto;
    margin-right: 40px;
  }
  .ctbc-retirement .cd-d2 .block-3 {
    max-width: 716px;
    margin-top: 15px;
  }
  .ctbc-retirement .cd-d2 .block-3 .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin: 0 -18px;
  }
  .ctbc-retirement .cd-d2 .block-3 .btn {
    width: calc(50% - 18px * 2);
    margin: 0 18px;
    padding: 20px 24px 16px;
  }
  .ctbc-retirement .cd-d2 .block-3 .btn + .btn {
    margin-top: 0;
  }
  .ctbc-retirement .cd-d2 .block-3 .btn br {
    display: none;
  }
  .ctbc-retirement .cd-d2 .block-3 .image {
    width: 48px;
    height: 48px;
    position: absolute;
    top: -32px;
    left: calc(50% - 48px / 2);
    background-color: #c4eab9;
    border-radius: 50%;
  }
  .ctbc-retirement .cd-d2 .block-3 .image img {
    position: relative;
    top: -4px;
  }
  .ctbc-retirement .cd-e {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd-e .section-header {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .ctbc-retirement .cd-e .section-header .main-text {
    font-size: 28px;
    line-height: 41px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd-e .section-header .sub-text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
  }
  .ctbc-retirement .cd-e .block + .block {
    margin-top: 50px;
  }
  .ctbc-retirement .cd-e .block .image {
    margin-bottom: 0;
  }
  .ctbc-retirement .cd-e .block .block-header {
    max-width: 600px;
    margin: 0 auto 45px;
  }
  .ctbc-retirement .cd-e .block .block-header .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .cd-e .block .block-header .image {
    width: 50%;
    margin: 0;
  }
  .ctbc-retirement .cd-e .block .block-header .content {
    width: 50%;
    padding-left: 10px;
  }
  .ctbc-retirement .cd-e .block .block-header .main-text {
    font-size: 28px;
    line-height: 36px;
    text-align: left;
  }
  .ctbc-retirement .cd-e .block .block-header .sub-text {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 0;
  }
  .ctbc-retirement .cd-e .block-2 .cd-e-swiper .item .main-text img {
    width: 140px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd-e .cd-e-swiper {
    overflow: visible;
    padding: 0;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .swiper-slide {
    width: 357px;
    padding: 0 16px;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .swiper-slide-active .item {
    opacity: 1;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item {
    max-width: 325px;
    border-radius: 10px;
    padding: 10px 20px 20px;
    min-height: 220px;
    opacity: 1;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item .main-text {
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item .main-text img {
    width: 50px;
    margin-right: 10px;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item .sub-text {
    line-height: 20px;
    min-height: 75px;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item .btn-a {
    line-height: 48px;
    height: 48px;
    font-size: 24px;
  }
  .ctbc-retirement .cd-e .cd-e-swiper .item .icon-send {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    margin-left: -18px;
  }
  .ctbc-retirement .cd-e .bottom-text {
    padding: 0;
    margin-top: 15px;
  }
  .ctbc-retirement .cd-f {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd-f .section-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .cd-f .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper {
    padding: 0 60px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .swiper-slide {
    width: calc(100% / 3);
    padding: 0 16px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .swiper-slide-visible .item {
    opacity: 1;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item {
    max-width: 380px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item .image {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item .group {
    font-size: 16px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item .main-text {
    font-size: 20px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item .sub-text {
    font-size: 16px;
  }
  .ctbc-retirement .cd-f .cd-f-swiper .item .link {
    font-size: 16px;
  }
  .ctbc-retirement .cd-g {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd-g .block + .block {
    margin-top: 60px;
  }
  .ctbc-retirement .cd-g .block .image {
    margin-bottom: 0;
  }
  .ctbc-retirement .cd-g .block .block-header {
    max-width: 600px;
    margin: 0 auto 45px;
  }
  .ctbc-retirement .cd-g .block .block-header .main-text {
    font-size: 28px;
    line-height: 41px;
  }
  .ctbc-retirement .cd-g .block .block-content {
    margin: 0 auto;
    max-width: 1045px;
  }
  .ctbc-retirement .cd-g .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ctbc-retirement .cd-g .block-1 .list {
    margin: -15px;
    max-width: initial;
  }
  .ctbc-retirement .cd-g .block-1 .item {
    width: calc(100% / 3 - 15px * 2);
    margin: 15px;
  }
  .ctbc-retirement .cd-g .block-1 .item + .item {
    margin-top: 15px;
  }
  .ctbc-retirement .cd-g .block-2 .block-header {
    margin: 0 auto 70px;
  }
  .ctbc-retirement .cd-g .block-2 .list {
    margin: -10px -26px;
    max-width: initial;
  }
  .ctbc-retirement .cd-g .block-2 .item {
    width: calc(100% / 4 - 26px * 2);
    margin: 10px 26px;
  }
  .ctbc-retirement .cd-g .block-2 .item + .item {
    margin-top: 10px;
  }
  .ctbc-retirement .cd-g .bottom-text {
    padding: 0;
    margin-top: 15px;
  }
  .ctbc-retirement .cd2-a {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .ctbc-retirement .cd2-a .container {
    max-width: 1150px;
  }
  .ctbc-retirement .cd2-a .section-header .main-text {
    font-size: 36px;
    line-height: 48px;
  }
  .ctbc-retirement .cd2-a .section-header .sub-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd2-a .section-header br {
    display: none;
  }
  .ctbc-retirement .cd2-a .section-header .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd2-a .block-1 {
    padding: 15px 0 24px;
    margin-bottom: 0;
  }
  .ctbc-retirement .cd2-a .block-1:before {
    height: calc(100% + 320px);
    background-image: url(../images/cd-a-bg.png);
  }
  .ctbc-retirement .cd2-a .block-1 .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd2-a .block-1 .main-text br {
    display: none;
  }
  .ctbc-retirement .cd2-a .block-1 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd2-a .block-1 .image {
    max-width: 320px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-a .block-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -16px;
    padding: 30px 0 45px;
  }
  .ctbc-retirement .cd2-a .block-2 {
    width: calc(100% / 3 - 16px * 2);
    margin: 0 16px;
  }
  .ctbc-retirement .cd2-a .block-2 .main-text {
    font-size: 28px;
    margin-bottom: 0;
  }
  .ctbc-retirement .cd2-a .block-2 .sub-text {
    font-size: 18px;
    padding: 0;
  }
  .ctbc-retirement .cd2-a .block-2 .image {
    margin-bottom: 20px;
  }
  .ctbc-retirement .cd2-a .block-2 .text {
    padding: 0;
  }
  .ctbc-retirement .cd2-a .block-2 .note-text {
    padding: 0;
  }
  .ctbc-retirement .cd2-a .block-3 {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .ctbc-retirement .cd2-a .block-3 .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd2-a .block-3 .sub-text {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .ctbc-retirement .cd2-a .block-3 .info-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -16px;
  }
  .ctbc-retirement .cd2-a .block-3 .info {
    width: calc(100% / 3 - 16px * 2);
    max-width: 100%;
    margin: 0 16px;
    padding-left: 45px;
  }
  .ctbc-retirement .cd2-a .block-3 .info + .info {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-a .block-3 .info-content {
    line-height: 24px;
  }
  .ctbc-retirement .cd2-b {
    padding-top: 20px;
    padding-bottom: 90px;
  }
  .ctbc-retirement .cd2-b .container {
    max-width: 1180px;
  }
  .ctbc-retirement .cd2-b .cd2-b-swiper {
    overflow: visible;
  }
  .ctbc-retirement .cd2-b .cd2-b-swiper .swiper-slide .box {
    opacity: 1;
  }
  .ctbc-retirement .cd2-b .swiper-slide {
    max-width: 285px;
    padding: 0 15px;
  }
  .ctbc-retirement .cd2-b .box {
    max-width: 255px;
    margin-top: 60px;
  }
  .ctbc-retirement .cd2-b .box-header .image {
    bottom: 45px;
    right: 5px;
    width: 100px;
  }
  .ctbc-retirement .cd2-b .text {
    padding: 12px;
  }
  .ctbc-retirement .cd2-b .text .main-text {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .ctbc-retirement .cd2-b .text .sub-text {
    font-size: 15px;
    min-height: 96px;
  }
  .ctbc-retirement .cd2-b .list {
    margin: -5px;
  }
  .ctbc-retirement .cd2-b .list .item {
    font-size: 15px;
    line-height: 20px;
    width: calc(100% / 2 - 5px * 2);
    margin: 5px;
    padding: 8px 4px;
  }
  .ctbc-retirement .cd2-b .box-4 .box-header .image {
    right: 5px;
  }
  .ctbc-retirement .cd2-b .notice {
    max-width: 1110px;
    margin-left: 40px;
    margin-right: 15px;
    margin-top: 40px;
    padding: 12px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .cd2-b .notice .image {
    top: calc(50% - 48px / 2);
    left: -24px;
  }
  .ctbc-retirement .cd2-b .notice .main-text {
    margin-bottom: 0;
    width: 200px;
  }
  .ctbc-retirement .cd2-b .notice .sub-text {
    font-size: 15px;
    width: calc(100% - 200px);
  }
  .ctbc-retirement .cd2-c {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .ctbc-retirement .cd2-c .tabs-menu {
    top: 82px;
  }
  .ctbc-retirement .cd2-c .tabs-menu .nav-pills {
    margin-bottom: 45px;
  }
  .ctbc-retirement .cd2-c .tabs-menu .nav-item {
    width: 122px;
    margin: 0 12px;
    max-width: 122px;
  }
  .ctbc-retirement .cd2-c .tabs-menu .nav-link {
    font-size: 24px;
    line-height: 32px;
    padding: 12px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .cd2-c .tabs-menu .icon {
    margin: 0 10px 0 0;
  }
  .ctbc-retirement .cd2-c .box {
    max-width: 1110px;
    margin-top: 68px;
  }
  .ctbc-retirement .cd2-c .box-header {
    padding: 8px 16px;
    font-size: 28px;
    line-height: 30px;
    width: 324px;
    margin: 0 auto;
    position: relative;
    top: -24px;
  }
  .ctbc-retirement .cd2-c .box-content {
    border-radius: 5px;
  }
  .ctbc-retirement .cd2-c .block {
    padding: 15px 30px;
  }
  .ctbc-retirement .cd2-c .block .main-text {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-c .block .main-text br {
    display: none;
  }
  .ctbc-retirement .cd2-c .block .sub-text {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
  .ctbc-retirement .cd2-c .block-2 {
    padding: 15px 30px 25px;
  }
  .ctbc-retirement .cd2-c .block-2 .main-text {
    margin-bottom: 24px;
  }
  .ctbc-retirement .cd2-c .l-table {
    font-size: 17px;
    line-height: 24px;
    max-width: 730px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-c .l-table td {
    padding: 12px 20px;
  }
  .ctbc-retirement .cd2-c .l-table .hd {
    font-size: 18px;
  }
  .ctbc-retirement .cd2-c .info-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -16px;
  }
  .ctbc-retirement .cd2-c .info {
    width: calc(100% / 3 - 16px * 2);
    max-width: 100%;
    margin: 0 16px;
    min-height: 80px;
  }
  .ctbc-retirement .cd2-c .info + .info {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-c .info-content {
    padding: 10px 10px 10px 20px;
  }
  .ctbc-retirement .cd2-c .box-2 .group {
    max-width: 396px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-c .box-2 .item {
    width: calc(100% / 2 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd2-c .box-2 .item .hd {
    font-size: 18px;
    line-height: 30px;
    padding: 6px 8px;
    border-radius: 5px;
  }
  .ctbc-retirement .cd2-c .box-2 .item .bd {
    max-width: 168px;
  }
  .ctbc-retirement .cd2-c .box-3 .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
  .ctbc-retirement .cd2-c .box-3 .item {
    width: calc(100% / 3 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd2-c .box-3 .item + .item {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-c .box-3 .item-left img {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .ctbc-retirement .cd2-c .box-3 .circle {
    margin-bottom: 14px;
  }
  .ctbc-retirement .cd2-c .box-4 .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
  .ctbc-retirement .cd2-c .box-4 .item {
    width: calc(100% / 3 - 15px * 2);
    margin: 0 15px;
    padding-top: 0;
  }
  .ctbc-retirement .cd2-c .box-4 .item + .item {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-c .box-4 .circle {
    font-size: 24px;
    line-height: 30px;
    padding: 10px 0;
  }
  .ctbc-retirement .cd2-c .box-4 .text img {
    position: static;
  }
  .ctbc-retirement .cd2-c .box-5 .group {
    max-width: 318px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-c .box-5 .item {
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-c .box-5 .info-content br {
    display: none;
  }
  .ctbc-retirement .cd2-c .box-5 .info-content span {
    display: block;
  }
  .ctbc-retirement .cd2-d {
    padding-top: 50px;
  }
  .ctbc-retirement .cd2-d .section-header {
    margin-bottom: 40px;
  }
  .ctbc-retirement .cd2-d .section-header .main-text {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-d .section-header .sub-text {
    font-size: 18px;
    padding: 0;
    text-align: center;
  }
  .ctbc-retirement .cd2-d .section-header .form-section {
    max-width: 325px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-d .tabs-menu {
    top: 82px;
  }
  .ctbc-retirement .cd2-d .tabs-menu .nav-pills {
    margin-bottom: 45px;
  }
  .ctbc-retirement .cd2-d .tabs-menu .nav-item {
    width: 122px;
    margin: 0 12px;
    max-width: 122px;
  }
  .ctbc-retirement .cd2-d .tabs-menu .nav-link {
    font-size: 24px;
    line-height: 32px;
    padding: 12px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .ctbc-retirement .cd2-d .tabs-menu .icon {
    margin: 0 10px 0 0;
  }
  .ctbc-retirement .cd2-d .tab-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
  }
  .ctbc-retirement .cd2-d .block + .block {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-d .block-header {
    max-width: 100%;
  }
  .ctbc-retirement .cd2-d .block-header .main-text {
    font-size: 24px;
    line-height: 36px;
  }
  .ctbc-retirement .cd2-d .form-section-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin: 0 -13px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-d .form-section-group .form-section {
    width: calc(100% / 2 - 13px * 2);
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-d .action {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #bcbcbc;
  }
  .ctbc-retirement .cd2-d .action .btn {
    max-width: 316px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-d .step2-1 {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-d .step2-1 .form-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -13px;
    width: calc(100% + 13px * 2);
  }
  .ctbc-retirement .cd2-d .step2-1 .form-select,
  .ctbc-retirement .cd2-d .step2-1 .plus-text {
    width: calc(100% / 2 - 13px * 2);
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-d .step2-1 .mt-3 {
    margin-top: 0 !important;
  }
  .ctbc-retirement .cd2-d .step3 .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -13px;
    width: calc(100% + 13px * 2);
  }
  .ctbc-retirement .cd2-d .step3 .grid-left, .ctbc-retirement .cd2-d .step3 .grid-right {
    width: calc(100% / 2 - 13px * 2);
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-d .step3 .mt-2 {
    margin-top: 0 !important;
  }
  .ctbc-retirement .cd2-d .step4-1 {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-d .step4-1 .form-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -13px;
    width: calc(100% + 13px * 2);
  }
  .ctbc-retirement .cd2-d .step4-1 .form-select,
  .ctbc-retirement .cd2-d .step4-1 .plus-text {
    width: calc(100% / 2 - 13px * 2);
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-d .step4-1 .mt-3 {
    margin-top: 0 !important;
  }
  .ctbc-retirement .cd2-d .step5-1 {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-d .step5-1 .form-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -13px;
    width: calc(100% + 13px * 2);
  }
  .ctbc-retirement .cd2-d .step5-1 .form-select,
  .ctbc-retirement .cd2-d .step5-1 .plus-text {
    width: calc(100% / 2 - 13px * 2);
    margin: 0 13px;
  }
  .ctbc-retirement .cd2-d .step5-1 .mt-3 {
    margin-top: 0 !important;
  }
  .ctbc-retirement .cd2-e {
    padding-top: 45px;
  }
  .ctbc-retirement .cd2-e .section-header {
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd2-e .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd2-e .section-header .sub-text {
    font-size: 18px;
  }
  .ctbc-retirement .cd2-e .section-header .text-small {
    font-size: 18px;
  }
  .ctbc-retirement .cd2-e .block-1 {
    max-width: 100%;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 36px;
    font-weight: 700;
  }
  .ctbc-retirement .cd2-e .block-1 .main-text {
    font-size: 24px;
  }
  .ctbc-retirement .cd2-e .block-1 .sub-text {
    font-size: 18px;
    text-align: center;
  }
  .ctbc-retirement .cd2-e .block-1 .info {
    max-width: 348px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-e .block-1 .info-header {
    line-height: 44px;
  }
  .ctbc-retirement .cd2-e .block-1 .info-content {
    padding: 16px 15px 10px 50px;
  }
  .ctbc-retirement .cd2-e .block-1 .item + .item {
    margin-top: 8px;
  }
  .ctbc-retirement .cd2-e .block-1 .bottom-text {
    font-size: 14px;
  }
  .ctbc-retirement .cd2-e .block-2 {
    max-width: 960px;
    padding: 0 20px;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd2-e .block-2 .scroll-box {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .ctbc-retirement .cd2-e .block-2 .box {
    border-radius: 10px;
    width: 920px;
  }
  .ctbc-retirement .cd2-e .block-2 .box-row__content {
    min-height: 15px;
  }
  .ctbc-retirement .cd2-e .block-2 .box-row__line {
    height: 15px;
    border-radius: 15px;
    max-width: 770px;
  }
  .ctbc-retirement .cd2-e .block-2 .box .bottom {
    margin-top: 20px;
  }
  .ctbc-retirement .cd2-e .block-2 .box .bottom .text {
    min-width: 77px;
  }
  .ctbc-retirement .cd2-e .block-3 {
    max-width: 960px;
    padding: 0 20px;
    margin-top: 50px;
  }
  .ctbc-retirement .cd2-e .block-3 .box-header {
    padding: 5px 16px;
    font-size: 28px;
    text-align: center;
  }
  .ctbc-retirement .cd2-e .block-3 .box-header .image {
    bottom: inherit;
    top: 5px;
    right: 8px;
    width: 126px;
  }
  .ctbc-retirement .cd2-e .block-3 .box-header .text-small {
    font-size: 18px;
  }
  .ctbc-retirement .cd2-e .block-3 .text {
    padding: 20px 275px 20px 20px;
  }
  .ctbc-retirement .cd2-e .block-3 .text2 {
    padding: 20px;
  }
  .ctbc-retirement .cd2-e .block-3 .text2 .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #198a8a;
    text-align: center;
    margin-bottom: 20px;
  }
  .ctbc-retirement .cd2-e .block-3 .note-text {
    margin-top: 10px;
  }
  .ctbc-retirement .cd2-e .block-3 .info-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
  }
  .ctbc-retirement .cd2-e .block-3 .info {
    width: calc(100% / 3 - 5px * 2);
    max-width: 100%;
    margin: 0 5px;
  }
  .ctbc-retirement .cd2-e .block-3 .info + .info {
    margin-top: 0;
  }
  .ctbc-retirement .cd2-e .block-3 .btn-2 {
    max-width: 280px;
    margin: 0 auto;
    margin-top: 25px;
    color: #d07b00;
    background-color: #ffe0b2;
    box-shadow: 5px 5px 0 0 #e39d3b;
    display: block;
  }
  .ctbc-retirement .cd2-e .block-3 .btn-2 .image {
    background-color: #ffe0b2;
  }
  .ctbc-retirement .cd2-e .block-3 .box-1 .info-group {
    max-width: 645px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-e .block-3 .box-1 .info {
    width: calc(100% / 2 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd2-e .block-3 .box-1 .bottom-text {
    max-width: 615px;
    margin: 0 auto;
    margin-top: 10px;
  }
  .ctbc-retirement .cd2-e .block-3 .box-2 .info-group {
    max-width: 645px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-e .block-3 .box-2 .info {
    width: calc(100% / 2 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd2-e .block-3 .box-2 .bottom-text {
    max-width: 615px;
    margin: 0 auto;
    margin-top: 10px;
  }
  .ctbc-retirement .cd2-f {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd2-f .section-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .cd2-f .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper {
    padding: 0 60px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .swiper-slide {
    width: calc(100% / 3);
    padding: 0 16px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .swiper-slide-visible .item {
    opacity: 1;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item {
    max-width: 380px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item .image {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item .group {
    font-size: 16px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item .main-text {
    font-size: 20px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item .sub-text {
    font-size: 16px;
  }
  .ctbc-retirement .cd2-f .cd-f-swiper .item .link {
    font-size: 16px;
  }
  .ctbc-retirement .cd3-a {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .ctbc-retirement .cd3-a .section-header .main-text {
    font-size: 36px;
    line-height: 48px;
  }
  .ctbc-retirement .cd3-a .section-header .sub-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd3-a .section-header br {
    display: none;
  }
  .ctbc-retirement .cd3-a .section-header .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd3-a .block-1 {
    padding: 15px 0 24px;
  }
  .ctbc-retirement .cd3-a .block-1:before {
    height: calc(100% + 320px);
    background-image: url(../images/cd-a-bg.png);
  }
  .ctbc-retirement .cd3-a .block-1 .main-text {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd3-a .block-1 .main-text br {
    display: none;
  }
  .ctbc-retirement .cd3-a .block-1 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd3-a .block-1 .image {
    max-width: 350px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd3-a .block-2 {
    max-width: 1110px;
  }
  .ctbc-retirement .cd3-a .block-2 .list {
    margin: 0 -15px;
  }
  .ctbc-retirement .cd3-a .block-2 .item {
    width: calc(25% - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd3-a .block-2 .main-text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd3-a .block-2 .image {
    max-width: 100px;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd3-a .block-2 .text {
    font-size: 15px;
    line-height: 24px;
  }
  .ctbc-retirement .cd3-a .block-3 {
    margin-top: 55px;
    margin-bottom: 50px;
  }
  .ctbc-retirement .cd3-a .block-3 .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .ctbc-retirement .cd3-a .block-3 .swiper-slide {
    width: 475px;
  }
  .ctbc-retirement .cd3-a .block-3 .swiper-slide .item {
    opacity: 1;
  }
  .ctbc-retirement .cd3-a .block-3 .swiper-slide-active .item {
    opacity: 1;
  }
  .ctbc-retirement .cd3-a .block-3 .item {
    width: calc(100% - 15px * 2);
    margin: 0 15px;
    opacity: 1;
    padding: 25px 35px;
    min-height: 374px;
  }
  .ctbc-retirement .cd3-a .block-3 .main-text {
    width: calc(100% - 120px);
    text-align: left;
    padding-left: 25px;
  }
  .ctbc-retirement .cd3-a .block-3 .main-text br {
    display: none;
  }
  .ctbc-retirement .cd3-a .block-3 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd3-a .block-3 .sub-text {
    font-size: 15px;
    line-height: 24px;
  }
  .ctbc-retirement .cd3-b {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd3-b .section-header {
    margin-bottom: 50px;
  }
  .ctbc-retirement .cd3-b .section-header .main-text {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd3-b .section-header .main-text br {
    display: none;
  }
  .ctbc-retirement .cd3-b .section-header .main-text span {
    margin: 0 .125em;
  }
  .ctbc-retirement .cd3-b .section-header .sub-text {
    font-size: 24px;
  }
  .ctbc-retirement .cd3-b .section-header .sub-text br {
    display: none;
  }
  .ctbc-retirement .cd3-b .section-content {
    max-width: 980px;
  }
  .ctbc-retirement .cd3-b .block-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
  .ctbc-retirement .cd3-b .block {
    width: calc(100% / 2 - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd3-b .block + .block {
    margin-top: 0;
  }
  .ctbc-retirement .cd3-b .box {
    margin-top: 24px;
  }
  .ctbc-retirement .cd3-b .box-header {
    font-size: 24px;
    width: 324px;
    margin: 0 auto;
    position: relative;
    top: -24px;
    border-radius: 5px;
  }
  .ctbc-retirement .cd3-b .box-header .number {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #6ebe83;
    margin-right: 8px;
    font-size: 18px;
    line-height: 27px;
  }
  .ctbc-retirement .cd3-b .box-content {
    padding: 0 25px 35px;
  }
  .ctbc-retirement .cd3-b .box .image {
    max-width: 200px;
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd3-b .box .text {
    line-height: 24px;
  }
  .ctbc-retirement .cd3-b .box .action {
    margin-top: 30px;
  }
  .ctbc-retirement .cd3-b .box .btn {
    max-width: 280px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd3-b .collapse-inner {
    margin-top: 65px;
    padding: 50px 20px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .image {
    width: 100%;
    left: 0;
    max-width: 728px;
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .image img {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
  }
  .ctbc-retirement .cd3-b .collapse-inner .content {
    max-width: 728px;
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .main-text {
    font-size: 28px;
    margin-bottom: 35px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .sub-text {
    font-size: 18px;
    line-height: 30px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .grid-left {
    width: calc(50% - 10px * 2);
    margin: 0 10px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .grid-right {
    width: calc(50% - 10px * 2);
    margin: 0 10px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .list {
    padding-left: 1em;
    margin-bottom: 20px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .sub-text {
    text-align: left;
  }
  .ctbc-retirement .cd3-b .collapse-inner .text {
    text-align: left;
    margin-bottom: 0;
  }
  .ctbc-retirement .cd3-b .collapse-inner .action {
    margin-top: 30px;
  }
  .ctbc-retirement .cd3-b .collapse-inner .btn-a {
    max-width: 280px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd3-c {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd3-c .section-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .cd3-c .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper {
    padding: 0 60px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .swiper-slide {
    width: calc(100% / 3);
    padding: 0 16px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .swiper-slide-visible .item {
    opacity: 1;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item {
    max-width: 380px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item .image {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item .group {
    font-size: 16px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item .main-text {
    font-size: 20px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item .sub-text {
    font-size: 16px;
  }
  .ctbc-retirement .cd3-c .cd-f-swiper .item .link {
    font-size: 16px;
  }
  .ctbc-retirement .retirement-d {
    overflow: hidden;
  }
  .ctbc-retirement .cd4-a {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .ctbc-retirement .cd4-a .section-header .main-text {
    font-size: 36px;
    line-height: 48px;
  }
  .ctbc-retirement .cd4-a .section-header .sub-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd4-a .section-header br {
    display: none;
  }
  .ctbc-retirement .cd4-a .section-header .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd4-a .block-1 {
    padding: 15px 0 24px;
  }
  .ctbc-retirement .cd4-a .block-1:before {
    height: calc(100% + 320px);
    background-image: url(../images/cd-a-bg.png);
  }
  .ctbc-retirement .cd4-a .block-1 .main-text {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd4-a .block-1 .main-text br {
    display: none;
  }
  .ctbc-retirement .cd4-a .block-1 .main-text .lg-view {
    display: inline;
  }
  .ctbc-retirement .cd4-a .block-1 .image {
    max-width: 370px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-a .block-2 {
    margin-top: 30px;
  }
  .ctbc-retirement .cd4-a .block-2 .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .ctbc-retirement .cd4-a .block-2 .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .ctbc-retirement .cd4-a .block-2 .swiper-slide {
    width: 100%;
    max-width: 304px;
    padding: 0 40px;
  }
  .ctbc-retirement .cd4-a .block-2 .swiper-slide-active .item {
    opacity: 1;
  }
  .ctbc-retirement .cd4-a .block-2 .item {
    opacity: 1;
  }
  .ctbc-retirement .cd4-a .block-2 .image {
    width: 100%;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd4-a .block-2 .main-text {
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd4-a .block-2 .sub-text {
    line-height: 30px;
  }
  .ctbc-retirement .cd4-b {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .ctbc-retirement .cd4-b .section-header {
    margin-bottom: 40px;
  }
  .ctbc-retirement .cd4-b .section-header .main-text {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd4-b .section-header .sub-text {
    font-size: 18px;
    padding: 0;
    text-align: center;
  }
  .ctbc-retirement .cd4-b .section-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-b .block-group {
    max-width: 1010px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ctbc-retirement .cd4-b .block {
    width: calc(50% - 15px * 2);
    margin: 0 15px;
  }
  .ctbc-retirement .cd4-b .block + .block {
    margin-top: 0;
  }
  .ctbc-retirement .cd4-b .block-1 .item-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 65px;
  }
  .ctbc-retirement .cd4-b .block-1 .collapse-item {
    width: calc(100% / 3 - 22px * 2);
    margin: 0 22px;
  }
  .ctbc-retirement .cd4-b .box-header {
    font-size: 24px;
    width: 324px;
    left: calc(50% - 324px / 2);
  }
  .ctbc-retirement .cd4-b .box-content {
    padding: 45px 20px 35px;
  }
  .ctbc-retirement .cd4-b .box .sub-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #198a8a;
    text-align: center;
  }
  .ctbc-retirement .cd4-b .box .text {
    text-align: center;
    margin-bottom: 8px;
  }
  .ctbc-retirement .cd4-b .box .btn {
    max-width: 280px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-b .collapse-item {
    margin-top: 54px;
  }
  .ctbc-retirement .cd4-b .collapse-item + .collapse-item {
    margin-top: 0;
  }
  .ctbc-retirement .cd4-b .collapse-item .collapse-header {
    font-size: 24px;
  }
  .ctbc-retirement .cd4-b .collapse-item .collapse-content {
    padding: 30px 20px 25px;
    font-size: 15px;
    line-height: 24px;
  }
  .ctbc-retirement .cd4-b .collapse-item p {
    font-size: 15px;
    line-height: 24px;
  }
  .ctbc-retirement .cd4-b .collapse-item .btn + .btn {
    margin-top: 16px;
  }
  .ctbc-retirement .cd4-b .collapse {
    display: none;
  }
  .ctbc-retirement .cd4-b .collapse.show {
    display: block;
  }
  .ctbc-retirement .cd4-b .collapse-1 .item-1 .action {
    margin-top: 67px;
  }
  .ctbc-retirement .cd4-b .collapse-1 .item-2 .action {
    margin-top: 27px;
  }
  .ctbc-retirement .cd4-b .collapse-2 .item-2 .action {
    margin-top: 176px;
  }
  .ctbc-retirement .cd4-b .collapse-2 .item-3 .action {
    margin-top: 176px;
  }
  .ctbc-retirement .cd4-b .item-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 65px;
  }
  .ctbc-retirement .cd4-b .collapse-item {
    width: calc(100% / 3 - 22px * 2);
    margin: 0 22px;
  }
  .ctbc-retirement .cd4-c {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .ctbc-retirement .cd4-c .section-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .cd4-c .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper {
    padding: 0 60px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .swiper-slide {
    width: calc(100% / 3);
    padding: 0 16px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .swiper-slide-visible .item {
    opacity: 1;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item {
    max-width: 380px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item .image {
    margin-bottom: 15px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item .group {
    font-size: 16px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item .main-text {
    font-size: 20px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item .sub-text {
    font-size: 16px;
  }
  .ctbc-retirement .cd4-c .cd-f-swiper .item .link {
    font-size: 16px;
  }
  .ctbc-retirement .cd4-d {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ctbc-retirement .cd4-d .section-header {
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .ctbc-retirement .cd4-d .section-header .main-text {
    font-size: 28px;
    margin-bottom: 0;
  }
  .ctbc-retirement .cd4-d .section-content {
    max-width: 1110px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-d .form-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .ctbc-retirement .cd4-d .form-label {
    width: 320px;
    margin: 0;
    line-height: 48px;
  }
  .ctbc-retirement .cd4-d .form-content {
    width: calc(100% - 320px);
    max-width: 330px;
  }
  .ctbc-retirement .cd4-d .group1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }
  .ctbc-retirement .cd4-d .group1 .plus-text {
    width: 330px;
  }
  .ctbc-retirement .cd4-d .group1 .range-group {
    width: calc(100% - 330px - 30px);
    max-width: 330px;
    margin-left: 30px;
  }
  .ctbc-retirement .cd4-d .btn-tooltip {
    margin-left: 10px !important;
  }
  .ctbc-retirement .cd4-d .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .ctbc-retirement .cd4-d .group .plus-text {
    max-width: 160px;
  }
  .ctbc-retirement .cd4-d .action {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #bcbcbc;
  }
  .ctbc-retirement .cd4-d .action .btn {
    max-width: 316px;
    margin: 0 auto;
  }
  .ctbc-retirement .cd4-e {
    padding-top: 50px;
    padding-bottom: 68px;
  }
  .ctbc-retirement .cd4-e .section-header .main-text {
    font-size: 28px;
  }
  .ctbc-retirement .cd4-e .block-2 {
    max-width: 960px;
    padding: 0 20px;
    margin: 0 auto 15px;
  }
  .ctbc-retirement .cd4-e .block-2 .scroll-box {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd4-e .block-2 .box {
    border-radius: 10px;
    width: 920px;
  }
  .ctbc-retirement .cd4-e .block-2 .box-row__content {
    min-height: 15px;
  }
  .ctbc-retirement .cd4-e .block-2 .box-row__line {
    height: 15px;
    border-radius: 15px;
    max-width: 770px;
  }
  .ctbc-retirement .cd4-e .block-2 .box .bottom {
    margin-top: 20px;
  }
  .ctbc-retirement .cd4-e .block-2 .box .bottom .text {
    min-width: 77px;
  }
  .ctbc-retirement .cd4-e .block-2 .bottom-text {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
  }
  .ctbc-retirement .cd4-e .block-2 .action {
    margin-top: 10px;
  }
  .ctbc-retirement .cd4-e .block-2 .btn {
    max-width: 316px;
    margin: 0 auto;
  }
}
@media (min-width: 751px) and (max-width: 1140px) {
  .ctbc-retirement .cd-d .block-2 .scroll-box {
    width: calc(100% + 20px * 2);
    overflow: auto;
    padding: 10px 20px;
    margin-left: -20px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd2-e .block-2 .scroll-box {
    width: calc(100% + 40px * 2);
    overflow: auto;
    padding: 10px 40px;
    margin-left: -40px;
    margin-bottom: 10px;
  }
  .ctbc-retirement .cd4-e .block-2 .scroll-box {
    width: calc(100% + 40px * 2);
    overflow: auto;
    padding: 10px 40px;
    margin-left: -40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .ctbc-retirement .generator {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .ctbc-retirement .generator-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .generator-header .main-text {
    font-size: 28px;
    line-height: 41px;
    font-weight: 700;
    color: #0c6d6d;
    text-align: center;
  }
  .ctbc-retirement .generator .generator-progress .nav-pills {
    margin: 0 -4px 35px;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .ctbc-retirement .generator .generator-progress .nav-pills:before {
    content: "";
    position: absolute;
    top: calc(50% - 2px / 2);
    left: 14px;
    width: calc(100% - 14px * 2);
    height: 2px;
    background-color: #e6e6e6;
  }
  .ctbc-retirement .generator .generator-progress .nav-item {
    width: calc(23% - 4px * 2);
    margin: 0 4px;
  }
  .ctbc-retirement .generator .generator-progress .nav-item span {
    display: inline-block;
  }
  .ctbc-retirement .generator .generator-progress .nav-link {
    height: 60px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    padding: 6px 0;
    background-color: #e6e6e6;
    color: #fff;
    position: relative;
    cursor: default;
  }
  .ctbc-retirement .generator .generator-progress .nav-link:before {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 12px / 2);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 6px 0 6px;
    border-color: #198a8a transparent transparent transparent;
    opacity: 0;
  }
  .ctbc-retirement .generator .generator-progress .nav-link.active {
    background-color: #198a8a;
    color: #fff;
  }
  .ctbc-retirement .generator .generator-progress .nav-link.active:before {
    opacity: 1;
  }
  .ctbc-retirement .generator-section {
    position: relative;
  }
  .ctbc-retirement .generator .form {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
  }
  .ctbc-retirement .generator .form .form-control {
    padding: 0 14px;
  }
  .ctbc-retirement .generator .form .form-control + .form-select {
    margin-top: 8px;
  }
  .ctbc-retirement .generator .form .text-small {
    font-size: 14px;
    color: #188a8a;
  }
  .ctbc-retirement .generator .form .highlight {
    color: #198a8a;
  }
  .ctbc-retirement .generator .form .note-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-align: justify;
    color: #000;
  }
  .ctbc-retirement .generator .form .group {
    margin: -4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ctbc-retirement .generator .form .group .form-control {
    max-width: calc(100% / 2 - 4px * 2);
    margin: 4px;
  }
  .ctbc-retirement .generator .form .btn-add {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #188a8a;
    font-weight: 700;
    padding: 0;
    white-space: nowrap;
  }
  .ctbc-retirement .generator .form .btn-add .icon {
    margin-right: 8px;
  }
  .ctbc-retirement .generator .form .action {
    margin-top: 40px;
  }
  .ctbc-retirement .generator .form .action .btn {
    background-color: #c4eab9;
    line-height: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #198a8a;
    box-shadow: 5px 5px 0 0 #6ebe83;
    position: relative;
  }
  .ctbc-retirement .generator .form .action .btn:active {
    filter: brightness(1.05);
  }
}
@media (max-width: 750px) and (hover: hover) {
  .ctbc-retirement .generator .form .action .btn:hover {
    filter: brightness(1.05);
  }
}
@media (max-width: 750px) {
  .ctbc-retirement .generator .form .action .btn-b {
    background-color: #ffe0b2;
    color: #d27704;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .generator .form-section-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin: 0 -5px;
  }
  .ctbc-retirement .generator .form-section-group .form-section {
    width: calc(100% / 2 - 5px * 2);
    margin: 0 5px;
  }
  .ctbc-retirement .generator .action {
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
    margin-top: 35px;
  }
  .ctbc-retirement .generator .btn-a {
    max-width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .g-step1 .grid-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .ctbc-retirement .g-step1 .grid-right {
    width: 100%;
  }
  .ctbc-retirement .g-step2 .grid-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .ctbc-retirement .g-step2 .grid-left .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #0c6d6d;
  }
  .ctbc-retirement .g-step2 .grid-right {
    width: 100%;
  }
  .ctbc-retirement .g-step2 .grid .image {
    margin-top: 20px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section + .form-section {
    margin-top: 8px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-label {
    background-color: #c5eab9;
    text-align: center;
    width: calc(50% - 4px);
    margin-right: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-content {
    width: calc(50% - 4px);
    margin-left: 4px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-control {
    text-align: center;
    font-size: 16px;
  }
  .ctbc-retirement .g-step3 .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #198a8a;
  }
  .ctbc-retirement .g-step3 .text-red {
    color: #ec0000;
    font-size: 15px;
    line-height: 18px;
  }
  .ctbc-retirement .g-step3 .m-mt-2 {
    margin-top: 1rem;
  }
  .ctbc-retirement .g-step3 .grid-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .ctbc-retirement .g-step3 .grid-right {
    width: 100%;
  }
  .ctbc-retirement .g-step3 .form-section-group {
    display: block;
    margin: 0;
  }
  .ctbc-retirement .g-step3 .form-section-group .form-section {
    width: 100%;
    margin: 0;
  }
  .ctbc-retirement .g-step3 .form-section-group .form-section + .form-section {
    margin-top: 15px;
  }
  .ctbc-retirement .g-step3 .block-1 .form-select {
    max-width: 100%;
  }
  .ctbc-retirement .g-step3 .block-1 .me-4 {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .ctbc-retirement .g-step3 .block-1 .d-flex {
    margin-bottom: 10px;
    width: 100%;
  }
  .ctbc-retirement .g-step3 .block-1 .d-flex .me-4 {
    margin-bottom: 0;
  }
  .ctbc-retirement .g-step3 .block-1 .d-flex .form-select {
    max-width: 220px;
    margin-left: auto;
  }
  .ctbc-retirement .g-step3 .block-2 .form-label {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
  .ctbc-retirement .g-step3 .block-2 .form-label .btn-add {
    margin-left: auto;
    margin-top: 4px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content {
    width: 100%;
    margin-top: 10px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content .form-radio2 {
    width: 100%;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content .form-radio2:nth-child(2) {
    width: 100%;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content .form-radio2:nth-child(3) {
    width: 110px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content .form-check-inline + .form-check-inline {
    margin-left: 0;
    margin-top: 10px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-radio2 {
    width: 110px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-radio2:nth-child(1) {
    width: 184px;
  }
  .ctbc-retirement .g-step3 .block-2 .plus-text {
    max-width: 200px;
    margin-left: auto;
    margin-top: 10px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-select {
    max-width: 200px;
    margin-left: auto;
    margin-top: 10px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-select.w-100 {
    max-width: 100%;
  }
  .ctbc-retirement .g-step3 .block-3 .form-check-inline + .form-check-inline {
    margin-left: 0;
  }
  .ctbc-retirement .g-step3 .block-3 .form-radio2 {
    width: 40px;
  }
  .ctbc-retirement .g-step3 .block-3 .form-radio2:nth-child(1) {
    width: 100%;
    margin-bottom: 15px;
  }
  .ctbc-retirement .g-step3 .block-3 .form-control {
    max-width: 225px;
  }
  .ctbc-retirement .g-step3 .action .btn {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .ctbc-retirement .g-step3 .action .btn:first-child {
    margin-top: 0;
  }
  .ctbc-retirement .g-step4 .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #198a8a;
  }
  .ctbc-retirement .g-step4 .text-red {
    color: #ec0000;
    font-size: 15px;
    line-height: 18px;
  }
  .ctbc-retirement .g-step4 .m-mt-2 {
    margin-top: 1rem;
  }
  .ctbc-retirement .g-step4 .action .btn {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .ctbc-retirement .g-step4 .action .btn:first-child {
    margin-top: 0;
  }
  .ctbc-retirement .g-step5 .image {
    max-width: 100%;
    margin: 0 auto;
  }
  .ctbc-retirement .will-overview {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .ctbc-retirement .will-overview .highlight {
    font-size: 15px;
    color: #198a8a;
    margin: 0 auto;
    max-width: 920px;
  }
  .ctbc-retirement .will-overview__header {
    text-align: center;
    margin-bottom: 26px;
  }
  .ctbc-retirement .will-overview__header .main-text {
    font-size: 28px;
    font-weight: 700;
    color: #0c6d6d;
    margin-bottom: 16px;
  }
  .ctbc-retirement .will-overview__header .category {
    background-color: #188a8a;
    line-height: 50px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 700;
  }
  .ctbc-retirement .will-overview .overview-box {
    background-color: #c5eab9;
    border-radius: 10px;
    position: relative;
    box-shadow: none;
    padding: 20px 25px;
    margin-left: -25px;
    width: calc(100% + 25px * 2);
  }
  .ctbc-retirement .will-overview .block {
    width: 100%;
    margin: 0;
  }
  .ctbc-retirement .will-overview .block-header {
    color: #198a8a;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid #198a8a;
    margin-bottom: 5px;
    padding-bottom: 8px;
  }
  .ctbc-retirement .will-overview .item {
    font-size: 18px;
    font-weight: 700;
  }
  .ctbc-retirement .will-overview .item + .item {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px solid #198a8a;
  }
  .ctbc-retirement .will-overview .item-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ctbc-retirement .will-overview .item-row + .item-row {
    margin-top: 6px;
  }
  .ctbc-retirement .will-overview .item .hd {
    background-color: #188a8a;
    color: #fff;
    border-radius: 5px;
    width: 132px;
    padding: 10px 12px;
  }
  .ctbc-retirement .will-overview .item .bd {
    background-color: #fff;
    padding: 18px;
    border-radius: 5px;
    width: calc(100% - 132px - 6px);
    padding: 10px 15px;
    margin-left: 6px;
  }
  .ctbc-retirement .will-overview .item-row-break {
    display: block;
  }
  .ctbc-retirement .will-overview .item-row-break .hd {
    width: 100%;
  }
  .ctbc-retirement .will-overview .item-row-break .bd {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }
  .ctbc-retirement .will-overview .sub-item + .sub-item {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #979797;
  }
  .ctbc-retirement .will-overview .sub-item .category {
    background-color: #70d6d6;
    line-height: 36px;
    border-radius: 5px;
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    min-width: 40px;
    white-space: nowrap;
  }
  .ctbc-retirement .will-overview .sub-item .category--movable {
    background-color: #188a8a;
    color: #fff;
  }
  .ctbc-retirement .will-overview .sub-item .info + .info {
    margin-top: 10px;
  }
  .ctbc-retirement .will-overview .sub-item .info h4 {
    font-weight: 700;
    margin-bottom: 5px;
  }
  .ctbc-retirement .will-overview .sub-item .info .highlight {
    color: #198a8a;
  }
  .ctbc-retirement .will-overview .action {
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
    margin-top: 35px;
  }
  .ctbc-retirement .will-overview .action br {
    display: none;
  }
  .ctbc-retirement .will-overview .action .btn {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .ctbc-retirement .will-overview .action .btn:first-child {
    margin-top: 0;
  }
  .ctbc-retirement .will-overview .btn-a {
    max-width: 100%;
    margin: 0;
  }
  .ctbc-retirement .will-overview .btn-b {
    margin-top: 20px;
    color: #d07b00;
    background-color: #ffe0b2;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .will-overview .btn-b .icon-send {
    background-image: url(../images/icon-send2.png);
  }
  .ctbc-retirement .will-draft {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .ctbc-retirement .will-draft .image {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    max-width: 920px;
    width: 100%;
  }
  .ctbc-retirement .will-draft .section {
    margin-top: 30px;
  }
  .ctbc-retirement .will-draft .action {
    margin-top: 35px;
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
  }
  .ctbc-retirement .will-draft .action .btn {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
  .ctbc-retirement .will-draft .action .btn:first-child {
    margin-top: 0;
  }
  .ctbc-retirement .will-draft .btn-a {
    max-width: 100%;
    margin: 0;
  }
  .ctbc-retirement .will-draft .btn-b {
    color: #d07b00;
    background-color: #ffe0b2;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .will-draft .btn-b .icon-send {
    background-image: url(../images/icon-send2.png);
  }
}
@media (min-width: 751px) {
  .ctbc-retirement .generator {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .ctbc-retirement .generator-header {
    margin-bottom: 35px;
  }
  .ctbc-retirement .generator-header .main-text {
    font-size: 28px;
    line-height: 41px;
    font-weight: 700;
    color: #0c6d6d;
    text-align: center;
  }
  .ctbc-retirement .generator .generator-progress .nav-pills {
    margin: 0 -14px 55px;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .ctbc-retirement .generator .generator-progress .nav-pills:before {
    content: "";
    position: absolute;
    top: calc(50% - 2px / 2);
    left: 14px;
    width: calc(100% - 14px * 2);
    height: 2px;
    background-color: #e6e6e6;
  }
  .ctbc-retirement .generator .generator-progress .nav-item {
    width: calc(100% / 5 - 14px * 2);
    margin: 0 14px;
    max-width: 200px;
    position: relative;
  }
  .ctbc-retirement .generator .generator-progress .nav-link {
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    padding: 0;
    background-color: #e6e6e6;
    color: #fff;
    position: relative;
    cursor: default;
  }
  .ctbc-retirement .generator .generator-progress .nav-link:before {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 16px / 2);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #198a8a transparent transparent transparent;
    opacity: 0;
  }
  .ctbc-retirement .generator .generator-progress .nav-link.active {
    background-color: #198a8a;
    color: #fff;
  }
  .ctbc-retirement .generator .generator-progress .nav-link.active:before {
    opacity: 1;
  }
  .ctbc-retirement .generator-section {
    position: relative;
  }
  .ctbc-retirement .generator .form {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
  }
  .ctbc-retirement .generator .form .form-control {
    padding: 0 14px;
  }
  .ctbc-retirement .generator .form .form-control + .form-select {
    margin-top: 8px;
  }
  .ctbc-retirement .generator .form .text-small {
    font-size: 14px;
    color: #188a8a;
  }
  .ctbc-retirement .generator .form .highlight {
    color: #198a8a;
  }
  .ctbc-retirement .generator .form .note-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-align: justify;
    color: #000;
  }
  .ctbc-retirement .generator .form .group {
    margin: -4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ctbc-retirement .generator .form .group .form-control {
    max-width: calc(100% / 2 - 4px * 2);
    margin: 4px;
  }
  .ctbc-retirement .generator .form .btn-add {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #188a8a;
    font-weight: 700;
    padding: 0;
    white-space: nowrap;
  }
  .ctbc-retirement .generator .form .btn-add .icon {
    margin-right: 8px;
  }
  .ctbc-retirement .generator .form .action {
    margin-top: 40px;
  }
  .ctbc-retirement .generator .form .action .btn {
    background-color: #c4eab9;
    line-height: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #198a8a;
    box-shadow: 5px 5px 0 0 #6ebe83;
    position: relative;
  }
  .ctbc-retirement .generator .form .action .btn:active {
    filter: brightness(1.05);
  }
}
@media (min-width: 751px) and (hover: hover) {
  .ctbc-retirement .generator .form .action .btn:hover {
    filter: brightness(1.05);
  }
}
@media (min-width: 751px) {
  .ctbc-retirement .generator .form .action .btn-b {
    background-color: #ffe0b2;
    color: #d27704;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .generator .form-section-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin: 0 -5px;
  }
  .ctbc-retirement .generator .form-section-group .form-section {
    width: calc(100% / 2 - 5px * 2);
    margin: 0 5px;
  }
  .ctbc-retirement .generator .action {
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
    margin-top: 35px;
  }
  .ctbc-retirement .generator .btn-a {
    max-width: 315px;
    margin: 0 auto;
  }
  .ctbc-retirement .g-step1 .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ctbc-retirement .g-step1 .grid-left {
    width: 325px;
  }
  .ctbc-retirement .g-step1 .grid-right {
    width: calc(100% - 325px);
    padding-left: 50px;
  }
  .ctbc-retirement .g-step1 .grid-right .image {
    max-width: 733px;
  }
  .ctbc-retirement .g-step2 .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ctbc-retirement .g-step2 .grid-left {
    width: 325px;
  }
  .ctbc-retirement .g-step2 .grid-left .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #0c6d6d;
  }
  .ctbc-retirement .g-step2 .grid-right {
    width: calc(100% - 325px);
    padding-left: 50px;
  }
  .ctbc-retirement .g-step2 .grid-right .image {
    max-width: 733px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section + .form-section {
    margin-top: 8px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-label {
    background-color: #c5eab9;
    text-align: center;
    width: calc(50% - 4px);
    margin-right: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-content {
    width: calc(50% - 4px);
    margin-left: 4px;
  }
  .ctbc-retirement .g-step2 .g-step2-2 .form-section .form-control {
    text-align: center;
    font-size: 16px;
  }
  .ctbc-retirement .g-step2 .g-step2-3 .scroll-box {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 457px;
    width: calc(100% + 60px);
    padding-right: 40px;
    position: relative;
  }
  .ctbc-retirement .g-step3 .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #198a8a;
  }
  .ctbc-retirement .g-step3 .text-red {
    color: #ec0000;
    font-size: 16px;
  }
  .ctbc-retirement .g-step3 .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .ctbc-retirement .g-step3 .grid-left {
    width: 662px;
  }
  .ctbc-retirement .g-step3 .grid-right {
    width: calc(100% - 662px);
  }
  .ctbc-retirement .g-step3 .grid-right .image {
    max-width: 448px;
  }
  .ctbc-retirement .g-step3 .form-section-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin: 0 -10px;
  }
  .ctbc-retirement .g-step3 .form-section-group .form-section {
    width: calc(100% / 2 - 10px * 2);
    margin: 0 10px;
  }
  .ctbc-retirement .g-step3 .block-1 .form-select {
    max-width: 168px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-label {
    width: 146px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-label .btn-add {
    margin-left: 36px;
    margin-top: 4px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-content {
    width: calc(100% - 146px);
  }
  .ctbc-retirement .g-step3 .block-2 .form-radio2 {
    width: 110px;
  }
  .ctbc-retirement .g-step3 .block-2 .form-radio2:nth-child(1) {
    width: 184px;
  }
  .ctbc-retirement .g-step3 .block-2 .plus-text {
    max-width: 255px;
    margin-left: auto;
  }
  .ctbc-retirement .g-step3 .block-2 .form-select {
    max-width: 255px;
    margin-left: auto;
  }
  .ctbc-retirement .g-step3 .block-2 .form-select.w-100 {
    max-width: 100%;
  }
  .ctbc-retirement .g-step3 .block-3 .form-radio2 {
    width: 40px;
  }
  .ctbc-retirement .g-step3 .block-3 .form-radio2:nth-child(1) {
    width: 308px;
  }
  .ctbc-retirement .g-step3 .block-3 .form-control {
    max-width: 225px;
  }
  .ctbc-retirement .g-step3 .action .btn {
    max-width: 315px;
    margin: 0 18px;
  }
  .ctbc-retirement .g-step4 .main-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: #198a8a;
  }
  .ctbc-retirement .g-step4 .text-red {
    color: #ec0000;
    font-size: 16px;
  }
  .ctbc-retirement .g-step4 .block-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px -30px;
    max-width: initial;
  }
  .ctbc-retirement .g-step4 .block-group .form-section {
    width: calc(100% / 3 - 30px * 2);
    margin: 10px 30px;
  }
  .ctbc-retirement .g-step4 .action .btn {
    max-width: 315px;
    margin: 0 18px;
  }
  .ctbc-retirement .g-step5 .image {
    max-width: 950px;
    margin: 0 auto;
  }
  .ctbc-retirement .will-overview {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .ctbc-retirement .will-overview .highlight {
    font-size: 15px;
    color: #198a8a;
    margin: 0 auto;
    max-width: 920px;
  }
  .ctbc-retirement .will-overview__header {
    text-align: center;
    margin-bottom: 30px;
  }
  .ctbc-retirement .will-overview__header .main-text {
    font-size: 28px;
    font-weight: 700;
    color: #0c6d6d;
    margin-bottom: 20px;
  }
  .ctbc-retirement .will-overview__header .category {
    background-color: #188a8a;
    line-height: 50px;
    border-radius: 10px;
    display: inline-block;
    color: #fff;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 700;
  }
  .ctbc-retirement .will-overview .overview-box {
    background-color: #c5eab9;
    border-radius: 10px;
    position: relative;
    box-shadow: none;
    padding: 20px 50px;
    max-width: 920px;
    margin: 0 auto;
  }
  .ctbc-retirement .will-overview .overview-box--lg {
    max-width: 100%;
  }
  .ctbc-retirement .will-overview .overview-box--lg .block-group {
    max-width: 820px;
  }
  .ctbc-retirement .will-overview .overview-box--lg .highlight {
    max-width: 100%;
  }
  .ctbc-retirement .will-overview .block-group {
    margin: 0 -12px;
    margin-top: 25px;
  }
  .ctbc-retirement .will-overview .block-group .block {
    width: calc(50% - 12px * 2);
    margin: 0 12px;
  }
  .ctbc-retirement .will-overview .block-group .block-2 {
    width: calc(45% - 12px * 2);
  }
  .ctbc-retirement .will-overview .block-group .block-3 {
    width: calc(55% - 12px * 2);
  }
  .ctbc-retirement .will-overview .block {
    width: 100%;
    margin: 0;
  }
  .ctbc-retirement .will-overview .block-header {
    color: #198a8a;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid #198a8a;
    margin-bottom: 5px;
    padding-bottom: 8px;
  }
  .ctbc-retirement .will-overview .table {
    text-align: center;
    width: calc(100% + 4px * 2);
    border-collapse: separate;
    border-spacing: 4px 0;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    overflow: hidden;
    padding-top: 5px;
    margin: 0 -4px;
  }
  .ctbc-retirement .will-overview .table th, .ctbc-retirement .will-overview .table td {
    overflow: hidden;
    position: relative;
  }
  .ctbc-retirement .will-overview .table .hd {
    background-color: #188a8a;
    color: #fff;
    border-radius: 5px;
    vertical-align: middle;
  }
  .ctbc-retirement .will-overview .table .bd {
    background-color: #fff;
    padding: 18px 0;
  }
  .ctbc-retirement .will-overview .table thead {
    position: relative;
    top: -5px;
  }
  .ctbc-retirement .will-overview .table tbody tr:first-child td {
    border-radius: 5px 5px 0 0;
  }
  .ctbc-retirement .will-overview .table tbody tr:last-child td {
    border-radius: 0 0 5px 5px;
  }
  .ctbc-retirement .will-overview .table .bg-1 {
    background-color: #ededed;
  }
  .ctbc-retirement .will-overview .table .radius-1 {
    border-radius: 5px !important;
  }
  .ctbc-retirement .will-overview .table2 {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: 700;
    font-size: 16px;
    border-radius: 0;
    padding-top: 0;
    margin: 0;
    table-layout: fixed;
  }
  .ctbc-retirement .will-overview .table2 th:nth-child(1),
  .ctbc-retirement .will-overview .table2 td:nth-child(1) {
    width: 120px;
  }
  .ctbc-retirement .will-overview .table2 th:nth-child(3),
  .ctbc-retirement .will-overview .table2 td:nth-child(3) {
    width: 130px;
  }
  .ctbc-retirement .will-overview .table2 th:nth-child(4),
  .ctbc-retirement .will-overview .table2 td:nth-child(4) {
    width: 80px;
  }
  .ctbc-retirement .will-overview .table2 th {
    text-align: center;
    color: #198a8a;
    padding: 4px;
  }
  .ctbc-retirement .will-overview .table2 td {
    background-color: transparent;
    padding: 4px;
  }
  .ctbc-retirement .will-overview .table2 .category {
    background-color: #70d6d6;
    line-height: 36px;
    border-radius: 5px;
    display: block;
    padding: 0 10px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
  }
  .ctbc-retirement .will-overview .table2 .category--movable {
    background-color: #188a8a;
    color: #fff;
  }
  .ctbc-retirement .will-overview .action {
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
    margin-top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .ctbc-retirement .will-overview .btn-a {
    max-width: 315px;
    margin: 0 18px;
  }
  .ctbc-retirement .will-overview .btn-b {
    color: #d07b00;
    background-color: #ffe0b2;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .will-overview .btn-b .icon-send {
    background-image: url(../images/icon-send2.png);
  }
  .ctbc-retirement .will-draft {
    max-width: 1110px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .ctbc-retirement .will-draft .will-overview {
    margin-top: 50px;
  }
  .ctbc-retirement .will-draft .image {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    max-width: 920px;
    width: 100%;
  }
  .ctbc-retirement .will-draft .section {
    max-width: 730px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .ctbc-retirement .will-draft .section-sm {
    max-width: 450px;
  }
  .ctbc-retirement .will-draft .section-md {
    max-width: 950px;
  }
  .ctbc-retirement .will-draft .section-lg {
    max-width: 1110px;
  }
  .ctbc-retirement .will-draft .action {
    margin-top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    border-top: 1px solid #b9b9b9;
    padding-top: 35px;
  }
  .ctbc-retirement .will-draft .btn-a {
    max-width: 315px;
    margin: 0 18px;
  }
  .ctbc-retirement .will-draft .btn-b {
    color: #d07b00;
    background-color: #ffe0b2;
    box-shadow: 5px 5px 0 0 #e39d3b;
  }
  .ctbc-retirement .will-draft .btn-b .icon-send {
    background-image: url(../images/icon-send2.png);
  }
}
@media (min-width: 751px) and (max-width: 1023px) {
  .ctbc-retirement .g-step3 .grid {
    display: block;
  }
  .ctbc-retirement .g-step3 .grid-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .ctbc-retirement .g-step3 .grid-right {
    width: 100%;
  }
  .ctbc-retirement .g-step3 .action .btn {
    max-width: 192px;
  }
  .ctbc-retirement .g-step4 .action .btn {
    max-width: 300px;
  }
  .ctbc-retirement .will-overview .action {
    padding-top: 17px;
  }
  .ctbc-retirement .will-overview .action .btn {
    max-width: 240px;
    margin: 18px;
  }
}
@media (min-width: 1024px) and (max-width: 1110px) {
  .ctbc-retirement .g-step3 .action .btn {
    max-width: 240px;
  }
  .ctbc-retirement .will-overview .action {
    padding-top: 17px;
  }
  .ctbc-retirement .will-overview .action .btn {
    max-width: 240px;
    margin: 18px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
