.wow {
  visibility: hidden
}

.animated {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite
}

@keyframes floating {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }

  100% {
    transform: translateY(0)
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(10px)
  }

  100% {
    -webkit-transform: translateY(0)
  }
}

.floatoss {
  animation-name: floatoss;
  -webkit-animation-name: floatoss;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite
}

@keyframes floatoss {
  0% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(20px) rotate(2deg)
  }

  100% {
    transform: translateY(0) rotate(-2deg)
  }
}

@-webkit-keyframes floatoss {
  0% {
    -webkit-transform: translateY(0) rotate(-2deg)
  }

  50% {
    -webkit-transform: translateY(20px) rotate(2deg)
  }

  100% {
    -webkit-transform: translateY(0) rotate(-2deg)
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite
}

@keyframes pulse {
  0% {
    transform: scale(.9);
    opacity: .7
  }

  50% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(.9);
    opacity: .7
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(.9);
    opacity: .7
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1
  }

  100% {
    -webkit-transform: scale(.9);
    opacity: .7
  }
}

.spin {
  animation-name: spin;
  -webkit-animation-name: spin;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(360deg)
  }
}

.bgSlideLeft {
  -webkit-animation-name: bgSlideLeft;
  animation-name: bgSlideLeft;
  z-index: -1
}

@keyframes bgSlideLeft {
  0% {
    left: 100%
  }

  100% {
    left: 0
  }
}

.bgSlideRight {
  right: 0;
  left: auto;
  -webkit-animation-name: bgSlideRight;
  animation-name: bgSlideRight;
  z-index: -1
}

@keyframes bgSlideRight {
  0% {
    right: 100%
  }

  100% {
    right: 0
  }
}

