@font-face {
  font-family: 'Gotham';
  src: url('Fonts/Gotham-Bold.eot');
  src: url('Fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('Fonts/Gotham-Bold.woff2') format('woff2'),
    url('Fonts/Gotham-Bold.woff') format('woff'),
    url('Fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('Fonts/Gotham-Book.eot');
  src: url('Fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('Fonts/Gotham-Book.woff2') format('woff2'),
    url('Fonts/Gotham-Book.woff') format('woff'),
    url('Fonts/Gotham-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('Fonts/Gotham-Black.eot');
  src: url('Fonts/Gotham-Black.eot?#iefix') format('embedded-opentype'),
    url('Fonts/Gotham-Black.woff2') format('woff2'),
    url('Fonts/Gotham-Black.woff') format('woff'),
    url('Fonts/Gotham-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

html {
  font-size: 100px;
  font-family: 'Gotham';
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
}

html.lock {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  font-size: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-appearance: none !important;
  -webkit-font-smoothing: antialiased;
}

*:focus {
  outline: none !important;
}

a {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.vcenter {
  font-size: 0;
}

.vcenter > * {
  display: inline-block;
  vertical-align: middle;
}

.vcenter:before {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}

/* Loading */

.loading {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  display: none;
}

.load {
  width: 150px;
  height: 150px;
  animation: loading 3s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -75px;
}

.load .loading-inner {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 10;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  animation: loading-circle 2s linear infinite;
  stroke: #c82227;
  fill: transparent;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -600;
  }
}
/*@media screen and (min-width: 1001px) {
  .mobile-only {
    display: none !important;
  }
@media screen and (max-width: 1000px) {
  .desktop-only {
    display: none !important;
  }*/
/* General */

.container {
  position: relative;
  width: 100%;
  max-width: 14.86rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin: 0 auto;
}

.button {
  position: relative;
  width: 2.52rem;
  height: 0.75rem;
  border-radius: 0.4rem;
  background-color: #db2b32;
  text-align: center;
  display: inline-block;
  border: 0.04rem solid #db2b32;
  transition: background 0.1s ease-in-out;
  -webkit-transition: background 0.1s ease-in-out;
  -moz-transition: background 0.1s ease-in-out;
  -ms-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
}

.button > span {
  font-weight: 900;
  font-size: 0.2rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.button.white {
  border-color: #ffffff;
  background-color: #ffffff;
}

.button.white > span {
  color: #db2b32;
}

/* Header */
header {
  position: absolute;
  width: 100%;
  padding-top: 0.6rem;
  z-index: 3;
}

header .logo {
  width: 0.65rem;
}

header .logo img {
  width: 170%;
}

header .link {
  position: absolute;
  width: auto;
  top: 0;
  right: 1.4rem;
}

header .link a {
  position: relative;
  padding-right: 0.18rem;
  font-size: 0.14rem;
  font-weight: 600;
  color: #231f20;
  line-height: 0.18rem;
  display: block;
}

header .link a + a {
  margin-top: 0.1rem;
}

header .link a:after {
  content: '';
  position: absolute;
  width: 0.1rem;
  height: 0.12rem;
  bottom: 3px;
  margin-left: 0.05rem;
  background-image: url(Icons/icon-right-small-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Banner */
section.banner {
  position: relative;
  width: 100%;
  height: 6.25rem;
}

section.banner .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

section.banner .image img {
  position: absolute;
}

section.banner .info-container {
  position: absolute;
  width: 6rem;
  top: 1.91rem;
  right: calc(((100% - 13.66rem) / 2) + 0.8rem);
}

section.banner .info-container .info {
  width: 100%;
  padding: 0.25rem 0.5rem;
  background-color: rgba(246, 246, 246, 0.86);
  border: 1px solid #c0c0c0;
  border-radius: 0.1rem;
}

section.banner .info-container .info .top {
  position: relative;
  padding-bottom: 0.2rem;
  padding-left: 1rem;
  text-align: center;
  border-bottom: 1px solid #c0c0c0;
}

section.banner .info-container .info .top .icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0;
  bottom: 0.1rem;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  background-color: #f6f6f6;
}

section.banner .info-container .info .top .icon img {
  position: absolute;
  width: 0.78rem;
  height: auto;
  left: 50%;
  top: 50%;
  margin-left: -0.39rem;
  margin-top: -0.34rem;
}

section.banner .info-container .info .top .title {
  width: 2.8rem;
  font-weight: 900;
  font-size: 0.33rem;
  line-height: 0.33rem;
  letter-spacing: -0.045em;
  color: #221f1f;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

section.banner .info-container .info .top .installment {
  position: relative;
  width: 1.6rem;
  padding-left: 0.2rem;
  margin-right: -0.1rem;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

section.banner .info-container .info .top .installment:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.66rem;
  left: 0;
  top: 50%;
  margin-top: -0.33rem;
  background-image: url(Icons/icon-dashed-line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

section.banner .info-container .info .top .installment img {
  width: 0.45rem;
  margin-right: 0.1rem;
  vertical-align: middle;
}

section.banner .info-container .info .top .installment span {
  width: calc(100% - 0.55rem);
  font-weight: 900;
  font-size: 0.18rem;
  line-height: 0.18rem;
  color: #d92e37;
  display: inline-block;
  vertical-align: middle;
}

section.banner .info-container .info .bottom {
  margin-top: 0.14rem;
}

section.banner .info-container .info .bottom .text {
  /*	position: relative;*/
  width: 33%;
  font-weight: 900;
  font-size: 0.22rem;
  color: #221f1f;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}

section.banner .info-container .info .bottom .text:nth-child(2) {
  width: 33%;
}

section.banner .info-container .info .bottom .text span {
  font-size: 0.22rem;
  color: #db2b32;
  display: block;
}

section.banner .info-container .info .bottom .text:first-child {
  padding-right: 0.2rem;
}

section.banner .info-container .info .bottom .text:last-child {
  padding-left: 0.2rem;
}

section.banner .info-container .info .bottom .text + .text:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.62rem;
  top: 0;
  left: 0;
  background-color: #c0c0c0;
}

section.banner .info-container .button-container {
  margin-top: 0.47rem;
  text-align: center;
}

section.banner .info-container .button-container .button {
  width: calc((100% - 0.5rem) / 2);
  height: 0.66rem;
}

section.banner .info-container .button-container .button + .button {
  margin-left: 0.5rem;
}

/* Details */

section.details {
  padding-top: 0.5rem;
  padding-bottom: 0.85rem;
}

section.details .container {
}

section.details .container img.badge {
  position: absolute;
  width: 1.57rem;
  right: 66%;
  margin-left: -0.785rem;
  margin-top: -1.8rem;
}

section.details .container .message {
}

section.details .container .message .title {
  position: relative;
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}

section.details .container .message .title img {
  max-width: 100%;
}

section.details .container .message .text {
  width: 90%;
  padding-left: 0.05rem;
  padding-right: 0.8rem;
  font-size: 0.26rem;
  line-height: 0.34rem;
  letter-spacing: -0.045em;
  display: inline-block;
  vertical-align: middle;
}

section.details .container .message .text ul {
  list-style: none;
}

section.details .container .message .text ul li {
  position: relative;
  padding-left: 0.25rem;
  font-size: 0.18rem;
  line-height: 0.25rem;
  letter-spacing: -0.025em;
}

section.details .container .message .text ul li + li {
  margin-top: 0.2rem;
}

section.details .container .message .text ul li img {
  position: absolute;
  width: 0.16rem;
  left: 0;
  top: 0.07rem;
}

section.details .container .boxes {
  margin-top: 0.85rem;
}

section.details .container .boxes .box {
  position: relative;
  width: calc((100% - 0.72rem) / 3);
  padding: 0.25rem 0.3rem 0.25rem 0.35rem;
  background-color: #ffffff;
  border-left: 0rem solid #ccc;
  display: inline-block;
  vertical-align: top;
  box-shadow: 14px 17px 76px 0px rgba(0, 0, 0, 0.08);
}

section.details .container .boxes .box + .box {
  margin-left: 0.36rem;
}

section.details .container .boxes .box .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

section.details .container .boxes .box .bg-image img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  right: 0;
  bottom: 0;
}

section.details .container .boxes .box .subtitle {
  font-weight: 900;
  font-size: 0.16rem;
  letter-spacing: 0.2em;
  color: #db2c32;
}

section.details .container .boxes .box .title {
  margin-top: 0.08rem;
  font-weight: 900;
  font-size: 0.45rem;
  letter-spacing: -0.04em;
  color: #221f1f;
  text-align: left;
}

section.details .container .boxes .box .title span {
  color: #db2b32;
}

section.details .container .boxes .box .title span.font-normalize {
  font-weight: normal;
  font-size: 0.36rem;
  font-family: Arial;
}

section.details .container .boxes {
  margin-top: 0.45rem;
}

section.details .container .boxes .box2 {
  position: relative;
  width: calc((100% - 0.4rem) / 2);
  padding: 0.58rem 0.58rem 0.5rem 0.58rem;
  background-color: #ffffff;
  border-left: 0.05rem solid #db2b32;

  display: inline-block;
  vertical-align: top;
  box-shadow: 14px 17px 76px 0px rgba(0, 0, 0, 0.08);
}

section.details .container .boxes .box2 + .box2 {
  /*	margin-left: .0rem;*/
}

section.details .container .boxes .box2 .bg-text {
  position: absolute;
  width: calc(100% - 0.2rem);
  height: 1.7rem;
  left: 0.2rem;
  bottom: 0;
  font-weight: 900;
  font-size: 2rem;
  color: #221f1f;
  letter-spacing: -0.03em;
  opacity: 0.05;
  overflow: hidden;
  white-space: nowrap;
}
section.details .container .boxes .box .bg-text {
  position: absolute;
  width: calc(100% - 0.2rem);
  height: 1.7rem;
  left: -0.05rem;
  bottom: -0.6rem;
  font-weight: 900;
  font-size: 1rem;
  color: #221f1f;
  letter-spacing: -0.03em;
  opacity: 0.05;
  overflow: hidden;
  white-space: nowrap;
}

section.details .container .boxes .box2 .icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  right: 0.27rem;
  top: 0.15rem;
  background-color: #db2b32;
  border-radius: 50%;
}

section.details .container .boxes .box2 .icon img {
  position: absolute;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

section.details .container .boxes .box2 .subtitle {
  font-weight: 900;
  font-size: 0.18rem;
  letter-spacing: 0.2em;
  color: #db2c32;
}

section.details .container .boxes .box2 .title {
  margin-top: 0.08rem;
  font-weight: 900;
  font-size: 0.52rem;
  letter-spacing: -0.04em;
  color: #221f1f;
  text-align: left;
}

section.details .container .boxes .box2 .title span {
  color: #db2b32;
}

section.details .container .boxes .box2 .title span.font-normalize {
  font-weight: normal;
  font-size: 0.36rem;
  font-family: Arial;
}

section.details .container .selection {
  margin-top: 0.28rem;
}

section.details .container .selection .selector {
  position: relative;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin-right: 0.2rem;
  display: inline-block;
  vertical-align: middle;
}

section.details .container .selection .selector > div {
  width: 1rem;
  height: 0.6rem;
  background-color: #221f1f;
  color: #fff;
  font-weight: 900;
  font-size: 0.16rem;
  letter-spacing: -0.03em;
  text-align: center;
  border-radius: 0.37rem;
}

section.details .container .selection .selector > a {
  position: absolute;
  width: 0.13rem;
  height: 0.13rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

section.details .container .selection .selector > a.minus {
  left: 0;
}

section.details .container .selection .selector > a.minus:before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.03rem;
  left: 0;
  top: 50%;
  margin-top: -0.015rem;
  background-color: #221f1f;
}

section.details .container .selection .selector > a.plus {
  right: 0;
}

section.details .container .selection .selector > a.plus:before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.03rem;
  right: 0;
  top: 50%;
  margin-top: -0.015rem;
  background-color: #221f1f;
}

section.details .container .selection .selector > a.plus:after {
  content: '';
  position: absolute;
  width: 0.03rem;
  height: 0.12rem;
  right: 0.04rem;
  top: 50%;
  margin-top: -0.06rem;
  background-color: #221f1f;
}

section.details .container .selection .button {
  width: 1.75rem;
  height: 0.6rem;
}

section.details .container .selection .button > span {
  font-size: 0.18rem;
}

section.details .container .note {
  margin-top: 0.17rem;
  font-size: 0.14rem;
  font-weight: 600;
  color: #221f1f;
}

section.details .container .note span {
  color: #db2b32;
}

/* Channels */

section.channels {
  padding-top: 0.85rem;
  padding-bottom: 0.5rem;
  background-color: #f3f3f3;
}

section.channels .title {
  font-size: 0.36rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #de1f2b;
  text-align: center;
}

section.channels .items {
  margin-top: 0.7rem;
}

section.channels .items .item {
  position: relative;
  width: calc((100% - 0.8rem) / 5);
  height: 0;
  padding-top: calc((100% - 0.8rem) / 5);
  display: inline-block;
  vertical-align: top;
  background-color: #de1f2b;
  border-radius: 5px;
}

section.channels .items .item.black {
  background-color: #000;
}

section.channels .items .item.grey {
  background-color: #999999;
}

section.channels .items .item.transparent {
  background-color: transparent;
  border: 1px solid #dddddd;
}

section.channels .items .item.half-container {
  background-color: transparent;
  padding-top: 0;
  height: auto;
  border: none;
}

section.channels .items .item + .item {
  margin-left: 0.2rem;
}

section.channels .items .item .half {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc((100% - 0.2rem) / 2);
  background-color: #de1f2b;
  border-radius: 5px;
}

section.channels .items .item.black .half {
  background-color: #000;
}

section.channels .items .item.grey .half {
  background-color: #999999;
}

section.channels .items .item.transparent .half {
  background-color: transparent;
  border: 1px solid #dddddd;
}

section.channels .items .item .half + .half {
  margin-top: 0.2rem;
}

section.channels .items .item .text {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

section.channels .items .item .text span {
  font-size: 0.19rem;
  line-height: 0.26rem;
  letter-spacing: -0.003em;
  color: #fff;
  display: block;
}

section.channels .items .item .text span a {
  color: #fff;
}

section.channels .items .item.transparent .text span {
  color: #000;
}

section.channels .items .item.transparent .text span a {
  color: #000;
}

section.channels .items .item .text span img {
  max-width: 100%;
}

section.channels .items .item .text span.medium {
  font-size: 0.23rem;
  line-height: 0.3rem;
  font-weight: 900;
}

section.channels .items .item .text span.bold {
  font-size: 0.3rem;
  line-height: 0.34rem;
  font-weight: 900;
}

section.channels .items .item .text span.boldest {
  font-size: 0.48rem;
  line-height: 0.5rem;
  font-weight: 900;
}

section.channels .items .item .text span.with-image {
  font-size: 0;
  text-align: center;
}

section.channels .items .item .text span.with-image img {
  width: 0.53rem;
  margin-right: 0.2rem;
  vertical-align: middle;
}

section.channels .items .item .text span.with-image span {
  max-width: calc(100% - 0.73rem);
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-weight: 900;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

section.channels .items .item .text span + span {
  margin-top: 0.2rem;
}

section.channels .items .item .text span + span.small-gap {
  margin-top: 0.05rem;
}

section.channels .bank-accounts {
  margin-top: 0.7rem;
}

section.channels .bank-accounts .bank-account {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid #e5e5e5;
}

section.channels .bank-accounts .bank-account:last-child {
  border-bottom: 1px solid #e5e5e5;
}

section.channels .bank-accounts .bank-account .description {
  position: relative;
  margin-left: 1.5%;
  width: 20%;
  padding-right: 0.4rem;
  font-size: 0.18rem;
  line-height: 0.26rem;
  letter-spacing: -0.001em;
  color: #231f20;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .description:after {
  content: '';
  position: absolute;
  width: 0.27rem;
  height: 0.15rem;
  background-image: url(Icons/icon-right-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  margin-top: -0.075rem;
}

section.channels .bank-accounts .bank-account .bank-name {
  position: relative;
  margin-left: 2.12%;
  width: 20%;
  font-size: 0.26rem;
  font-weight: 900;
  line-height: 0.34rem;
  letter-spacing: -0.003em;
  color: #de1f2b;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .bank-name.small {
  font-size: 0.2rem;
  line-height: 0.26rem;
}

section.channels .bank-accounts .bank-account .iban {
  position: relative;
  margin-left: 2.12%;
  width: 52.92%;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .iban .line {
}

section.channels .bank-accounts .bank-account .iban .line + .line {
  margin-top: 0.1rem;
}

section.channels .bank-accounts .bank-account .iban .line .title {
  width: 1.15rem;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.35rem;
  letter-spacing: -0.001em;
  color: #000000;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .iban .line .text {
  font-size: 0.18rem;
  font-weight: 900;
  line-height: 0.35rem;
  letter-spacing: -0.001em;
  color: #000000;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .iban .line .copy {
  width: 1.09rem;
  margin-left: 0.18rem;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 0.35rem;
  letter-spacing: -0.001em;
  color: #000000;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
}

section.channels .bank-accounts .bank-account .iban .line .copy:active {
  border-color: #000;
}

section.channels .bank-accounts .bank-account .iban .line .column {
  width: 1.5rem;
  max-width: 33%;
  display: inline-block;
  vertical-align: top;
}

section.channels .bank-accounts .bank-account .iban .line .column .title {
  width: 100%;
}

/* Foreign Currency */
section.foreign-currency {
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.95rem;
  background-color: #f3f3f3;
}

section.foreign-currency .title {
  font-size: 0.36rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #de1f2b;
}

section.foreign-currency .table {
  margin-top: 0.6rem;
  width: 100%;
  max-width: 8.14rem;
  display: inline-block;
}

section.foreign-currency .table .row {
  height: 0.65rem;
  border-bottom: 1px solid #dddddd;
}

section.foreign-currency .table .row:first-child {
  border-top: 1px solid #dddddd;
}

section.foreign-currency .table .row.title {
  font-size: 0;
  background-color: #ffffff;
}

section.foreign-currency .table .row .column {
  width: 16%;
  height: 100%;
  border-left: 1px solid #dddddd;
  display: inline-block;
  vertical-align: middle;
}

section.foreign-currency .table .row .column:last-child {
  border-right: 1px solid #dddddd;
}

section.foreign-currency .table .row .column span {
  font-size: 0.18rem;
  line-height: 1em;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000000;
}

/* Tabs */

section.tabs {
  position: relative;
  min-height: 7rem;
  background-color: #f9f7f7;
  overflow: hidden;
}

section.tabs .tab-menu {
  position: relative;
  text-align: center;
  background-color: #fff;
}

section.tabs .tab-menu a {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  font-size: 0.15rem;
  line-height: 1.1rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.002em;
  display: inline-block;
  vertical-align: middle;
}

section.tabs .tab-menu a:hover {
  color: #de1f2b;
}

section.tabs .tab-menu a.active {
  color: #de1f2b;
}

section.tabs .tab-menu span {
  content: '';
  position: absolute;
  width: 0;
  height: 0.05rem;
  background-color: #de1f2b;
  left: 0;
  bottom: 0.25rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

section.tabs .tab-items {
  position: relative;
  height: 100%;
}

section.tabs .tab-items:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.6rem;
  left: 0;
  top: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.05);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0.05)),
    color-stop(100%, rgba(0, 0, 0, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

section.tabs .tab-items:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.6rem;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.05);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(100%, rgba(0, 0, 0, 0.05))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

section.tabs .tab-items .container {
  height: 6rem;
}

section.tabs .tab-items .tab-item {
  position: relative;
  height: 100%;
  z-index: 2;
  display: none;
}

section.tabs .tab-items .tab-item.active {
  display: block;
}

section.tabs .tab-items .tab-item:after {
  content: '';
  position: absolute;
  width: 8.86rem;
  height: 5.3rem;
  right: -2.77rem;
  top: 0;
  background-image: url(Images/tab-bg-left.png);
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: -1;
}

section.tabs .help {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  height: 100%;
  padding: 0.3rem 0.1rem;
}

section.tabs .help .icon {
  display: block;
  width: 0.88rem;
  margin-right: auto;
}

section.tabs .help .title {
  font-weight: 900;
  font-size: 0.48rem;
  line-height: 1.2em;
  letter-spacing: -0.003em;
  color: #f73f40;
}

section.tabs .help * + .title {
  margin-top: 0.25rem;
}

section.tabs .help .text {
  font-weight: 400;
  font-size: 0.22rem;
  line-height: 1.45em;
  letter-spacing: -0.01em;
  color: #272727;
}

section.tabs .help * + .text {
  margin-top: 0.15rem;
}

section.tabs .help .form {
  display: block;
  margin-left: -0.15rem;
  margin-right: -0.15rem;
}

section.tabs .help * + .form {
  margin-top: 0.2rem;
}

section.tabs .help .form .box {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: calc(50% - 0.3rem);
  margin-left: 0.15rem;
  margin-right: 0.15rem;
}

section.tabs .help .form .box:nth-child(n + 3) {
  margin-top: 0.5rem;
}

section.tabs .help .form .box .subtitle {
  margin-top: calc(-0.12rem - 1.2em);
  margin-bottom: 0.12rem;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #272727;
}

section.tabs .help .form .box:first-child .subtitle {
  margin-top: 0;
}

section.tabs .help .form .form-item {
  position: relative;
}

section.tabs .help .form .form-item input {
  position: relative;
  width: 100%;
  height: 0.9rem;
  padding-left: 0.25rem;
  padding-right: 0.65rem;
  padding-top: 0.18rem;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: rgb(39, 39, 39);
  border-radius: 0.1rem;
  border: 1px solid #dbdbdb;
  transition: 0.2s border-color ease;
  -webkit-transition: 0.2s border-color ease;
  -ms-transition: 0.2s border-color ease;
  -moz-transition: 0.2s border-color ease;
  -o-transition: 0.2s border-color ease;
}

section.tabs .help .form .form-item label {
  position: absolute;
  top: 0.36rem;
  left: 0.25rem;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: rgba(39, 39, 39, 0.25);
  cursor: text;
  transition: 0.2s top ease;
  -webkit-transition: 0.2s top ease;
  -ms-transition: 0.2s top ease;
  -moz-transition: 0.2s top ease;
  -o-transition: 0.2s top ease;
}

section.tabs .help .form .form-item .unit {
  position: absolute;
  top: 0.33rem;
  right: 0.29rem;
  font-weight: 900;
  font-size: 0.18rem;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  color: rgba(39, 39, 39, 0.5);
  transition: 0.2s top ease;
  -webkit-transition: 0.2s top ease;
  -ms-transition: 0.2s top ease;
  -moz-transition: 0.2s top ease;
  -o-transition: 0.2s top ease;
}

section.tabs .help .form .form-item input:focus,
section.tabs .help .form .form-item input.focus {
  border-color: black;
}

section.tabs .help .form .form-item input:focus ~ label,
section.tabs .help .form .form-item input.focus ~ label {
  top: 0.1rem;
}

section.tabs .help .form .form-item input:focus ~ .unit,
section.tabs .help .form .form-item input.focus ~ .unit {
  top: 0.43rem;
}

section.tabs .help .form .count {
  position: relative;
  width: 100%;
  height: 0.9rem;
  text-align: center;
  border-radius: 0.1rem;
  background-color: #e7e7e7;
}

section.tabs .help .form .count label {
  font-weight: 400;
  font-size: 0.12rem;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: #272727;
}

section.tabs .help .form .count span {
  display: block;
  font-weight: 900;
  font-size: 0.32rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #272727;
}

section.tabs .help .form .button {
  width: 100%;
}

section.tabs .help .desc {
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #272727;
}

section.tabs .help * + .desc {
  margin-top: 0.38rem;
}

section.tabs .help .desc b {
  font-weight: 900;
  color: #f73f40;
}

section.tabs .help .desc a {
  font-weight: 700;
  color: inherit;
  text-decoration: underline;
}

section.tabs .help .desc p + p {
  margin-top: 0.12rem;
}

section.tabs .help .form .desc {
  margin-left: 0.15rem;
  margin-right: 0.15rem;
}

section.tabs .help .form * + .desc {
  margin-top: 0.23rem;
}

section.tabs .help .remaining {
  position: absolute;
  left: 0;
  bottom: 0.7rem;
}

section.tabs .help .remaining img {
  display: inline-block;
  vertical-align: top;
  width: 0.24rem;
}

section.tabs .help .remaining .time {
  display: inline-block;
  vertical-align: top;
  width: 2.76rem;
  margin-left: 0.15rem;
}

section.tabs .help .remaining .time span {
  font-weight: 400;
  font-size: 0.22rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: #272727;
}

section.tabs .help .remaining .time span b {
  font-weight: 900;
}

section.tabs .help .remaining .time .bar {
  position: relative;
  display: block;
  height: 3px;
  margin-top: 0.12rem;
  border-radius: 3px;
  background-color: rgba(247, 63, 64, 0.25);
}

section.tabs .help .remaining .time .bar div {
  position: relative;
  height: 100%;
  background-color: #f73f40;
}

section.tabs .boxes {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  height: 100%;
  padding: 0.76rem 0;
}

section.tabs .boxes .box {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 0.5rem);
  padding: 0.23rem 0.2rem 0.2rem 0.34rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.15rem;
  background: rgb(247, 63, 64);
  background: linear-gradient(
    36deg,
    rgba(247, 63, 64, 1) 0%,
    rgba(222, 31, 43, 1) 60%
  );
}

section.tabs .boxes .box:nth-child(n + 3) {
  margin-top: 0.4rem;
}

section.tabs .boxes .box .icon {
  position: absolute;
  width: 0.58rem;
  top: -0.29rem;
  left: -0.29rem;
}

section.tabs .boxes .box .title {
  padding-bottom: 0.04rem;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

section.tabs .boxes .box .text {
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.6em;
  letter-spacing: -0.025em;
  color: white;
}

section.tabs .boxes .box * + .text {
  margin-top: 0.12rem;
}

section.tabs .right {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding-left: 1.32rem;
  padding-right: 0.5rem;
}

section.tabs .right .media {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 95%;
}

section.tabs .right .media iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.15rem;
}

section.tabs .right .media video {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0.15rem;
}

section.tabs .right .media img {
  position: absolute;
  max-width: 100%;
  max-height: 4rem;
  top: 42%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

section.tabs .right .media .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}

section.tabs .right .media .btn-play img {
  position: relative;
  display: inline-block;
  width: 0.55rem;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

/* Footer */

footer {
  background-color: #3e3e3e;
}

footer .top {
  position: relative;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

footer .top:after {
  content: '';
  position: absolute;
  width: calc(100% + 0.4rem);
  height: 1px;
  left: -0.2rem;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.09);
}

footer .top .logo {
  width: 1.51rem;
}

footer .top .logo img {
  width: 100%;
}

footer .top .social {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.14rem;
}

footer .top .social span {
  font-size: 0.15rem;
  color: #fff;
  margin-right: 0.3rem;
  display: inline-block;
  vertical-align: middle;
}

footer .top .social a {
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.05rem;
  margin-right: 0.05rem;
  display: inline-block;
  vertical-align: middle;
}

footer .top .social a img {
  width: 0.28rem;
}

footer .bottom {
  position: relative;
  padding-top: 0.3rem;
  padding-bottom: 0.6rem;
}

footer .bottom .copyright {
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 0.8);
}

footer .bottom .kvkk {
  position: absolute;
  top: 0.3rem;
  right: 0;
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 0.8);
}