@-webkit-keyframes zoomOutSlider {
  from {
    -webkit-transform: scale3d(1.4, 1.4, 1.4);
    transform: scale3d(1.4, 1.4, 1.4)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes zoomOutSlider {
  from {
    -webkit-transform: scale3d(1.4, 1.4, 1.4);
    transform: scale3d(1.4, 1.4, 1.4)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.zoomOutSlider {
  -webkit-animation-name: zoomOutSlider;
  animation-name: zoomOutSlider
}

@keyframes pulseX {
  0% {
    transform: scale(.8);
    opacity: .7
  }

  100% {
    transform: scale(1.4);
    opacity: 1
  }
}

@-webkit-keyframes pulseX {
  0% {
    -webkit-transform: scale(.8);
    opacity: .7
  }

  100% {
    -webkit-transform: scale(1.4);
    opacity: 1
  }
}

.loading-logo.pulse {
  animation-name: pulseX;
  -webkit-animation-name: pulseX;
  -webkit-animation-duration: 4s;
  animation-duration: 4s
}

:root {
  --color-primary: #ec3c35;
  --color-gray: #efefef;
  --color-gray-light: #f3f3f3;
  --color-gray-dark: #797979;
  --color-gray-bg: #e5e5e5;
  --color-white: #ffffff;
  --color-black: #212121;
  --color-black-dark: #000000;
  --color-black-light: #434343;
  --color-red: #f00;
  --color-green: #69cc69;
  --color-yellow: #f6dd4b;
  --color-yellow-light: #fffcec;
  --color-orange: #feebcd;
  --color-purple: #882ff6;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-primary: 'Poppins', sans-serif;
  --font-family-secondary: 'Inter', sans-serif
}

*,
::after,
::before {
  box-sizing: border-box
}

@-ms-viewport {
  width: device-width
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--font-family-primary);
  line-height: 1.4em;
  font-weight: 700;
  margin: 0
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
p small {
  font-size: 70%;
  line-height: normal;
  letter-spacing: normal;
  text-transform: none
}

p {
  font-weight: 400;
  line-height: 1.6em
}

p b {
  font-weight: 600
}

h1 {
  font-size: 36px
}

h2 {
  font-size: 32px
}

h3 {
  font-size: 28px
}

h4 {
  font-size: 24px
}

h5 {
  font-size: 20px
}

h6 {
  font-size: 16px
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden
}

html.overflow {
  overflow: hidden
}

html.overflow .header.wow {
  -webkit-animation-name: none !important;
  animation-name: none !important;
  animation-delay: 0s !important
}

@keyframes loading-placeholder {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

img {
  border: 0;
  vertical-align: middle;
  color: transparent
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block
}

figure {
  margin: 0;
  padding: 0
}

.-unstyled {
  margin: 0;
  padding: 0;
  list-style: none
}

.-flex {
  display: flex;
  flex-flow: wrap
}

.-flex--justalign-center {
  justify-content: center;
  align-items: center
}

.-flex--justalign-startcenter {
  justify-content: flex-start;
  align-items: center
}

.-flex--justalign-endcenter {
  justify-content: flex-end;
  align-items: center
}

.-flex--justalign-spacebetweencenter {
  justify-content: space-between;
  align-items: center
}

.-flex--nowrap {
  flex-flow: nowrap;
  overflow-y: auto
}

.-flex--column {
  flex-flow: column
}

button {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  min-height: 30px;
  outline: 0;
  box-shadow: none
}

[data-toggle] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-color: var(--color-white);
  transition: transform .5s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  overflow-y: auto;
  z-index: 12
}

[data-toggle].open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

[data-toggle].open>* {
  pointer-events: auto
}

.collapse.open .icon--expand {
  transform: rotate(180deg)
}

.collapse__item {
  display: none
}

.visible-lg,
.visible-md {
  display: none !important
}

.swiper-container {
  visibility: hidden;
  opacity: 0;
  transition: .5s ease
}

.swiper-container-initialized {
  visibility: visible;
  opacity: 1
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: var(--font-family-primary);
  overflow-x: hidden
}

.container {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2
}

.icon {
  display: inline-block;
  vertical-align: middle
}

.icon::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px
}

.icon--ig::after {
  background-image: url(../../images/icon-ig.png)
}

.icon--tiktok::after {
  background-image: url(../../images/icon-tiktok.png)
}

.icon--fb::after {
  background-image: url(../../images/icon-fb.png)
}

.icon--yt::after {
  background-image: url(../../images/icon-yt.png)
}

.icon--mail::after {
  background-image: url(../../images/icon-mail.png)
}

input[type] {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  outline: 0;
  font-size: 15px;
  font-family: var(--font-family-primary);
  width: 100%
}

.input-group {
  display: flex;
  justify-content: space-between
}

.input-group-control {
  min-height: 38px;
  flex: 1
}

.input-group-btn:first-child {
  padding-right: 15px
}

.input-group-btn:last-child {
  padding-left: 15px
}

.input-group-btn .button {
  min-height: 38px
}

.btn {
  font-family: var(--font-family-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  border-radius: 8px;
  transition: .5s ease;
  min-width: 100px;
  padding: 8px 20px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 2px;
}

.btn:hover {
  background-color: #ab1610
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary)
}

.btn--white:hover {
  background-color: #ccc
}

.btn--line {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 5px
}

.btn--line:hover {
  background-color: var(--primary);
  color: var(--color-white)
}

img.lazyload:not([src]) {
  visibility: hidden
}

.lazyload,
.lazyloading {
  opacity: 0
}

.lazyloaded {
  opacity: 1;
  transition-duration: .5s;
  transition-property: opacity, transform;
  transition-delay: 2s, 0s;
  transition-timing-function: ease
}

main.lazyloaded {
  transition-delay: 1s
}

.item {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden
}

.item--absolute .item__description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  z-index: 5
}

.embed__frame,
.item__figure {
  position: relative;
  overflow: hidden;
  padding-bottom: 50%;
  z-index: 4;
  background-color: var(--color-gray)
}

.embed__frame::after,
.item__figure::after {
  content: "";
  display: block;
  background-color: var(--color-gray-light);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  animation: 1.5s loading-placeholder ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

.embed__frame a,
.embed__frame iframe,
.embed__frame img,
.item__figure a,
.item__figure iframe,
.item__figure img {
  width: 100%;
  height: 100%
}

.embed__frame iframe,
.embed__frame img,
.item__figure iframe,
.item__figure img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3
}

.embed__frame img,
.item__figure img {
  object-fit: cover
}

.item__description {
  padding-top: 15px
}

.embed {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0)
}

.embed__frame {
  padding-bottom: 56%
}

.embed__frame.-vidio {
  transform: scale(1.05)
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: var(--color-black);
  transition: .5s ease
}

header.fixed .header {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5);
  background-image: linear-gradient(to top, #f76f65, #ec3c35)
}

header.fixed .header__col_left {
  min-height: 70px
}

header .header {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5);
  background-image: linear-gradient(to top, #f76f65, #ec3c35)
}

header .header__logo img {
  object-fit: contain;
  object-position: left center
}

header .header__col_left {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: min-height .5s ease;
  min-height: 67px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px
}

header .header__col_left_right .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 76px;
  min-height: 60px;
  position: relative;
  z-index: 12
}

header .header__col_left_right .hamburger.collapsed .hamburger-box-inner::after,
header .header__col_left_right .hamburger.collapsed .hamburger-box-inner::before {
  width: 24px
}

header .header__col_left_right .hamburger.collapsed .hamburger-box-inner::before {
  top: -6px;
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(.7, 1)
}

header .header__col_left_right .hamburger.collapsed .hamburger-box-inner::after {
  bottom: -6px;
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(.7, 1)
}

header .header__col_left_right .hamburger-box {
  width: 36px;
  height: 18px;
  display: inline-block;
  position: relative
}

header .header__col_left_right .hamburger-box-inner,
header .header__col_left_right .hamburger-box-inner::after,
header .header__col_left_right .hamburger-box-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 8px;
  background-color: var(--color-white);
  position: absolute;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease
}

header .header__col_left_right .hamburger-box-inner {
  top: 50%;
  margin-top: -2px
}

header .header__col_left_right .hamburger-box-inner::before {
  top: -8px
}

header .header__col_left_right .hamburger-box-inner::after {
  bottom: -8px
}

header .header__nav {
  text-align: center;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  background-color: var(--color-black);
  color: var(--color-white);
  z-index: 11
}

header .header__nav.open .header__nav_inner_list li a {
  opacity: 1;
  transform: scale(1) translateY(0)
}

header .header__nav_bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, .6);
  display: none
}

header .header__nav_inner {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%
}

header .header__nav_inner_list li {
  margin-top: 50px
}

header .header__nav_inner_list li:first-child {
  margin-top: 0
}

header .header__nav_inner_list li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  opacity: 0;
  transform: scale(.95) translateX(30px);
  transition: .5s ease
}

header .header__nav_inner_list li a:hover {
  border-bottom-color: var(--color-primary)
}

header .header__nav_inner_list li.active a {
  border-bottom-color: var(--color-white)
}

header .header__nav_inner:nth-child(1) a {
  transition-delay: 0.3s
}

header .header__nav_inner:nth-child(2) a {
  transition-delay: 0.6s
}

header .header__nav_inner:nth-child(3) a {
  transition-delay: 0.9s
}

header .header__nav_inner:nth-child(4) a {
  transition-delay: 1.2s
}

header .header__nav_inner:nth-child(5) a {
  transition-delay: 1.5s
}

header .header__nav_inner:nth-child(6) a {
  transition-delay: 1.8s
}

header .header__nav_inner:nth-child(7) a {
  transition-delay: 2.1s
}

header .header__nav_inner:nth-child(8) a {
  transition-delay: 2.4s
}

header .header__nav_inner:nth-child(9) a {
  transition-delay: 2.7s
}

header .header__nav_inner:nth-child(10) a {
  transition-delay: 3s
}

.unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.6em
}

.main {
  padding-top: 67px;
  padding-bottom: 180px
}

.section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px
}

.section__box {
  margin-bottom: 20px
}

.section__box:last-child {
  margin-bottom: 0
}

.section--headline {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  margin-top: -67px;
  color: var(--color-white);
  background-image: linear-gradient(343deg, #f76f65, #f76e64, #ec3c35 70%)
}

.section--headline .container {
  padding-top: 184px;
  height: 100%
}

@media (min-width:768px) {
  .hide-md {
    display: none !important
  }

  .visible-md {
    display: block !important
  }
}

@media (min-width:992px) {
  .hide-lg {
    display: none !important
  }

  .visible-lg {
    display: block !important
  }

  header.fixed .header__nav {
    padding-top: 0
  }

  header .header__col {
    display: flex;
    justify-content: space-between;
    align-items: center
  }

  header .header__col_left {
    min-height: 90px
  }

  header .header__nav {
    background-color: transparent;
    position: static;
    text-align: left;
    pointer-events: auto;
    overflow: initial;
    transform: none;
    padding-top: 0
  }

  header .header__nav_inner {
    padding: 0
  }

  header .header__nav_inner_list {
    display: flex
  }

  header .header__nav_inner_list li {
    margin-left: 45px;
    margin-top: 0
  }

  header .header__nav_inner_list li a {
    font-size: 18px;
    opacity: 1;
    transform: scale(1) translateY(0)
  }

  .main {
    padding-top: 90px
  }

  .section--headline {
    margin-top: -90px
  }

  .section--headline .container {
    padding-top: 120px
  }
}

.footer {
  background-color: var(--color-black)
}

.footer__body {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 12px;
  color: var(--color-white);
  text-align: center
}

.footer__body strong {
  font-weight: 600
}

.footer__socmed {
  text-align: left;
  margin: 30px auto;
  margin-bottom: 40px;
  max-width: 270px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43
}

.footer__socmed li {
  padding: 13px 0
}

.footer__menu {
  font-family: var(--font-family-secondary);
  font-size: 19px;
  font-weight: 700
}

.footer__menu li {
  padding: 15px 0
}

.footer .btn {
  font-size: 18px;
  padding: 8px 30px;
  margin-bottom: 50px;
  margin-top: 30px;
  color: var(--color-black)
}

@media (min-width:768px) {
  .footer__body {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .footer__body figure img {
    /* width: 215px;
      height: 149px; */
    margin: auto;
    display: block
  }

  .footer__socmed {
    max-width: 950px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer__socmed li {
    width: 25%;
    box-sizing: border-box;
    padding: 13px 5px;
  }

  .footer__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px
  }

  .footer__menu li {
    padding: 0 20px
  }

  .footer__menu .btn {
    margin: 0
  }
}

.inner--sm.container {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto
}

.section {
  text-align: center
}

.section .title {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-primary);
  -webkit-text-stroke: 1px var(--primary)
    /* text-transform: uppercase */
}

.section p {
  font-size: 15px;
  margin-bottom: 20px
}

.section p:last-child {
  margin-bottom: 0
}

.section__head {
  margin-bottom: 25px;
  font-weight: 700;
}

.section--headline figure img {
  max-width: 100%;
  object-fit: contain;
  height: auto
}

.section--headline p {
  font-size: 14px
}

.section--headline p.quotes {
  font-family: var(--font-family-cormorant);
  font-size: 28px;
  font-weight: 500
}

.section--headline .logo {
  margin-bottom: 25px;
  font-size: 25px;
  font-family: var(--font-family-secondary)
}

.section--headline .logo small {
  display: block;
  margin-bottom: 7px
}

.section--headline .top {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 40px
}

.section--headline .btn {
  box-shadow: 0 4px 10px 0 #be0500;
  color: var(--color-red);
  margin-bottom: 15px;
  font-weight: 600
}

.section--headline p {
  font-size: 13px;
  font-weight: 500
}

.section--headline_right {
  padding-top: 25px;
  margin-left: -10px;
  margin-right: -10px
}

.section--headline_right img {
  width: 100%;
  height: auto
}

.section--event {
  background-image: linear-gradient(340deg, #c4c4c4, #f1f1f1)
}

.section--event .btn {
  margin-top: 25px
}

.section--syarat .title {
  margin-bottom: 25px;
  text-align: center
}

.section--syarat_left {
  display: none
}

.section--syarat_right {
  text-align: left
}

.section--syarat_right ul {
  padding-left: 25px;
  margin-bottom: 50px
}

.section--syarat_right ul li {
  position: relative;
  padding-bottom: 20px
}

.section--syarat_right ul li:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-primary);
  border-radius: 50%
}

.section--syarat_right ul li:after {
  content: "";
  position: absolute;
  left: -23px;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%
}

.section--syarat_right ul li:last-child {
  padding-bottom: 0
}

.section--syarat_right .btn {
  max-width: 180px;
  margin: auto;
  cursor: pointer;
  display: block
}

.section--peserta {
  background-image: linear-gradient(172deg, #e9e9e9 25%, #fdfdfd 102%)
}

.section--peserta figure {
  width: 180px;
  margin: 0 auto 30px
}

.section--peserta_list .title {
  margin-bottom: 10px;
  font-weight: 500 !important;
}

.section--peserta_list li {
  margin-bottom: 70px
}

.section--peserta_list li:first-child p {
  max-width: 100%
}

.section--peserta_list li:last-child {
  margin-bottom: 0
}

.section--peserta_list li .btn {
  margin-top: 15px;
  /* padding: 1px 10px */
}

.section--peserta_list li p {
  max-width: 255px;
  margin: auto;
  margin-bottom: 20px
}

.section--video .title {
  margin-bottom: 25px
}

.section--video_left {
  margin-bottom: 30px
}

.section--video_right {
  position: relative
}

.section--video_right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-image: url(../images/icon-play.png);
  background-size: 100%
}

.section--form {
  background-image: linear-gradient(to bottom, #F7EBCC, #F7EBCC)
}

.section--form form {
  text-align: left
}

.section--step {
  background-image: linear-gradient(165deg, #e9e9e9, #fdfdfd)
}

.section--step_list {
  counter-reset: my-awesome-counter;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -25px
}

.section--step_list li {
  flex: 0 0 50%;
  counter-increment: my-awesome-counter;
  position: relative;
  padding: 25px 14px;
  display: flex;
  justify-content: center;
  align-content: center
}

.section--step_list li p {
  min-height: 135px;
  padding-top: 20px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 6px 7px 11px 0 rgba(236, 60, 53, .16);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  flex-direction: column
}

.section--step_list li::before {
  content: counter(my-awesome-counter);
  color: var(--color-white);
  background-image: linear-gradient(326deg, #f76f65, #ec3c35);
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  --size: 45px;
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0 5px 0 5px;
  text-align: center;
  box-shadow: 1px 1px 0 #999;
  padding: 12px
}

.section--login {
  background-image: url(../../images/bg-form.webp);
  color: var(--primary);
  background-position: top;
  min-height: 100vh;
  align-content: center;
}

.section--login .title {
  color: var(--primary)
}

.section--login .btn--white {
  margin-top: 30px;
  margin-bottom: 40px
}

.section--login p {
  font-size: 17px
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, .8);
  z-index: 9;
  pointer-events: none;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  opacity: 0
}

.popup.video.open {
  opacity: 1;
  pointer-events: auto
}

.popup.video.open .popup-box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.popup.video .popup-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 30px
}

.popup.video .popup-box {
  background-color: transparent;
  box-shadow: none;
  max-width: 700px;
  min-height: auto;
  padding: 0;
  position: relative;
  opacity: 0;
  flex: 1;
  transform: scale(.9);
  transition: .5s ease;
  border-radius: 15px
}

.popup.video .popup-close {
  position: absolute;
  right: -15px;
  top: -15px;
  background-color: var(--color-primary);
  background-image: url("../images/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: .3s ease
}

.popup.video .popup-close:hover {
  background-color: var(--color-yellow)
}

.popup.video .popup-body {
  text-align: center;
  width: 100%
}

.popup.video .popup-body iframe {
  width: 100%;
  aspect-ratio: 16/9
}

@media (min-width:576px) {
  .section--headline .logo {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .section--headline .logo img {
    padding-left: 10px
  }

  .section--peserta_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
  }

  .section--peserta_list li {
    padding: 0 20px;
    flex: 0 0 50%
  }

  .section--peserta_list li:first-child {
    flex: 0 0 100%
  }

  .section--step_list {
    justify-content: center
  }

  .section--step_list li {
    flex: 0 0 33.33%
  }

  .section--step_list li p {
    padding-bottom: 10px
  }

  .section--login .btn {
    margin: 0 10px
  }
}

@media (min-width:768px) {
  .section--headline .section__body {
    display: flex
  }

  .section--headline_right {
    flex: 0 0 40%
  }

  .section--headline_left {
    flex: 0 0 60%;
    text-align: left
  }

  .section--headline .logo {
    justify-content: flex-start
  }

  .section--event {
    background-image: url("../images/img-left.webp"), url("../images/img-right.webp"), linear-gradient(340deg, #c4c4c4, #f1f1f1);
    background-size: 175px, 175px, 100%;
    background-position: left bottom, right bottom, center
  }

  .section--event .section__body {
    max-width: 450px;
    margin: auto
  }

  .section--syarat .section__body {
    display: flex
  }

  .section--syarat_left {
    display: flex;
    flex: 0 0 40%;
    align-items: flex-start;
    padding-top: 20px
  }

  .section--syarat_right {
    flex: 0 0 60%;
    padding-left: 40px
  }

  .section--syarat_right ul {
    margin-bottom: 30px
  }

  .section--syarat_right .btn {
    margin: 0;
    /* margin-left: 25px */
  }

  .section--syarat .title {
    text-align: left
  }

  .section--video .section__body {
    display: flex
  }

  .section--video_right {
    flex: 0 0 40%
  }

  .section--video_right img {
    width: 100%
  }

  .section--video_left {
    flex: 0 0 60%;
    text-align: right;
    padding-right: 40px
  }

  .section--video .title {
    text-align: right
  }

  .section--step_list {
    margin-bottom: 0
  }

  .section--step_list li {
    flex: 0 0 25%
  }
}

@media (min-width:992px) {
  header .header {
    background-image: none;
    box-shadow: none
  }

  .section .title {
    font-size: 32px;
    font-weight: 700
  }

  .section__head {
    margin-bottom: 40px
  }

  .section--headline_left {
    text-align: left;
    flex: 0 0 40%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
  }

  .section--headline_right {
    flex: 0 0 65%;
    margin-left: 0;
    margin-right: 0
  }

  .section--headline .logo {
    justify-content: flex-start
  }

  .section--event {
    background-size: 210px, 210px, 100%
  }

  .section--event .section__body {
    max-width: 600px
  }

  .section--peserta_list li {
    flex: 0 0 33.33%;
    margin-bottom: 0
  }

  .section--peserta_list li:first-child {
    flex: 0 0 33.33%
  }

  .section--video {
    background-image: url("../../images/ornament-left.png"), url("../images/ornament-right.png");
    background-size: 96px auto, 120px auto;
    background-position: 0 50px, 100% calc(100% - 50px)
  }

  .section--video .section__body {
    max-width: 730px;
    margin: auto
  }
}

@media (min-width:1200px) {
  .section--step_list {
    max-width: 930px;
    margin: auto
  }

  .section--step_list li p {
    height: 185px
  }

  .section--video .section__body {
    max-width: 1200px;
    justify-content: center
  }

  .section--video_left {
    flex: 0 0 50%
  }

  .section--event {
    background-size: 260px, 260px, 100%
  }

  .section--syarat_right ul li:before {
    top: 9px
  }

  .section--syarat_right ul li::after {
    top: 11px
  }

  .section--headline {
    padding: 0
  }

  .section--headline figure {
    width: 350px
  }

  .section--headline figure img {
    width: 100%
  }

  .section--headline .top {
    font-size: 40px
  }

  .section--headline .logo small {
    font-size: 20px;
    margin-bottom: 0
  }

  .section--headline .logo img {
    width: 200px
  }

  .section .title {
    font-size: 25px
  }

  .section p {
    font-size: 16px
  }

  .section--notice .title {
    font-size: 3rem !important;
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1320px
  }

  .btn {
    font-size: 20px
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px
  }

  .section .title {
    font-size: 36px
  }

  .section--headline {
    padding: 0
  }

  .section--headline figure {
    width: 500px
  }

  .section--headline .top {
    font-size: 60px
  }

  .section--headline .logo small {
    font-size: 20px;
    margin-bottom: 0
  }

  .section--headline .logo img {
    width: 267px
  }

  .section--headline p {
    font-size: 16px
  }

  .section--event {
    background-size: 330px, 330px, 100%
  }

  .section--event .section__body {
    max-width: 730px
  }

  .section--syarat_left,
  .section--syarat_right {
    flex: 0 0 50%
  }

  .section--syarat_left .btn,
  .section--syarat_right .btn {
    max-width: 220px
  }

  .section--syarat_left {
    padding-right: 40px
  }

  .section--peserta .btn {
    font-size: 16px
  }

  .section--login .inner--sm {
    max-width: 980px
  }

  .section--login .title {
    font-size: 50px
  }

  .section--login .title-second {
    font-size: 40px
  }

  .section--login p {
    font-size: 25px;
    /* margin-bottom: 70px */
  }

  .section--login h5 {
    margin-bottom: 70px
  }

  .section--login .section__body div {
    display: flex;
    justify-content: center
  }

  .section--login .section__body_btn .btn {
    flex: 1;
    max-width: 350px
  }

  .section--notice .title {
    font-size: 4rem !important;
  }
}

header.page {
  background: linear-gradient(to top, #f76f65, #ec3c35);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5)
}

.section--pemenang .container {
  padding-top: 100px
}

.section--pemenang h1 {
  color: #ec3c35;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px
}

.section--pemenang p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px
}

.tabs__nav {
  margin: 0;
  padding: 0;
  list-style: none
}

.tabs__nav li {
  background: 0 0;
  color: #ec3c35;
  display: inline-block;
  padding: 9px 32px;
  cursor: pointer;
  border: 1px solid #ec3c35;
  border-radius: 4px;
  transition: all .3s ease;
  margin: 0 40px;
  font-size: 18px;
  font-weight: 600
}

.tabs__nav li.active {
  background: #ec3c35;
  color: #fff
}

.tabs__content {
  display: none;
  max-width: 1080px;
  margin: auto;
  transition: all .3s ease
}

.tabs__content.active {
  display: inherit
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 60px
}

.tabs__list li {
  cursor: pointer;
  margin-bottom: 58px;
  display: block;
  flex: 0 0 25%
}

.tabs__list li:hover figure {
  transform: scale(1.05)
}

.tabs__list li:hover span {
  color: #ec3c35
}

.tabs__list figure {
  transition: all .3s ease;
  overflow: hidden;
  border-radius: 10px;
  transform-origin: 50% 100%;
  margin: auto
}

.tabs__list span {
  max-width: 225px;
  transition: all .3s ease;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin: 15px auto 0
}

/* .pagination {
  margin-top: 70px
}

.pagination li {
  padding: 0 12px
}

.pagination li a {
  min-width: 50px;
  min-height: 50px;
  display: block;
  text-align: center;
  border-radius: 5px !important;
  font-size: 18px;
  font-weight: 500;
  color: #ec3c35;
  background-color: #fff;
  border: 1px solid #ec3c35
}

.pagination li a.active,
.pagination li a:hover {
  border-radius: 5px !important;
  background-color: #ec3c35 !important;
  color: #fff
} */

.m-none {
  display: inline-block !important
}

.d-none {
  display: none !important
}

@media (max-width:992px) {
  .pagination li {
    padding: 0 5px
  }

  .pagination__arrow a {
    position: relative
  }

  .pagination__arrow a::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 14px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg)
  }

  .pagination__arrow.--right a::before {
    left: 12px;
    transform: rotate(135deg)
  }

  .tabs__list li {
    flex: 0 0 33.33%
  }

  .m-none {
    display: none !important
  }

  .d-none {
    display: inline-block !important
  }
}

@media (max-width:767px) {
  .tabs__list figure {
    width: 180px
  }

  .tabs__list span {
    max-width: 180px
  }

  .tabs__nav li {
    font-size: 15px;
    padding: 7px 25px;
    margin: 0 25px
  }

  .section--pemenang p {
    font-size: 15px
  }

  .section--pemenang .container {
    padding-top: 50px
  }

  .section--pemenang h1 {
    font-size: 22px;
    margin-bottom: 20px
  }
}

@media (max-width:500px) {
  .tabs__list {
    padding-top: 50px
  }

  .tabs__list span {
    font-size: 12px;
    max-width: 145px
  }

  .tabs__list li {
    margin-bottom: 20px;
    flex: 0 0 50%
  }

  .tabs__list figure {
    width: 145px
  }

  .tabs__nav li {
    margin: 0 15px
  }
}

.section--pemenang li figure img {
  width: 225px;
  height: 300px;
  object-fit: cover;
  object-position: top
}

/* .icon--fb::after {
  background-image: url("../images/2022/sosmed-fb.png")
} */
.icon--fb::after {
  background-image: url("../images/icon-fb.png")
}

.icon--ig::after {
  background-image: url("../images/icon-ig.png")
}

.icon--tiktok::after {
  background-image: url("../images/icon-tiktok.png")
}

.icon--yt::after {
  background-image: url("../images/icon-yt.png")
}

.header .header__nav_inner_list li a {
  font-family: "Inter", sans-serif
}

.items_step.active .bullet_step,
.red-bt,
.section--syarat_right ul li::after {
  background-color: var(--primary)
}

.field:focus-within,
.section--syarat_right ul li::before,
.text-left .label-info,
.title-form {
  border-color: var(--primary)
}

.header .header__nav_inner_list li .btn,
.header .header__nav_inner_list li a:hover {
  border-color: #fff
}

.btn.btn--white,
.field-disabled,
.input_form[disabled],
.input_form[readonly]:not(.datepicker),
.items_step.active .caption-step p,
.section .title,
.text-left .label-info,
.title-form,
select[readonly].select2-hidden-accessible+.select2-container--default .select2-selection--single {
  color: var(--primary)
}

.select2-results__options,
.select2-selection__rendered {
  color: var(--primary) !important
}

.btn {
  background-color: var(--primary);
  font-weight: 700;
  letter-spacing: 0;
  border: 0
}

.section--syarat_right .btn,
.btn.btn--secondary {
  background-color: var(--primary);
}

.btn:hover {
  background-color: #5E1813
}

.btn.btn--red {
  background-color: var(--primary);
  border-bottom: 0;
  color: #fff;
}

.btn.btn--red:hover {
  background-color: #5E1813;
  color: #fff
}

.btn.btn--white {
  background-color: #fff;
  border-bottom: 0
}

.btn.btn--white:hover {
  background-color: #5E1813;
  color: #fff
}

.btn.btn--line {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn.btn--line:hover {
  color: #5E1813;
  border: 1px solid #5E1813;
}

div.section--headline {
  background-image: url("../images/webp/bg-headline.webp");
  margin-bottom: -1px
}

div.section--login {
  background-image: url("../images/webp/bg-pendaftaran.webp");
  margin-bottom: -1px
}

div.section--notice {
  background-image: url("../images/webp/bg-notice.webp");
  margin-bottom: -1px;
  padding: 10rem 0;
}

@media (max-width: 768px) {
  div.section--notice {
    background-image: url("../images/webp/bg-notice-mobile.webp");
  }

  div.section--login {
    background-image: url("../images/webp/bg-pendaftaran-mobile.webp");
  }

  .section--login .section__body_btn {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .section--login .section__body_btn .btn {
    width: 100%;
    max-width: 320px
  }

  .section--login .title-second {
    font-size: 20px
  }

  .btn--notice {
    margin-top: 0;
  }

  .btn--line {
    margin-top: 0;
  }

  .section--notice .title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    -webkit-text-stroke: 1px #fff;
  }
}

div.section--headline .title,
div.section--login .title,
div.section--notice .title {
  color: var(--primary);
}

header .header,
header.fixed .header {
  background-image: linear-gradient(to left, #D2BA5D, #6B461D 50%)
}

.section--headline {
  min-height: 100vh;
  margin-top: 0
}

.section--headline .btn {
  margin-bottom: 0;
  box-shadow: 0 4px 10px 0 rgba(97, 101, 134, 0.4)
}

.section--headline .logo-text img,
.section--headline .section__body {
  height: 100%
}

.section--headline .logo {
  margin-bottom: 30px
}

.section--headline .logo-text {
  margin-bottom: 30px
}

.section--headline .logo-colab {
  display: block;
  margin-top: 15px
}

.section--headline .logo-colab img {
  width: auto;
  height: 45px;
  object-fit: contain;
  padding-left: 0
}

.section--headline .logo-colab img.indosiar {
  height: 68px;
  margin-right: 15px
}

.section--peserta {
  background-image: url("../images/bg-peserta.png")
}

.section--peserta_list li figure {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center
}

.section--peserta_list li figure img {
  object-fit: contain
}

.section--peserta_list li .title {
  font-size: 25px
}

.section--peserta_list li .btn {
  margin-top: 0
}

.section--syarat {
  background-image: url("../images/bg-syarat.png")
}

.section--form {
  background-image: linear-gradient(to bottom, #F7EBCC, #F7EBCC)
}

.footer {
  background-color: #101010
}

.footer__socmed .icon {
  margin-right: 10px
}

.footer__menu {
  margin-bottom: 40px
}

.footer__menu .btn.btn--white {
  color: #101010;
  margin-top: 0;
  margin-bottom: 0
}

.footer__menu .btn.btn--white:hover {
  background-color: #ececec
}

@media (min-width:767px) {
  header .header {
    background-image: none
  }

  .hide-lg {
    display: none
  }

  .section--headline .logo {
    display: block;
    flex-flow: column
  }
}

.supported_by {
  margin-top: 10px
}

.supported_by span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500
}

.supported_by img {
  display: inline-block;
  height: 150px;
  width: auto
}

@media(max-width:767px) {
  .supported_by span {
    font-size: 16px
  }

  .supported_by img {
    height: 120px;
    margin-right: -40px
  }
}