@charset "UTF-8";

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}

@-webkit-keyframes flash {

    0%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }

    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        -ms-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }

    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        -ms-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        -ms-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0) skewX(-15deg);
        transform: translateX(0) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0) skewX(-15deg);
        -ms-transform: translateX(0) skewX(-15deg);
        transform: translateX(0) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) skewX(0);
        -ms-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0) skewX(0);
        -ms-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

/*! Simple Hint v3.0.0 | Copyright (c) 2014 Catalin Covic | https://github.com/catc */
[data-hint]:after {
    content: attr(data-hint);
    text-align: center;
    white-space: nowrap;
    z-index: 9999;
    background: #292929;
    padding: 3px 7px;
    border-radius: 2px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

[data-hint]:after,
[data-hint]:before {
    display: inline-block;
    pointer-events: none;
    position: absolute;
    visibility: hidden
}

[data-hint]:hover:after,
[data-hint]:hover:before {
    visibility: visible
}

[data-hint]:before {
    content: "";
    border: 5px solid transparent;
    z-index: 9998
}

[class*=hint-bottom]:before {
    border-bottom-color: #292929;
    top: 100%;
    margin-top: 0
}

[class*=hint-bottom]:after {
    margin-top: 10px;
    top: 100%
}

[class*=hint-top]:before {
    border-top-color: #292929;
    bottom: 100%;
    margin-bottom: 0
}

[class*=hint-top]:after {
    bottom: 100%;
    margin-bottom: 10px
}

[class*=hint-bottom-middle]:before,
[class*=hint-top-middle]:before {
    right: 50%;
    margin-right: -5px
}

[class*=hint-bottom-middle]:after,
[class*=hint-top-middle]:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

[class*=hint-bottom-left]:before,
[class*=hint-top-left]:before {
    left: 8px
}

[class*=hint-bottom-left]:after,
[class*=hint-top-left]:after {
    left: 0
}

[class*=hint-bottom-right]:before,
[class*=hint-top-right]:before {
    right: 8px
}

[class*=hint-bottom-right]:after,
[class*=hint-top-right]:after {
    right: 0
}

[class*=hint-left]:before {
    border-left-color: #292929;
    left: 0;
    margin-left: -10px
}

[class*=hint-left]:after {
    right: 100%;
    margin-right: 10px
}

[class*=hint-right]:before {
    border-right-color: #292929;
    right: 0;
    margin-right: -10px
}

[class*=hint-right]:after {
    left: 100%;
    margin-left: 10px
}

[class*=hint-left-middle]:before,
[class*=hint-right-middle]:before {
    top: 50%;
    margin-top: -5px
}

[class*=hint-left-middle]:after,
[class*=hint-right-middle]:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

[class*=hint-left-top]:before,
[class*=hint-right-top]:before {
    top: 8px
}

[class*=hint-left-top]:after,
[class*=hint-right-top]:after {
    top: 0
}

[class*=hint-left-bottom]:before,
[class*=hint-right-bottom]:before {
    bottom: 8px
}

[class*=hint-left-bottom]:after,
[class*=hint-right-bottom]:after {
    bottom: 0
}

.hint-persist:after,
.hint-persist:before {
    visibility: visible
}

@media only screen and (max-width:768px) {

    [class*=hint-][class*="-mobile"]:after,
    [class*=hint-][class*="-mobile"]:before {
        display: none
    }
}

[class*=hint-][class*="-s-small"]:after {
    max-width: 200px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: normal
}

[class*=hint-][class*="-s-med"]:after {
    max-width: 300px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: normal
}

[class*=hint-][class*="-s-big"]:after {
    max-width: 450px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: normal
}

.hint-d-short:hover:after,
.hint-d-short:hover:before {
    -webkit-transition: visibility 0s .3s ease;
    transition: visibility 0s .3s ease
}

[class*=hint-anim][class*="-d-short"]:hover:after,
[class*=hint-anim][class*="-d-short"]:hover:before,
[class*=hint-fade][class*="-d-short"]:hover:after,
[class*=hint-fade][class*="-d-short"]:hover:before {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

[class*=hint-fade]:after,
[class*=hint-fade]:before {
    -webkit-transition: opacity .2s ease-out, visibility .2s ease-out;
    transition: opacity .2s ease-out, visibility .2s ease-out;
    opacity: 0
}

[class*=hint-fade]:hover:after,
[class*=hint-fade]:hover:before {
    opacity: 1
}

[class*=hint-anim][class*=hint-top]:after,
[class*=hint-anim][class*=hint-top]:before {
    bottom: 125%;
    opacity: 0;
    -webkit-transition: opacity .3s ease-out, visibility .3s ease-out, bottom .3s ease-out;
    transition: opacity .3s ease-out, visibility .3s ease-out, bottom .3s ease-out
}

[class*=hint-anim][class*=hint-top]:hover:after,
[class*=hint-anim][class*=hint-top]:hover:before {
    opacity: 1;
    bottom: 100%
}

[class*=hint-anim][class*=hint-bottom]:after,
[class*=hint-anim][class*=hint-bottom]:before {
    top: 125%;
    opacity: 0;
    -webkit-transition: opacity .3s ease, visibility .3s ease, top .3s ease;
    transition: opacity .3s ease, visibility .3s ease, top .3s ease
}

[class*=hint-anim][class*=hint-bottom]:hover:after,
[class*=hint-anim][class*=hint-bottom]:hover:before {
    top: 100%;
    opacity: 1
}

[class*=hint-anim][class*=hint-right]:after,
[class*=hint-anim][class*=hint-right]:before {
    margin-right: -25px;
    margin-left: 25px;
    opacity: 0;
    -webkit-transition: opacity .3s ease-out, visibility .3s ease, margin .3s ease-out;
    transition: opacity .3s ease-out, visibility .3s ease, margin .3s ease-out
}

[class*=hint-anim][class*=hint-right]:hover:after,
[class*=hint-anim][class*=hint-right]:hover:before {
    margin-right: -10px;
    margin-left: 10px;
    opacity: 1
}

[class*=hint-anim][class*=hint-left]:after,
[class*=hint-anim][class*=hint-left]:before {
    margin-right: 25px;
    margin-left: -25px;
    opacity: 0;
    -webkit-transition: opacity .3s ease-out, visibility .3s ease, margin .3s ease-out;
    transition: opacity .3s ease-out, visibility .3s ease, margin .3s ease-out
}

[class*=hint-anim][class*=hint-left]:hover:after,
[class*=hint-anim][class*=hint-left]:hover:before {
    margin-right: 10px;
    margin-left: -10px;
    opacity: 1
}

[class*=hint-][class*="-t-info"][class*=hint-bottom]:before {
    border-bottom-color: #44c2f9
}

[class*=hint-][class*="-t-info"][class*=hint-top]:before {
    border-top-color: #44c2f9
}

[class*=hint-][class*="-t-info"][class*=hint-right]:before {
    border-right-color: #44c2f9
}

[class*=hint-][class*="-t-info"][class*=hint-left]:before {
    border-left-color: #44c2f9
}

[class*=hint-][class*="-t-info"]:after {
    background: #44c2f9
}

[class*=hint-][class*="-t-success"][class*=hint-bottom]:before {
    border-bottom-color: #83c510
}

[class*=hint-][class*="-t-success"][class*=hint-top]:before {
    border-top-color: #83c510
}

[class*=hint-][class*="-t-success"][class*=hint-right]:before {
    border-right-color: #83c510
}

[class*=hint-][class*="-t-success"][class*=hint-left]:before {
    border-left-color: #83c510
}

[class*=hint-][class*="-t-success"]:after {
    background: #83c510
}

[class*=hint-][class*="-t-error"][class*=hint-bottom]:before {
    border-bottom-color: #ff4c4c
}

[class*=hint-][class*="-t-error"][class*=hint-top]:before {
    border-top-color: #ff4c4c
}

[class*=hint-][class*="-t-error"][class*=hint-right]:before {
    border-right-color: #ff4c4c
}

[class*=hint-][class*="-t-error"][class*=hint-left]:before {
    border-left-color: #ff4c4c
}

[class*=hint-][class*="-t-error"]:after {
    background: #ff4c4c
}

[class*=hint-][class*="-t-notice"][class*=hint-bottom]:before {
    border-bottom-color: #ffae00
}

[class*=hint-][class*="-t-notice"][class*=hint-top]:before {
    border-top-color: #ffae00
}

[class*=hint-][class*="-t-notice"][class*=hint-right]:before {
    border-right-color: #ffae00
}

[class*=hint-][class*="-t-notice"][class*=hint-left]:before {
    border-left-color: #ffae00
}

[class*=hint-][class*="-t-notice"]:after {
    background: #ffae00
}

.ladipage-animated-headline-duplicate {
    display: none
}

.ladipage-animated-words-wrapper b,
.ladipage-animated-words-wrapper i {
    font: inherit
}

.ladipage-animated-headline.clip span,
.ladipage-animated-headline.loading-bar span,
.ladipage-animated-headline.slide span,
.ladipage-animated-words-wrapper,
.ladipage-animated-words-wrapper b {
    display: inline-block
}

.ladipage-animated-headline.type .ladipage-animated-words-wrapper.selected .after,
.ladipage-animated-headline.type b {
    visibility: hidden
}

.ladipage-animated-headline.clip .ladipage-animated-words-wrapper,
.ladipage-animated-headline.loading-bar .ladipage-animated-words-wrapper,
.ladipage-animated-headline.slide .ladipage-animated-words-wrapper,
.ladipage-animated-headline.type .ladipage-animated-words-wrapper {
    vertical-align: top
}

.ladipage-animated-headline.rotate-2 .ladipage-animated-words-wrapper,
.ladipage-animated-headline.rotate-3 .ladipage-animated-words-wrapper,
.ladipage-animated-headline.scale .ladipage-animated-words-wrapper {
    overflow: hidden;
    display: -webkit-inline-flex;
    display: inline-flex
}

.ladipage-animated-headline.clip .ladipage-animated-words-wrapper,
.ladipage-animated-headline.type .ladipage-animated-words-wrapper {
    -webkit-transition: width .6s;
    transition: width .6s;
    overflow: hidden
}

.ladipage-animated-words-wrapper {
    position: relative;
    text-align: left
}

.ladipage-animated-words-wrapper b {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0
}

.ladipage-animated-words-wrapper b.is-visible {
    position: relative
}

.no-js .ladipage-animated-words-wrapper b {
    opacity: 0
}

.no-js .ladipage-animated-words-wrapper b.is-visible {
    opacity: 1
}

.ladipage-animated-headline.rotate-1 .ladipage-animated-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px
}

.ladipage-animated-headline.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

.ladipage-animated-headline.rotate-1 b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    -webkit-animation: ah-rotate-1-in 1.2s;
    animation: ah-rotate-1-in 1.2s
}

.ladipage-animated-headline.rotate-1 b.is-hidden {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: ah-rotate-1-out 1.2s;
    animation: ah-rotate-1-out 1.2s
}

@-webkit-keyframes ah-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }

    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1
    }
}

@keyframes ah-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }

    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1
    }
}

@-webkit-keyframes ah-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }
}

@keyframes ah-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }
}

.ladipage-animated-headline.type .ladipage-animated-words-wrapper .after {
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #363636
}

.ladipage-animated-headline.type .ladipage-animated-words-wrapper.waiting .after {
    -webkit-animation: ah-pulse 1s infinite;
    animation: ah-pulse 1s infinite;
    z-index: 2
}

.ladipage-animated-headline.type .ladipage-animated-words-wrapper.selected {
    background-color: rgba(109, 169, 252, .5)
}

.ladipage-animated-headline.type b.is-visible {
    visibility: visible
}

.ladipage-animated-headline.type i {
    position: absolute;
    visibility: hidden
}

.ladipage-animated-headline.type i.in {
    position: relative;
    visibility: visible
}

@-webkit-keyframes ah-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1
    }

    40% {
        -webkit-transform: translateY(-50%) scale(.9);
        transform: translateY(-50%) scale(.9);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0
    }
}

@keyframes ah-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1
    }

    40% {
        -webkit-transform: translateY(-50%) scale(.9);
        transform: translateY(-50%) scale(.9);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0
    }
}

.ladipage-animated-headline.rotate-2 .ladipage-animated-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px
}

.ladipage-animated-headline.rotate-2 em,
.ladipage-animated-headline.rotate-2 i {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.ladipage-animated-headline.rotate-2 b {
    opacity: 0
}

.ladipage-animated-headline.rotate-2 i {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0
}

.is-visible .ladipage-animated-headline.rotate-2 i {
    opacity: 1
}

.ladipage-animated-headline.rotate-2 i.in {
    -webkit-animation: ah-rotate-2-in .4s forwards;
    animation: ah-rotate-2-in .4s forwards
}

.ladipage-animated-headline.rotate-2 i.out {
    -webkit-animation: ah-rotate-2-out .4s forwards;
    animation: ah-rotate-2-out .4s forwards
}

.ladipage-animated-headline.rotate-2 em {
    -webkit-transform: translateZ(20px);
    transform: translateZ(20px)
}

.no-csstransitions .ladipage-animated-headline.rotate-2 i {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 0
}

.no-csstransitions .ladipage-animated-headline.rotate-2 i em {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.no-csstransitions .ladipage-animated-headline.rotate-2 .is-visible i {
    opacity: 1
}

@-webkit-keyframes ah-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }
}

@keyframes ah-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }
}

@-webkit-keyframes ah-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg)
    }
}

@keyframes ah-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg)
    }
}

.ladipage-animated-headline.loading-bar .ladipage-animated-words-wrapper .after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #356efd;
    z-index: 2;
    -webkit-transition: width .3s -.1s;
    transition: width .3s -.1s
}

.ladipage-animated-headline.loading-bar .ladipage-animated-words-wrapper.is-loading .after {
    width: 100%;
    -webkit-transition: width 3s;
    transition: width 3s
}

.ladipage-animated-headline.loading-bar b {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.ladipage-animated-headline.loading-bar b.is-visible {
    opacity: 1;
    top: 0
}

.ladipage-animated-headline.slide b {
    opacity: 0;
    top: .2em
}

.ladipage-animated-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in .6s;
    animation: slide-in .6s
}

.ladipage-animated-headline.slide b.is-hidden {
    -webkit-animation: slide-out .6s;
    animation: slide-out .6s
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

.ladipage-animated-headline.clip .ladipage-animated-words-wrapper .after {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-color: #363636
}

.ladipage-animated-headline.clip b {
    opacity: 0
}

.ladipage-animated-headline.clip b.is-visible {
    opacity: 1
}

.ladipage-animated-headline.zoom .ladipage-animated-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px
}

.ladipage-animated-headline.zoom b {
    opacity: 0
}

.ladipage-animated-headline.zoom b.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in .8s;
    animation: zoom-in .8s
}

.ladipage-animated-headline.zoom b.is-hidden {
    -webkit-animation: zoom-out .8s;
    animation: zoom-out .8s
}

@-webkit-keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px)
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px)
    }
}

.ladipage-animated-headline.rotate-3 .ladipage-animated-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px
}

.ladipage-animated-headline.rotate-3 b {
    opacity: 0
}

.ladipage-animated-headline.rotate-3 i {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.is-visible .ladipage-animated-headline.rotate-3 i {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.ladipage-animated-headline.rotate-3 i.in {
    -webkit-animation: ah-rotate-3-in .6s forwards;
    animation: ah-rotate-3-in .6s forwards
}

.ladipage-animated-headline.rotate-3 i.out {
    -webkit-animation: ah-rotate-3-out .6s forwards;
    animation: ah-rotate-3-out .6s forwards
}

.no-csstransitions .ladipage-animated-headline.rotate-3 i {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 0
}

.no-csstransitions .ladipage-animated-headline.rotate-3 .is-visible i {
    opacity: 1
}

@-webkit-keyframes ah-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }
}

@keyframes ah-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }
}

@-webkit-keyframes ah-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }
}

@keyframes ah-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }
}

.ladipage-animated-headline.scale b {
    opacity: 0
}

.ladipage-animated-headline.scale i {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.is-visible .ladipage-animated-headline.scale i {
    opacity: 1
}

.ladipage-animated-headline.scale i.in {
    -webkit-animation: scale-up .6s forwards;
    animation: scale-up .6s forwards
}

.ladipage-animated-headline.scale i.out {
    -webkit-animation: scale-down .6s forwards;
    animation: scale-down .6s forwards
}

.no-csstransitions .ladipage-animated-headline.scale i {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0
}

.no-csstransitions .ladipage-animated-headline.scale .is-visible i {
    opacity: 1
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

.ladipage-animated-headline.push b {
    opacity: 0
}

.ladipage-animated-headline.push b.is-visible {
    opacity: 1;
    -webkit-animation: push-in .6s;
    animation: push-in .6s
}

.ladipage-animated-headline.push b.is-hidden {
    -webkit-animation: push-out .6s;
    animation: push-out .6s
}

@-webkit-keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

a,
        abbr,
        acronym,
        address,
        applet,
        article,
        aside,
        audio,
        b,
        big,
        blockquote,
        body,
        button,
        canvas,
        caption,
        center,
        cite,
        code,
        dd,
        del,
        details,
        dfn,
        div,
        dl,
        dt,
        em,
        embed,
        fieldset,
        figcaption,
        figure,
        footer,
        form,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        header,
        hgroup,
        html,
        i,
        iframe,
        img,
        input,
        ins,
        kbd,
        label,
        legend,
        li,
        mark,
        menu,
        nav,
        object,
        ol,
        output,
        p,
        pre,
        q,
        ruby,
        s,
        samp,
        section,
        select,
        small,
        span,
        strike,
        strong,
        sub,
        summary,
        sup,
        table,
        tbody,
        td,
        textarea,
        tfoot,
        th,
        thead,
        time,
        tr,
        tt,
        u,
        ul,
        var,
        video {
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }

        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        menu,
        nav,
        section {
            display: block
        }

        body {
            line-height: 1
        }

        a {
            text-decoration: none
        }

        ol,
        ul {
            list-style: none
        }

        blockquote,
        q {
            quotes: none
        }

        blockquote:after,
        blockquote:before,
        q:after,
        q:before {
            content: '';
            content: none
        }

        table {
            border-collapse: collapse;
            border-spacing: 0
        }

        .ladi-html strong {
            font-weight: 700
        }

        .ladi-html em {
            font-style: italic
        }

        .ladi-html a {
            text-decoration: underline
        }

        body {
            font-size: 12px;
            -ms-text-size-adjust: none;
            -moz-text-size-adjust: none;
            -o-text-size-adjust: none;
            -webkit-text-size-adjust: none;
            background: #fff
        }

        .ladi-loading {
            width: 80px;
            height: 80px;
            z-index: 900000000000;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            overflow: hidden
        }

        .ladi-loading div {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: ladi-loading 1.2s linear infinite
        }

        .ladi-loading div:nth-child(1) {
            animation-delay: 0s;
            top: 37px;
            left: 66px
        }

        .ladi-loading div:nth-child(2) {
            animation-delay: -.1s;
            top: 22px;
            left: 62px
        }

        .ladi-loading div:nth-child(3) {
            animation-delay: -.2s;
            top: 11px;
            left: 52px
        }

        .ladi-loading div:nth-child(4) {
            animation-delay: -.3s;
            top: 7px;
            left: 37px
        }

        .ladi-loading div:nth-child(5) {
            animation-delay: -.4s;
            top: 11px;
            left: 22px
        }

        .ladi-loading div:nth-child(6) {
            animation-delay: -.5s;
            top: 22px;
            left: 11px
        }

        .ladi-loading div:nth-child(7) {
            animation-delay: -.6s;
            top: 37px;
            left: 7px
        }

        .ladi-loading div:nth-child(8) {
            animation-delay: -.7s;
            top: 52px;
            left: 11px
        }

        .ladi-loading div:nth-child(9) {
            animation-delay: -.8s;
            top: 62px;
            left: 22px
        }

        .ladi-loading div:nth-child(10) {
            animation-delay: -.9s;
            top: 66px;
            left: 37px
        }

        .ladi-loading div:nth-child(11) {
            animation-delay: -1s;
            top: 62px;
            left: 52px
        }

        .ladi-loading div:nth-child(12) {
            animation-delay: -1.1s;
            top: 52px;
            left: 62px
        }

        @keyframes ladi-loading {

            0%,
            100%,
            20%,
            80% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.5)
            }
        }

        .overflow-hidden {
            overflow: hidden
        }

        .ladi-transition {
            transition: all 150ms linear 0s
        }

        .opacity-0 {
            opacity: 0
        }

        .height-0 {
            height: 0 !important
        }

        .transition-readmore {
            transition: height 350ms linear 0s
        }

        .transition-collapse {
            transition: height 150ms linear 0s
        }

        .transition-parent-collapse-height {
            transition: height 150ms linear 0s
        }

        .transition-parent-collapse-top {
            transition: top 150ms linear 0s
        }

        .pointer-events-none {
            pointer-events: none
        }

        .ladi-google-recaptcha-checkbox {
            position: absolute;
            display: inline-block;
            transform: translateY(-100%);
            margin-top: -5px;
            z-index: 90000010
        }

        .ladipage-message {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 10000000000;
            background: rgba(0, 0, 0, .3)
        }

        .ladipage-message .ladipage-message-box {
            width: 400px;
            max-width: calc(100% - 50px);
            height: 160px;
            border: 1px solid rgba(0, 0, 0, .3);
            background-color: #fff;
            position: fixed;
            top: calc(50% - 155px);
            left: 0;
            right: 0;
            margin: auto;
            border-radius: 10px
        }

        .ladipage-message .ladipage-message-box span {
            display: block;
            background-color: rgba(6, 21, 40, .05);
            color: #000;
            padding: 12px 15px;
            font-weight: 600;
            font-size: 16px;
            line-height: 16px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px
        }

        .ladipage-message .ladipage-message-box .ladipage-message-text {
            display: -webkit-box;
            font-size: 14px;
            padding: 0 20px;
            margin-top: 10px;
            line-height: 18px;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .ladipage-message .ladipage-message-box .ladipage-message-close {
            display: block;
            position: absolute;
            right: 15px;
            bottom: 10px;
            margin: 0 auto;
            padding: 10px 0;
            border: none;
            width: 80px;
            text-transform: uppercase;
            text-align: center;
            color: #000;
            background-color: #e6e6e6;
            border-radius: 5px;
            text-decoration: none;
            font-size: 14px;
            line-height: 14px;
            font-weight: 600;
            cursor: pointer
        }

        .ladi-wraper {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            overflow: hidden
        }

        .ladi-section {
            margin: 0 auto;
            position: relative
        }

        .ladi-section[data-tab-id] {
            display: none
        }

        .ladi-section.selected[data-tab-id] {
            display: block
        }

        .ladi-section .ladi-section-arrow-down {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-section .ladi-section-close {
            position: absolute;
            top: 0;
            right: 0;
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-section .ladi-section-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden
        }

        .ladi-container {
            position: relative;
            margin: 0 auto;
            height: 100%
        }

        .ladi-element {
            position: absolute
        }

        .ladi-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            pointer-events: none
        }

        .ladi-survey {
            width: 100%;
            display: inline-block
        }

        .ladi-survey .ladi-survey-option {
            cursor: pointer;
            position: relative;
            display: inline-block;
            text-decoration-line: inherit;
            -webkit-text-decoration-line: inherit;
            transition: inherit;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-survey .ladi-survey-option-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            transition: inherit
        }

        .ladi-survey .ladi-survey-option-label {
            display: block;
            text-decoration-line: inherit;
            -webkit-text-decoration-line: inherit;
            position: relative
        }

        .ladi-survey .ladi-survey-option-image {
            background-size: cover;
            background-position: center center;
            pointer-events: none;
            vertical-align: middle;
            border-radius: inherit;
            position: relative
        }

        .ladi-survey .ladi-survey-button-next {
            display: block
        }

        .ladi-survey .ladi-survey-button-next.empty {
            display: none
        }

        .ladi-survey .ladi-survey-button-next.no-select {
            display: none
        }

        .ladi-survey .ladi-survey-button-next button {
            background-color: #fff;
            border: 1px solid #eee;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 2px
        }

        .ladi-survey .ladi-survey-button-next button:active {
            transform: translateY(2px);
            transition: transform .2s linear
        }

        .ladi-carousel {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            touch-action: pan-y
        }

        .ladi-carousel .ladi-carousel-content {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            transition: left 350ms ease-in-out
        }

        .ladi-carousel .ladi-carousel-arrow {
            position: absolute;
            top: calc(50% - (33px)/ 2);
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-carousel .ladi-carousel-arrow-left {
            left: 5px;
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg)
        }

        .ladi-carousel .ladi-carousel-arrow-right {
            right: 5px
        }

        .ladi-gallery {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-gallery .ladi-gallery-view {
            position: absolute;
            overflow: hidden;
            touch-action: pan-y
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            width: 100%;
            height: 100%;
            position: relative;
            display: none;
            transition: transform .5s ease-in-out;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-perspective: 1000px;
            perspective: 1000px
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.play-video {
            cursor: pointer
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.play-video:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: 60px;
            height: 60px;
            background: url() no-repeat center center;
            background-size: contain;
            pointer-events: none;
            cursor: pointer
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.next,
        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.selected.right {
            left: 0;
            transform: translate3d(100%, 0, 0)
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.prev,
        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.selected.left {
            left: 0;
            transform: translate3d(-100%, 0, 0)
        }

        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.next.left,
        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.prev.right,
        .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item.selected {
            left: 0;
            transform: translate3d(0, 0, 0)
        }

        .ladi-gallery .ladi-gallery-view>.next,
        .ladi-gallery .ladi-gallery-view>.prev,
        .ladi-gallery .ladi-gallery-view>.selected {
            display: block
        }

        .ladi-gallery .ladi-gallery-view>.selected {
            left: 0
        }

        .ladi-gallery .ladi-gallery-view>.next,
        .ladi-gallery .ladi-gallery-view>.prev {
            position: absolute;
            top: 0;
            width: 100%
        }

        .ladi-gallery .ladi-gallery-view>.next {
            left: 100%
        }

        .ladi-gallery .ladi-gallery-view>.prev {
            left: -100%
        }

        .ladi-gallery .ladi-gallery-view>.next.left,
        .ladi-gallery .ladi-gallery-view>.prev.right {
            left: 0
        }

        .ladi-gallery .ladi-gallery-view>.selected.left {
            left: -100%
        }

        .ladi-gallery .ladi-gallery-view>.selected.right {
            left: 100%
        }

        .ladi-gallery .ladi-gallery-control {
            position: absolute;
            overflow: hidden;
            touch-action: pan-y
        }

        .ladi-gallery.ladi-gallery-top .ladi-gallery-view {
            width: 100%
        }

        .ladi-gallery.ladi-gallery-top .ladi-gallery-control {
            top: 0;
            width: 100%
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-view {
            top: 0;
            width: 100%
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control {
            width: 100%;
            bottom: 0
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-view {
            height: 100%
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-control {
            height: 100%
        }

        .ladi-gallery.ladi-gallery-right .ladi-gallery-view {
            height: 100%
        }

        .ladi-gallery.ladi-gallery-right .ladi-gallery-control {
            height: 100%;
            right: 0
        }

        .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow {
            position: absolute;
            top: calc(50% - (33px)/ 2);
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow-left {
            left: 5px;
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg)
        }

        .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow-right {
            right: 5px
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-arrow {
            position: absolute;
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow,
        .ladi-gallery.ladi-gallery-top .ladi-gallery-control .ladi-gallery-control-arrow {
            top: calc(50% - (33px)/ 2)
        }

        .ladi-gallery.ladi-gallery-top .ladi-gallery-control .ladi-gallery-control-arrow-left {
            left: 0;
            transform: rotate(180deg) scale(.6);
            -webkit-transform: rotate(180deg) scale(.6)
        }

        .ladi-gallery.ladi-gallery-top .ladi-gallery-control .ladi-gallery-control-arrow-right {
            right: 0;
            transform: scale(.6);
            -webkit-transform: scale(.6)
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow-left {
            left: 0;
            transform: rotate(180deg) scale(.6);
            -webkit-transform: rotate(180deg) scale(.6)
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-arrow-right {
            right: 0;
            transform: scale(.6);
            -webkit-transform: scale(.6)
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-control .ladi-gallery-control-arrow,
        .ladi-gallery.ladi-gallery-right .ladi-gallery-control .ladi-gallery-control-arrow {
            left: calc(50% - (33px)/ 2)
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-control .ladi-gallery-control-arrow-left {
            top: 0;
            transform: scale(.6) rotate(270deg);
            -webkit-transform: scale(.6) rotate(270deg)
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-control .ladi-gallery-control-arrow-right {
            bottom: 0;
            transform: scale(.6) rotate(90deg);
            -webkit-transform: scale(.6) rotate(90deg)
        }

        .ladi-gallery.ladi-gallery-right .ladi-gallery-control .ladi-gallery-control-arrow-left {
            top: 0;
            transform: scale(.6) rotate(270deg);
            -webkit-transform: scale(.6) rotate(270deg)
        }

        .ladi-gallery.ladi-gallery-right .ladi-gallery-control .ladi-gallery-control-arrow-right {
            bottom: 0;
            transform: scale(.6) rotate(90deg);
            -webkit-transform: scale(.6) rotate(90deg)
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box {
            position: relative
        }

        .ladi-gallery.ladi-gallery-top .ladi-gallery-control .ladi-gallery-control-box {
            display: -webkit-inline-flex;
            display: inline-flex;
            left: 0;
            transition: left 150ms ease-in-out
        }

        .ladi-gallery.ladi-gallery-bottom .ladi-gallery-control .ladi-gallery-control-box {
            display: -webkit-inline-flex;
            display: inline-flex;
            left: 0;
            transition: left 150ms ease-in-out
        }

        .ladi-gallery.ladi-gallery-left .ladi-gallery-control .ladi-gallery-control-box {
            display: inline-grid;
            top: 0;
            transition: top 150ms ease-in-out
        }

        .ladi-gallery.ladi-gallery-right .ladi-gallery-control .ladi-gallery-control-box {
            display: inline-grid;
            top: 0;
            transition: top 150ms ease-in-out
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            float: left;
            position: relative;
            cursor: pointer;
            filter: invert(15%)
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item.play-video:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: 30px;
            height: 30px;
            background: url() no-repeat center center;
            background-size: contain;
            pointer-events: none;
            cursor: pointer
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item:hover {
            filter: none
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item.selected {
            filter: none
        }

        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-box .ladi-gallery-control-item:last-child {
            margin-right: 0 !important;
            margin-bottom: 0 !important
        }

        .ladi-table {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: auto
        }

        .ladi-table table {
            width: 100%
        }

        .ladi-table table td {
            vertical-align: middle
        }

        .ladi-table tbody td {
            word-break: break-word
        }

        .ladi-table table td img {
            cursor: pointer;
            width: 100%
        }

        .ladi-box {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden
        }

        .ladi-tabs {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-tabs .ladi-tabs-background {
            height: 100%;
            width: 100%;
            pointer-events: none
        }

        .ladi-tabs>.ladi-element[data-index] {
            display: none
        }

        .ladi-tabs>.ladi-element.selected[data-index] {
            display: block
        }

        .ladi-frame {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden
        }

        .ladi-frame .ladi-frame-background {
            height: 100%;
            width: 100%;
            pointer-events: none;
            transition: inherit
        }

        .ladi-banner {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden
        }

        .ladi-banner .ladi-banner-background {
            height: 100%;
            width: 100%;
            pointer-events: none
        }

        #SECTION_POPUP .ladi-container {
            z-index: 90000070
        }

        #SECTION_POPUP .ladi-container>.ladi-element {
            z-index: 90000070;
            position: fixed;
            display: none
        }

        #SECTION_POPUP .ladi-container>.ladi-element[data-fixed-close=true] {
            position: relative !important
        }

        #SECTION_POPUP .ladi-container>.ladi-element.hide-visibility {
            display: block !important;
            visibility: hidden !important
        }

        #SECTION_POPUP .popup-close {
            position: absolute;
            right: 0;
            top: 0;
            z-index: 9000000080;
            cursor: pointer
        }

        .ladi-popup {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-popup .ladi-popup-background {
            height: 100%;
            width: 100%;
            pointer-events: none
        }

        .ladi-countdown {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-countdown .ladi-countdown-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit;
            display: table;
            pointer-events: none
        }

        .ladi-countdown .ladi-countdown-text {
            position: absolute;
            width: 100%;
            height: 100%;
            text-decoration: inherit;
            display: table;
            pointer-events: none
        }

        .ladi-countdown .ladi-countdown-text span {
            display: table-cell;
            vertical-align: middle
        }

        .ladi-countdown>.ladi-element {
            text-decoration: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit;
            position: relative;
            display: inline-block
        }

        .ladi-countdown>.ladi-element:last-child {
            margin-right: 0 !important
        }

        .ladi-button {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden
        }

        .ladi-button:active {
            transform: translateY(2px);
            transition: transform .2s linear
        }

        .ladi-button .ladi-button-background {
            height: 100%;
            width: 100%;
            pointer-events: none;
            transition: inherit
        }

        .ladi-button>.ladi-element {
            width: 100% !important;
            height: 100% !important;
            top: 0 !important;
            left: 0 !important;
            display: table;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-button>.ladi-element .ladi-headline {
            display: table-cell;
            vertical-align: middle
        }

        .ladi-collection {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-collection.carousel {
            overflow: hidden
        }

        .ladi-collection .ladi-collection-content {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            transition: left 350ms ease-in-out
        }

        .ladi-collection .ladi-collection-content .ladi-collection-item {
            display: block;
            position: relative;
            float: left
        }

        .ladi-collection .ladi-collection-content .ladi-collection-page {
            float: left
        }

        .ladi-collection .ladi-collection-arrow {
            position: absolute;
            top: calc(50% - (33px)/ 2);
            cursor: pointer;
            z-index: 90000040
        }

        .ladi-collection .ladi-collection-arrow-left {
            left: 5px;
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg)
        }

        .ladi-collection .ladi-collection-arrow-right {
            right: 5px
        }

        .ladi-collection .ladi-collection-button-next {
            position: absolute;
            bottom: -40px;
            right: 0;
            left: 0;
            margin: auto;
            cursor: pointer;
            z-index: 90000040;
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg)
        }

        .ladi-form {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-form>.ladi-element {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form .ladi-button>.ladi-element {
            color: initial;
            font-size: initial;
            font-weight: initial;
            text-transform: initial;
            text-decoration: initial;
            font-style: initial;
            text-align: initial;
            letter-spacing: initial;
            line-height: initial
        }

        .ladi-form>.ladi-element .ladi-form-item-container {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form>[data-quantity=true] .ladi-form-item-container {
            overflow: hidden
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item-background {
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-size: 9px 6px !important;
            background-position: right .5rem center;
            background-repeat: no-repeat
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-2 {
            width: calc(100% / 2 - 5px);
            max-width: calc(100% / 2 - 5px);
            min-width: calc(100% / 2 - 5px)
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-2:nth-child(3) {
            margin-left: 7.5px
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3 {
            width: calc(100% / 3 - 5px);
            max-width: calc(100% / 3 - 5px);
            min-width: calc(100% / 3 - 5px)
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3:nth-child(3) {
            margin-left: 7.5px
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select-3:nth-child(4) {
            margin-left: 7.5px
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select option {
            color: initial
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control:not(.ladi-form-control-select) {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
            text-transform: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-control-select:not([data-selected=""]) {
            text-decoration: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit;
            vertical-align: middle
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span[data-checked=true] {
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item .ladi-form-checkbox-item span[data-checked=false] {
            text-transform: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-form .ladi-form-item-container {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-form .ladi-form-item-title-value {
            font-weight: 700;
            word-break: break-word
        }

        .ladi-form .ladi-form-label-container {
            position: relative;
            width: 100%
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item {
            display: inline-block;
            cursor: pointer;
            position: relative;
            border-radius: 0 !important;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.image {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.no-value {
            display: none !important
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.text.disabled {
            opacity: .35
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.image.disabled {
            opacity: .2
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.color.disabled {
            opacity: .15
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.selected:before {
            content: '';
            width: 0;
            height: 0;
            bottom: -1px;
            right: -1px;
            position: absolute;
            border-width: 0 0 15px 15px;
            border-color: transparent;
            border-style: solid
        }

        .ladi-form .ladi-form-label-container .ladi-form-label-item.selected:after {
            content: '';
            background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 12 12' viewBox='0 0 12 12' x='0' fill='%23fff' y='0'%3E%3Cg%3E%3Cpath d='m5.2 10.9c-.2 0-.5-.1-.7-.2l-4.2-3.7c-.4-.4-.5-1-.1-1.4s1-.5 1.4-.1l3.4 3 5.1-7c .3-.4 1-.5 1.4-.2s.5 1 .2 1.4l-5.7 7.9c-.2.2-.4.4-.7.4 0-.1 0-.1-.1-.1z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: bottom right;
            width: 7px;
            height: 7px;
            bottom: 0;
            right: 0;
            position: absolute
        }

        .ladi-form .ladi-form-item {
            width: 100%;
            height: 100%;
            position: absolute
        }

        .ladi-form .ladi-form-item-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox {
            height: auto
        }

        .ladi-form .ladi-form-item .ladi-form-control {
            background-color: transparent;
            min-width: 100%;
            min-height: 100%;
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            height: 100%;
            padding: 0 5px;
            color: inherit;
            font-size: inherit;
            border: none
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox {
            padding: 10px 5px
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-vertical .ladi-form-checkbox-item {
            margin-top: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            display: table;
            border: none
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-horizontal .ladi-form-checkbox-item {
            margin-top: 0 !important;
            margin-left: 0 !important;
            margin-right: 10px !important;
            display: inline-block;
            border: none;
            position: relative
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item input {
            vertical-align: middle;
            width: 13px;
            height: 13px;
            display: table-cell;
            margin-right: 5px
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span {
            display: table-cell;
            cursor: default;
            vertical-align: middle;
            word-break: break-word
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-horizontal .ladi-form-checkbox-item input {
            position: absolute;
            top: 4px
        }

        .ladi-form .ladi-form-item.ladi-form-checkbox.ladi-form-checkbox-horizontal .ladi-form-checkbox-item span {
            padding-left: 18px
        }

        .ladi-form .ladi-form-item textarea.ladi-form-control {
            resize: none;
            padding: 5px
        }

        .ladi-form .ladi-button {
            cursor: pointer
        }

        .ladi-form .ladi-button .ladi-headline {
            cursor: pointer;
            user-select: none
        }

        .ladi-combobox {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-combobox .ladi-combobox-item-container {
            position: absolute;
            width: 100%;
            height: 100%;
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-combobox .ladi-combobox-item-container .ladi-combobox-item-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit
        }

        .ladi-combobox .ladi-combobox-item-container .ladi-combobox-item {
            width: 100%;
            height: 100%;
            position: absolute;
            text-transform: inherit;
            text-decoration: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit
        }

        .ladi-combobox .ladi-combobox-item-container .ladi-combobox-item .ladi-combobox-control option {
            color: initial
        }

        .ladi-combobox .ladi-combobox-item-container .ladi-combobox-item .ladi-combobox-control {
            background-color: transparent;
            min-width: 100%;
            min-height: 100%;
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            height: 100%;
            padding: 0 5px;
            font-size: inherit;
            border: none;
            text-transform: inherit;
            text-align: inherit;
            letter-spacing: inherit;
            color: inherit;
            background-size: inherit;
            background-attachment: inherit;
            background-origin: inherit;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-size: 9px 6px !important;
            background-position: right .5rem center;
            background-repeat: no-repeat
        }

        .ladi-combobox .ladi-combobox-item-container .ladi-combobox-item .ladi-combobox-control:not([data-selected=""]) {
            text-decoration: inherit
        }

        .ladi-cart {
            position: absolute;
            width: 100%;
            font-size: 12px
        }

        .ladi-cart .ladi-cart-row {
            position: relative;
            display: inline-table;
            width: 100%
        }

        .ladi-cart .ladi-cart-row:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 100%;
            background: #dcdcdc
        }

        .ladi-cart .ladi-cart-no-product {
            text-align: center;
            font-size: 16px;
            vertical-align: middle
        }

        .ladi-cart .ladi-cart-image {
            width: 16%;
            vertical-align: middle;
            position: relative;
            text-align: center
        }

        .ladi-cart .ladi-cart-image img {
            max-width: 100%
        }

        .ladi-cart .ladi-cart-title {
            vertical-align: middle;
            padding: 0 5px;
            word-break: break-all
        }

        .ladi-cart .ladi-cart-title .ladi-cart-title-name {
            display: block;
            margin-bottom: 5px;
            word-break: break-word
        }

        .ladi-cart .ladi-cart-title .ladi-cart-title-variant {
            font-weight: 700;
            display: block;
            word-break: break-word
        }

        .ladi-cart .ladi-cart-image .ladi-cart-image-quantity {
            position: absolute;
            top: -3px;
            right: -5px;
            background: rgba(150, 149, 149, .9);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            text-align: center;
            color: #fff;
            line-height: 20px
        }

        .ladi-cart .ladi-cart-quantity {
            width: 70px;
            vertical-align: middle;
            text-align: center
        }

        .ladi-cart .ladi-cart-quantity-content {
            display: -webkit-inline-flex;
            display: inline-flex
        }

        .ladi-cart .ladi-cart-quantity input {
            width: 24px;
            text-align: center;
            height: 22px;
            -moz-appearance: textfield;
            border-top: 1px solid #dcdcdc;
            border-bottom: 1px solid #dcdcdc
        }

        .ladi-cart .ladi-cart-quantity input::-webkit-inner-spin-button,
        .ladi-cart .ladi-cart-quantity input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0
        }

        .ladi-cart .ladi-cart-quantity button {
            border: 1px solid #dcdcdc;
            cursor: pointer;
            text-align: center;
            width: 21px;
            height: 22px;
            position: relative;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-cart .ladi-cart-quantity button:active {
            transform: translateY(2px);
            transition: transform .2s linear
        }

        .ladi-cart .ladi-cart-quantity button span {
            font-size: 18px;
            position: relative;
            left: .5px
        }

        .ladi-cart .ladi-cart-quantity button:first-child span {
            top: -1.2px
        }

        .ladi-cart .ladi-cart-price {
            width: 100px;
            vertical-align: middle;
            text-align: right;
            padding: 0 10px 0 5px
        }

        .ladi-cart .ladi-cart-row.has-promotion .ladi-cart-price span {
            text-decoration: line-through;
            display: block;
            margin-bottom: 3px
        }

        .ladi-cart .ladi-cart-row.has-promotion .ladi-cart-price span.price-compare {
            text-decoration: none;
            color: #e85d04;
            font-weight: 700;
            margin-bottom: 0
        }

        .ladi-cart .ladi-cart-row.has-promotion .ladi-cart-title span.promotion-name {
            margin-top: 5px;
            display: block;
            word-break: break-word
        }

        .ladi-cart .ladi-cart-action {
            width: 28px;
            vertical-align: middle;
            text-align: center
        }

        .ladi-cart .ladi-cart-action button {
            border: 1px solid #dcdcdc;
            cursor: pointer;
            text-align: center;
            width: 25px;
            height: 22px;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-cart .ladi-cart-action button:active {
            transform: translateY(2px);
            transition: transform .2s linear
        }

        .ladi-cart .ladi-cart-action button span {
            font-size: 13px;
            position: relative;
            top: .5px
        }

        .ladi-video {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: pointer;
            overflow: hidden
        }

        .ladi-video .ladi-video-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none
        }

        .ladi-group {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-button-group {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-button-group>.ladi-element {
            transition: inherit
        }

        .ladi-button-group>.ladi-element>.ladi-button {
            transition: inherit
        }

        .ladi-shape {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none
        }

        .ladi-html-code {
            position: absolute;
            width: 100%;
            height: 100%
        }

        .ladi-image {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none
        }

        .ladi-image .ladi-image-background {
            background-repeat: no-repeat;
            background-position: left top;
            background-size: cover;
            background-attachment: scroll;
            background-origin: content-box;
            position: absolute;
            margin: 0 auto;
            width: 100%;
            height: 100%;
            pointer-events: none
        }

        .ladi-headline {
            width: 100%;
            display: inline-block;
            background-size: cover;
            background-position: center center
        }

        .ladi-headline a {
            text-decoration: underline
        }

        .ladi-paragraph {
            width: 100%;
            display: inline-block
        }

        .ladi-paragraph a {
            text-decoration: underline
        }

        .ladi-list-paragraph {
            width: 100%;
            display: inline-block
        }

        .ladi-list-paragraph a {
            text-decoration: underline
        }

        .ladi-list-paragraph ul li {
            position: relative;
            counter-increment: linum
        }

        .ladi-list-paragraph ul li:before {
            position: absolute;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            left: 0
        }

        .ladi-list-paragraph ul li:last-child {
            padding-bottom: 0 !important
        }

        .ladi-line {
            position: relative
        }

        .ladi-line .ladi-line-container {
            border-bottom: 0 !important;
            border-right: 0 !important;
            width: 100%;
            height: 100%
        }

        a[data-action] {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            cursor: pointer
        }

        a:visited {
            color: inherit
        }

        a:link {
            color: inherit
        }

        .button-unmute {
            cursor: pointer;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto
        }

        .button-unmute div {
            background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22m%2021.48%2C17.98%20c%200%2C-1.77%20-1.02%2C-3.29%20-2.5%2C-4.03%20v%202.21%20l%202.45%2C2.45%20c%20.03%2C-0.2%20.05%2C-0.41%20.05%2C-0.63%20z%20m%202.5%2C0%20c%200%2C.94%20-0.2%2C1.82%20-0.54%2C2.64%20l%201.51%2C1.51%20c%20.66%2C-1.24%201.03%2C-2.65%201.03%2C-4.15%200%2C-4.28%20-2.99%2C-7.86%20-7%2C-8.76%20v%202.05%20c%202.89%2C.86%205%2C3.54%205%2C6.71%20z%20M%209.25%2C8.98%20l%20-1.27%2C1.26%204.72%2C4.73%20H%207.98%20v%206%20H%2011.98%20l%205%2C5%20v%20-6.73%20l%204.25%2C4.25%20c%20-0.67%2C.52%20-1.42%2C.93%20-2.25%2C1.18%20v%202.06%20c%201.38%2C-0.31%202.63%2C-0.95%203.69%2C-1.81%20l%202.04%2C2.05%201.27%2C-1.27%20-9%2C-9%20-7.72%2C-7.72%20z%20m%207.72%2C.99%20-2.09%2C2.08%202.09%2C2.09%20V%209.98%20z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            width: 60px;
            height: 60px;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            background-color: rgba(0, 0, 0, .5);
            border-radius: 100%;
            background-size: 90%;
            background-repeat: no-repeat;
            background-position: center center
        }

        [data-opacity="0"] {
            opacity: 0
        }

        [data-hidden=true] {
            display: none
        }

        [data-action=true] {
            cursor: pointer
        }

        .ladi-hidden {
            display: none
        }

        .backdrop-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 90000060
        }

        .backdrop-dropbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 90000080
        }

        .lightbox-screen {
            display: none;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            z-index: 9000000080;
            background: rgba(0, 0, 0, .5)
        }

        .lightbox-screen .lightbox-close {
            position: absolute;
            z-index: 9000000090;
            cursor: pointer
        }

        .lightbox-screen .lightbox-hidden {
            display: none
        }

        .ladi-animation-hidden {
            visibility: hidden !important
        }

        .ladi-lazyload {
            background-image: none !important
        }

        .ladi-list-paragraph ul li.ladi-lazyload:before {
            background-image: none !important
        }

        .ladi-cart-number {
            position: absolute;
            top: -2px;
            right: -7px;
            background: #f36e36;
            text-align: center;
            width: 18px;
            height: 18px;
            line-height: 18px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            border-radius: 100%
        }

        .ladi-form-quantity {
            display: -webkit-inline-flex;
            display: inline-flex;
            border-color: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item.ladi-form-quantity .ladi-form-control {
            text-align: center;
            pointer-events: none;
            -moz-appearance: textfield;
            width: calc(100% - 45px);
            padding: 0;
            min-width: 24px;
            border-top: 1px hidden;
            border-bottom: 1px hidden;
            border-color: inherit
        }

        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item.ladi-form-quantity input::-webkit-inner-spin-button,
        .ladi-form>.ladi-element .ladi-form-item-container .ladi-form-item.ladi-form-quantity input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0
        }

        .ladi-form-quantity button {
            border: 1px hidden;
            border-color: inherit;
            cursor: pointer;
            text-align: center;
            width: 30px;
            height: 100%;
            position: relative;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none
        }

        .ladi-form-quantity button span {
            font-size: 18px;
            position: relative;
            left: .5px
        }

        .ladi-form-quantity button:first-child span {
            top: -1.2px
        }

        .ladi-form [data-variant=true] select option[disabled] {
            background: #fff;
            color: #b8b8b8 !important
        }

        .ladi-story-page-progress-bar {
            width: 100%;
            height: 25px;
            position: fixed;
            top: 0;
            left: 0
        }

        .ladi-story-page-progress-bar-item {
            height: 100%;
            width: 100%;
            display: block;
            float: left;
            margin: 0 5px;
            position: relative;
            cursor: pointer
        }

        .ladi-story-page-progress-bar-item:before {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, .4);
            border-radius: 10px;
            width: 100%;
            height: 4px;
            margin: auto;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0
        }

        .ladi-story-page-progress-bar-item.active:before {
            background: #fff
        }

        .ladi-story-page-progress-bar-item span {
            background: #fff;
            border-radius: 10px;
            height: 4px;
            display: block;
            margin: auto 0;
            top: 0;
            bottom: 0;
            position: absolute;
            transition: width .3s linear;
            width: 0%
        }

        .ladi-carousel .ladi-carousel-arrow,
        .ladi-collection .ladi-collection-arrow,
        .ladi-collection .ladi-collection-button-next,
        .ladi-gallery .ladi-gallery-control .ladi-gallery-control-arrow,
        .ladi-gallery .ladi-gallery-view .ladi-gallery-view-arrow,
        .ladi-section .ladi-section-arrow-down {
            width: 33px;
            height: 33px;
            background-repeat: no-repeat;
            background-position: center center;
            background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E")
        }

        #SECTION_POPUP .popup-close,
        .ladi-section .ladi-section-close,
        .lightbox-screen .lightbox-close {
            width: 18px;
            height: 18px;
            margin: 6px;
            background-repeat: no-repeat;
            background-position: center center;
            background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20148.1%20148.1%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M83.4%2C74l54.1-54.1c2.6-2.6%2C2.6-6.8%2C0-9.3c-2.6-2.6-6.8-2.6-9.3%2C0L74%2C64.7L20%2C10.5c-2.6-2.6-6.8-2.6-9.3%2C0c-2.6%2C2.6-2.6%2C6.8%2C0%2C9.3l54%2C54.1l-54.1%2C54.1c-2.6%2C2.6-2.6%2C6.8%2C0%2C9.3c2.6%2C2.6%2C6.8%2C2.6%2C9.3%2C0l54.1-54l54.1%2C54.1c1.3%2C1.3%2C3%2C1.9%2C4.7%2C1.9s3.4-0.6%2C4.7-1.9c1.3-1.3%2C2-3.1%2C2-4.9c0-1.7-0.8-3.4-2-4.6L83.4%2C74z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E")
        }

        #BODY_BACKGROUND {
            position: fixed;
            pointer-events: none;
            top: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            height: 100vh !important
        }

        #POPUP_BLOG .ladi-headline img,
        #POPUP_BLOG .ladi-paragraph img {
            max-width: 100%
        }

        @media (min-width:768px) {
            .ladi-fullwidth {
                width: 100vw !important;
                left: calc(-50vw + 50%) !important;
                box-sizing: border-box !important;
                transform: none !important
            }

            .ladi-fullwidth .ladi-gallery-view-item {
                transition-duration: 1.5s
            }
        }

        @media (max-width:767px) {
            .ladi-element.ladi-auto-scroll {
                overflow-x: scroll;
                overflow-y: hidden;
                width: 100% !important;
                left: 0 !important;
                -webkit-overflow-scrolling: touch
            }

            .ladi-section.ladi-auto-scroll {
                overflow-x: scroll;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch
            }

            .ladi-carousel .ladi-carousel-content {
                transition: left .3s ease-in-out
            }

            .ladi-gallery .ladi-gallery-view>.ladi-gallery-view-item {
                transition: transform .3s ease-in-out
            }

            #POPUP_BLOG .ladi-headline img,
            #POPUP_BLOG .ladi-paragraph img {
                height: auto !important
            }
        }

        .ladi-notify-transition {
            transition: top .5s ease-in-out, bottom .5s ease-in-out, opacity .5s ease-in-out
        }

        .ladi-notify {
            padding: 5px;
            box-shadow: 0 0 1px rgba(64, 64, 64, .3), 0 8px 50px rgba(64, 64, 64, .05);
            border-radius: 40px;
            line-height: 1.6;
            width: 100%;
            height: 100%;
            font-size: 13px
        }

        .ladi-notify .ladi-notify-image img {
            float: left;
            margin-right: 13px;
            border-radius: 50%;
            width: 53px;
            height: 53px;
            pointer-events: none
        }

        .ladi-notify .ladi-notify-title {
            font-size: 100%;
            height: 17px;
            overflow: hidden;
            font-weight: 700;
            overflow-wrap: break-word;
            text-overflow: ellipsis;
            white-space: nowrap;
            line-height: 1
        }

        .ladi-notify .ladi-notify-content {
            font-size: 92.308%;
            height: 17px;
            overflow: hidden;
            overflow-wrap: break-word;
            text-overflow: ellipsis;
            white-space: nowrap;
            line-height: 1;
            padding-top: 2px
        }

        .ladi-notify .ladi-notify-time {
            line-height: 1.6;
            font-size: 84.615%;
            display: inline-block;
            overflow-wrap: break-word;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: calc(100% - 155px);
            overflow: hidden
        }

        .ladi-notify .ladi-notify-copyright {
            font-size: 76.9231%;
            margin-left: 2px;
            position: relative;
            padding: 0 5px;
            cursor: pointer;
            opacity: .6;
            display: inline-block;
            top: -4px
        }

        .ladi-notify .ladi-notify-copyright svg {
            vertical-align: middle
        }

        .ladi-notify .ladi-notify-copyright svg:not(:root) {
            overflow: hidden
        }

        .ladi-notify .ladi-notify-copyright div {
            text-decoration: none;
            color: rgba(64, 64, 64, 1);
            display: inline
        }

        .ladi-notify .ladi-notify-copyright strong {
            font-weight: 700
        }

        .builder-container .ladi-notify {
            transition: unset
        }

        .ladi-spin-lucky {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            box-shadow: 0 0 7px 0 rgba(64, 64, 64, .6), 0 8px 50px rgba(64, 64, 64, .3);
            background-repeat: no-repeat;
            background-size: cover
        }

        .ladi-spin-lucky .ladi-spin-lucky-start {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: 20%;
            height: 20%;
            cursor: pointer;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            transition: transform .3s ease-in-out;
            -webkit-transition: transform .3s ease-in-out
        }

        .ladi-spin-lucky .ladi-spin-lucky-start:hover {
            transform: scale(1.1)
        }

        .ladi-spin-lucky .ladi-spin-lucky-screen {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            transition: transform 7s cubic-bezier(.25, .1, 0, 1);
            -webkit-transition: transform 7s cubic-bezier(.25, .1, 0, 1);
            text-decoration-line: inherit;
            -webkit-text-decoration-line: inherit;
            text-transform: inherit
        }

        .ladi-spin-lucky .ladi-spin-lucky-screen:before {
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none
        }

        .ladi-spin-lucky .ladi-spin-lucky-label {
            position: absolute;
            top: 50%;
            left: 50%;
            overflow: hidden;
            width: 42%;
            padding-left: 12%;
            transform-origin: 0 0;
            -webkit-transform-origin: 0 0;
            text-decoration-line: inherit;
            -webkit-text-decoration-line: inherit;
            text-transform: inherit;
            line-height: 1.6;
            text-shadow: rgba(0, 0, 0, .5) 1px 0 2px
        }
        @media (min-width: 768px) {
            .ladi-section .ladi-container {
                width: 1200px;
            }
        }

        @media (max-width: 767px) {
            .ladi-section .ladi-container {
                width: 420px;
            }
        }

        @font-face {
            font-family: "Roboto-Medium.ttf";
            src: url("fonts/roboto-medium-20200721090717.ttf") format("truetype");
        }

        @font-face {
            font-family: "Roboto-Regular.ttf";
            src: url("fonts/roboto-regular-20200721090717.ttf") format("truetype");
        }

        @font-face {
            font-family: "Roboto-Thin.ttf";
            src: url("fonts/roboto-thin-20200721090717.ttf") format("truetype");
        }

        @font-face {
            font-family: "SourceSansPro-Black.ttf";
            src: url("fonts/sourcesanspro-black-20201231072028.ttf") format("truetype");
        }

        @font-face {
            font-family: "Barlow-Regular.ttf";
            src: url("fonts/barlow-regular-20210407090356.ttf") format("truetype");
        }

        @font-face {
            font-family: "Barlow-Bold.ttf";
            src: url("fonts/barlow-bold-20210407090356.ttf") format("truetype");
        }

        body {
            font-family: "Open Sans", sans-serif
        }
        @media (min-width: 768px) {
            #SECTION_POPUP {
                height: 0px;
            }

            #SECTION_POPUP .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #SECTION1 {
                height: 1334.04px;
            }

            #SECTION1>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg1-20200415101534.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION1 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #BOX3 {
                width: 450px;
                height: 450px;
                top: 0px;
                left: 43.087px;
            }

            #BOX3>.ladi-box {
                background: rgba(1, 126, 150, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(1, 126, 150, 1.0), rgba(2, 2, 20, 0.4));
                background: linear-gradient(180deg, rgba(1, 126, 150, 1.0), rgba(2, 2, 20, 0.4));
                border-radius: 580px;
            }

            #IMAGE4 {
                width: 536.175px;
                height: 326.98px;
                top: 88.51px;
                left: 0px;
            }

            #IMAGE4>.ladi-image>.ladi-image-background {
                width: 536.175px;
                height: 326.98px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum_logo-02-02-20200722033912.png");
            }

            #PARAGRAPH6 {
                width: 462px;
                top: 446px;
                left: 37.087px;
                display: none !important;
            }

            #PARAGRAPH6>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP7 {
                width: 536.175px;
                height: 474px;
                top: 13px;
                left: 625.413px;
            }

            #IMAGE8 {
                width: 849.433px;
                height: 760px;
                top: 65.536px;
                left: 548.091px;
            }

            #IMAGE8>.ladi-image>.ladi-image-background {
                width: 849.433px;
                height: 760px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348.png");
            }

            #IMAGE8.ladi-animation>.ladi-image {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 3s;
                -webkit-animation-duration: 3s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #SECTION10 {
                height: 1066.64px;
            }

            #SECTION10.ladi-animation {
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #SECTION10>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg2-20200415101533.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION10 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #IMAGE30 {
                width: 215px;
                height: 215px;
                top: 440.8px;
                left: 805px;
                display: none !important;
            }

            #IMAGE30>.ladi-image>.ladi-image-background {
                width: 215px;
                height: 215px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-mobile-20200415101624.png");
            }

            #HEADLINE31 {
                width: 743px;
                top: 127.4px;
                left: 241.121px;
            }

            #HEADLINE31>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 35px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.2;
            }

            #IMAGE32 {
                width: 568.377px;
                height: 338px;
                top: 449.4px;
                left: 320.866px;
            }

            #IMAGE32>.ladi-image>.ladi-image-background {
                width: 568.377px;
                height: 338px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum-a-2-20200722034200.png");
            }

            #IMAGE32.ladi-animation>.ladi-image {
                animation-name: flipInX;
                -webkit-animation-name: flipInX;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 2s;
                -webkit-animation-duration: 2s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE33 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE33>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE34 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE34>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE35 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE35>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE36 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE36>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #PARAGRAPH38 {
                width: 230px;
                top: 211.524px;
                left: 0px;
            }

            #PARAGRAPH38>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH39 {
                width: 230px;
                top: 212.524px;
                left: 0px;
            }

            #PARAGRAPH39>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH40 {
                width: 230px;
                top: 211.524px;
                left: 0px;
            }

            #PARAGRAPH40>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH41 {
                width: 230px;
                top: 212.524px;
                left: 0px;
            }

            #PARAGRAPH41>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH42 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH42>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP43 {
                width: 230px;
                height: 261.524px;
                top: 317.538px;
                left: 156px;
            }

            #PARAGRAPH48 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH48>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP49 {
                width: 230px;
                height: 262.524px;
                top: 636.876px;
                left: 164px;
            }

            #PARAGRAPH50 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH50>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #PARAGRAPH51 {
                width: 151px;
                top: 74.524px;
                left: 39.5px;
            }

            #PARAGRAPH51>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP52 {
                width: 230px;
                height: 262.524px;
                top: 636.876px;
                left: 831px;
            }

            #GROUP53 {
                width: 230px;
                height: 261.524px;
                top: 317.538px;
                left: 831px;
            }

            #SECTION54 {
                height: 866.9px;
            }

            #SECTION54>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg3-20200415101532.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION54 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #SECTION55 {
                height: 723.9px;
                display: none !important;
            }

            #SECTION55>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg4-20200415101535.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION55 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE56 {
                width: 740px;
                top: 13.8px;
                left: 255.425px;
            }

            #HEADLINE56>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH57 {
                width: 647px;
                top: 119.8px;
                left: 301.925px;
            }

            #PARAGRAPH57>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                font-style: italic;
                text-align: center;
                line-height: 1.4;
            }

            #BOX59 {
                width: 340px;
                height: 340px;
                top: 38.946px;
                left: 17.5117px;
            }

            #BOX59>.ladi-box {
                background: rgba(16, 72, 145, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(16, 72, 145, 1.0), rgba(18, 11, 92, 1.0));
                background: linear-gradient(180deg, rgba(16, 72, 145, 1.0), rgba(18, 11, 92, 1.0));
                border-radius: 580px;
            }

            #BOX59.ladi-animation>.ladi-box {
                animation-name: rotateIn;
                -webkit-animation-name: rotateIn;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE61 {
                width: 370.462px;
                height: 401.946px;
                top: 0px;
                left: 0px;
            }

            #IMAGE61>.ladi-image>.ladi-image-background {
                width: 370.462px;
                height: 401.946px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pc-penirum-eng-20200722035000.png");
            }

            #GROUP62 {
                width: 370.462px;
                height: 401.946px;
                top: 251.854px;
                left: 412.488px;
            }

            #GROUP62.ladi-animation>.ladi-group {
                animation-name: flipInX;
                -webkit-animation-name: flipInX;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #BOX63 {
                width: 135px;
                height: 135px;
                top: 1px;
                left: 3.5px;
            }

            #BOX63>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE64 {
                width: 144px;
                height: 142px;
                top: 0px;
                left: 0px;
            }

            #IMAGE64>.ladi-image>.ladi-image-background {
                width: 144px;
                height: 142px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-11-20200722065141.png");
            }

            #GROUP65 {
                width: 144px;
                height: 142px;
                top: 2.5px;
                left: 252.997px;
            }

            #HEADLINE66 {
                width: 150px;
                top: 0px;
                left: 95.4973px;
            }

            #HEADLINE66>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: right;
                line-height: 1.6;
            }

            #PARAGRAPH67 {
                width: 249px;
                top: 28px;
                left: 0px;
            }

            #PARAGRAPH67>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: right;
                line-height: 1.4;
            }

            #GROUP68 {
                width: 396.997px;
                height: 160px;
                top: 223.803px;
                left: 0px;
            }

            #BOX71 {
                width: 135px;
                height: 135px;
                top: 3.5px;
                left: 4.5px;
            }

            #BOX71>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE72 {
                width: 144px;
                height: 142px;
                top: 0px;
                left: 0px;
            }

            #IMAGE72>.ladi-image>.ladi-image-background {
                width: 144px;
                height: 142px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-08-20200722065219.png");
            }

            #GROUP70 {
                width: 144px;
                height: 142px;
                top: 0px;
                left: 251.997px;
            }

            #HEADLINE73 {
                width: 235px;
                top: 0px;
                left: 10px;
            }

            #HEADLINE73>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: right;
                line-height: 1.6;
            }

            #PARAGRAPH74 {
                width: 249px;
                top: 28px;
                left: 0px;
            }

            #PARAGRAPH74>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: right;
                line-height: 1.4;
            }

            #GROUP69 {
                width: 395.997px;
                height: 142px;
                top: 490.8px;
                left: 1.24345px;
            }

            #BOX77 {
                width: 135px;
                height: 135px;
                top: 3px;
                left: 3.5px;
            }

            #BOX77>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #HEADLINE79 {
                width: 213px;
                top: 3px;
                left: 165.5px;
            }

            #HEADLINE79>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.6;
            }

            #PARAGRAPH80 {
                width: 249px;
                top: 33.497px;
                left: 165.5px;
            }

            #PARAGRAPH80>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.4;
            }

            #IMAGE81 {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
            }

            #IMAGE81>.ladi-image>.ladi-image-background {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-10-20200722065247.png");
            }

            #GROUP82 {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
            }

            #GROUP83 {
                width: 414.5px;
                height: 150px;
                top: 233.303px;
                left: 785.5px;
            }

            #HEADLINE85 {
                width: 213px;
                top: 7.5px;
                left: 162.5px;
            }

            #HEADLINE85>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.6;
            }

            #PARAGRAPH86 {
                width: 249px;
                top: 37.997px;
                left: 162.5px;
            }

            #PARAGRAPH86>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.4;
            }

            #BOX88 {
                width: 135px;
                height: 135px;
                top: 7.5px;
                left: 0.5px;
            }

            #BOX88>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE89 {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
            }

            #IMAGE89>.ladi-image>.ladi-image-background {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-09-20200722065314.png");
            }

            #GROUP87 {
                width: 150px;
                height: 150px;
                top: 0px;
                left: 0px;
            }

            #GROUP84 {
                width: 411.5px;
                height: 150px;
                top: 483.3px;
                left: 788.5px;
            }

            #BOX93 {
                width: 135px;
                height: 135px;
                top: 6px;
                left: 3px;
            }

            #BOX93>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #HEADLINE95 {
                width: 164px;
                top: 2.5px;
                left: 413px;
            }

            #HEADLINE95>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: right;
                line-height: 1.6;
            }

            #PARAGRAPH96 {
                width: 577px;
                top: 31.5px;
                left: 0px;
            }

            #PARAGRAPH96>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: right;
                line-height: 1.4;
            }

            #IMAGE97 {
                width: 144.162px;
                height: 143.251px;
                top: 0px;
                left: 0px;
            }

            #IMAGE97>.ladi-image>.ladi-image-background {
                width: 144.162px;
                height: 143.251px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-07-20200722065346.png");
            }

            #GROUP98 {
                width: 144.162px;
                height: 143.251px;
                top: 0px;
                left: 590.497px;
            }

            #GROUP99 {
                width: 734.659px;
                height: 143.251px;
                top: 688.797px;
                left: 194.243px;
            }

            #SECTION100 {
                height: 2251.9px;
                display: none !important;
            }

            #SECTION100>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg6-8-20200415101553.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION100 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE101 {
                width: 646px;
                top: 27.9px;
                left: 277px;
            }

            #HEADLINE101>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #PARAGRAPH102 {
                width: 375px;
                top: 110.897px;
                left: 412.5px;
            }

            #PARAGRAPH102>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                font-style: italic;
                text-align: center;
                line-height: 1.4;
            }

            #IMAGE103 {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
            }

            #IMAGE103>.ladi-image>.ladi-image-background {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636.png");
            }

            #BOX104 {
                width: 50px;
                height: 50px;
                top: 20.309px;
                left: 126.826px;
            }

            #BOX104>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #GROUP105 {
                width: 303.652px;
                height: 70.309px;
                top: 148.246px;
                left: 448.174px;
            }

            #VIDEO106 {
                width: 531.556px;
                height: 299px;
                top: 271.4px;
                left: 30.4444px;
            }

            #VIDEO106>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video1-20200415101552.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #SHAPE106 {
                width: 60px;
                height: 60px;
                top: 119.5px;
                left: 235.778px;
            }

            #SHAPE106 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #SHAPE107 {
                width: 60px;
                height: 60px;
                top: 119.5px;
                left: 235.777px;
            }

            #SHAPE107 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #VIDEO107 {
                width: 531.555px;
                height: 299px;
                top: 271.4px;
                left: 642.5px;
            }

            #VIDEO107>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/hqdefault.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #PARAGRAPH109 {
                width: 419px;
                top: 583.897px;
                left: 86.7224px;
            }

            #PARAGRAPH109>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                font-style: italic;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH110 {
                width: 419px;
                top: 583.897px;
                left: 698.777px;
            }

            #PARAGRAPH110>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                font-style: italic;
                text-align: center;
                line-height: 1.4;
            }

            #BUTTON112 {
                width: 270px;
                height: 50px;
                top: 673.9px;
                left: 445.174px;
                z-index: 10;
            }

            #BUTTON112>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON112>.ladi-button {
                border-radius: 35px;
            }

            #BUTTON112.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #BUTTON_TEXT112 {
                width: 270px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT112>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #SECTION113 {
                height: 907.9px;
            }

            #SECTION113>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION113 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE114 {
                width: 739px;
                top: 32.497px;
                left: 230.5px;
            }

            #HEADLINE114>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
                text-shadow: rgb(0, 0, 0) 2px 3px 3px;
            }

            #BOX115 {
                width: 381.649px;
                height: 381.649px;
                top: 384.193px;
                left: 189.442px;
                display: none !important;
            }

            #BOX115>.ladi-box {
                background-color: rgba(10, 79, 93, 0.4);
                border-radius: 502px;
            }

            #IMAGE118 {
                width: 982.162px;
                height: 834.54px;
                top: 0px;
                left: 0px;
            }

            #IMAGE118>.ladi-image>.ladi-image-background {
                width: 982.162px;
                height: 834.54px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348_1.png");
            }

            #GROUP119 {
                width: 982.162px;
                height: 834.54px;
                top: -7px;
                left: -72.662px;
            }

            #GROUP119.ladi-animation>.ladi-group {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #PARAGRAPH120 {
                width: 410px;
                top: 0px;
                left: 35.2865px;
            }

            #PARAGRAPH120>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #PARAGRAPH121 {
                width: 410px;
                top: 72.1785px;
                left: 35.2865px;
            }

            #PARAGRAPH121>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #PARAGRAPH122 {
                width: 410px;
                top: 144.357px;
                left: 35.2865px;
            }

            #PARAGRAPH122>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #PARAGRAPH123 {
                width: 410px;
                top: 216.536px;
                left: 35.2865px;
            }

            #PARAGRAPH123>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #PARAGRAPH124 {
                width: 410px;
                top: 288.714px;
                left: 35.2865px;
            }

            #PARAGRAPH124>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #BOX125 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #BOX125>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX126 {
                width: 16.6566px;
                height: 16.6566px;
                top: 3.33131px;
                left: 3.33133px;
            }

            #BOX126>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP127 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #LINE128 {
                height: 71px;
                top: 15.5461px;
                left: 2.22089px;
            }

            #LINE128>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE128>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP129 {
                width: 23.3193px;
                height: 86.6142px;
                top: 4.44175px;
                left: 0px;
            }

            #LINE131 {
                height: 71px;
                top: 15.5461px;
                left: 2.22089px;
            }

            #LINE131>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE131>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX133 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #BOX133>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX134 {
                width: 16.6566px;
                height: 16.6566px;
                top: 3.33131px;
                left: 3.33133px;
            }

            #BOX134>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP132 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #GROUP130 {
                width: 23.3193px;
                height: 86.6142px;
                top: 72.1785px;
                left: 0px;
            }

            #LINE136 {
                height: 71px;
                top: 15.5461px;
                left: 2.22089px;
            }

            #LINE136>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE136>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX138 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #BOX138>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX139 {
                width: 16.6566px;
                height: 16.6566px;
                top: 3.33131px;
                left: 3.33133px;
            }

            #BOX139>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP137 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #GROUP135 {
                width: 23.3193px;
                height: 86.6142px;
                top: 144.357px;
                left: 0px;
            }

            #LINE141 {
                height: 71px;
                top: 15.5461px;
                left: 2.22089px;
            }

            #LINE141>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE141>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX143 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #BOX143>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX144 {
                width: 16.6566px;
                height: 16.6566px;
                top: 3.33131px;
                left: 3.33133px;
            }

            #BOX144>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP142 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #GROUP140 {
                width: 23.3193px;
                height: 86.6142px;
                top: 216.536px;
                left: 0px;
            }

            #BOX148 {
                width: 23.3193px;
                height: 23.3192px;
                top: 0px;
                left: 0px;
            }

            #BOX148>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX149 {
                width: 16.6566px;
                height: 16.6566px;
                top: 3.33131px;
                left: 3.33133px;
            }

            #BOX149>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP147 {
                width: 23.3193px;
                height: 23.3192px;
                top: 288.714px;
                left: 0px;
            }

            #GROUP152 {
                width: 445.286px;
                height: 338.714px;
                top: 467.831px;
                left: 630.312px;
            }

            #HEADLINE153 {
                width: 619px;
                top: 737.95px;
                left: 290.5px;
                display: none !important;
            }

            #HEADLINE153>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #BOX155 {
                width: 50px;
                height: 50px;
                top: 20.309px;
                left: 126.826px;
            }

            #BOX155>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #IMAGE156 {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
            }

            #IMAGE156>.ladi-image>.ladi-image-background {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636.png");
            }

            #GROUP154 {
                width: 303.652px;
                height: 70.309px;
                top: 837.591px;
                left: 438.348px;
                display: none !important;
            }

            #SECTION157 {
                height: 976.2px;
            }

            #SECTION157>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg9-20200415101553.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION157 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #VIDEO158 {
                width: 825px;
                height: 464.063px;
                top: 36.6px;
                left: 325px;
            }

            #VIDEO158>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video3-20200415101613.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #SHAPE158 {
                width: 60px;
                height: 60px;
                top: 202.031px;
                left: 382.5px;
            }

            #SHAPE158 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #IMAGE159 {
                width: 294.191px;
                height: 464.063px;
                top: 36.6px;
                left: 63px;
            }

            #IMAGE159>.ladi-image>.ladi-image-background {
                width: 294.191px;
                height: 464.063px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model1-s6-20200415101613.png");
            }

            #PARAGRAPH160 {
                width: 540px;
                top: 0px;
                left: 98.777px;
            }

            #PARAGRAPH160>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #BOX161 {
                width: 80px;
                height: 10px;
                top: 7.5px;
                left: 0px;
            }

            #BOX161>.ladi-box {
                background: rgba(253, 251, 251, 0.0);
                background: -webkit-linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                background: linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                border-radius: 20px;
            }

            #GROUP162 {
                width: 638.777px;
                height: 25px;
                top: 508.05px;
                left: 325px;
            }

            #SHAPE163 {
                width: 60px;
                height: 60px;
                top: 202.031px;
                left: 382.5px;
            }

            #SHAPE163 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #VIDEO163 {
                width: 825px;
                height: 464.063px;
                top: 570.6px;
                left: 49px;
            }

            #VIDEO163>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video4-20200415101613.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #IMAGE165 {
                width: 219.065px;
                height: 529.063px;
                top: 570.6px;
                left: 930.935px;
            }

            #IMAGE165>.ladi-image>.ladi-image-background {
                width: 219.065px;
                height: 529.063px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model2-s6-20200415101613.png");
            }

            #PARAGRAPH167 {
                width: 540px;
                top: 0px;
                left: 98.777px;
            }

            #PARAGRAPH167>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #BOX168 {
                width: 80px;
                height: 10px;
                top: 7.5px;
                left: 0px;
            }

            #BOX168>.ladi-box {
                background: rgba(253, 251, 251, 0.0);
                background: -webkit-linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                background: linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                border-radius: 20px;
            }

            #GROUP166 {
                width: 638.777px;
                height: 25px;
                top: 1047.05px;
                left: 49px;
            }

            #IMAGE169 {
                width: 514.638px;
                height: 546.308px;
                top: 1134.45px;
                left: 49px;
            }

            #IMAGE169>.ladi-image>.ladi-image-background {
                width: 514.638px;
                height: 546.308px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-s7-20200415101625.png");
            }

            #HEADLINE170 {
                width: 604px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE170>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH171 {
                width: 540px;
                top: 82px;
                left: 0px;
            }

            #PARAGRAPH171>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #BOX172 {
                width: 510px;
                height: 230px;
                top: 0px;
                left: 0px;
            }

            #BOX172>.ladi-box {
                box-shadow: 0px 0px 15px 0px #ffffffbd;
                -webkit-box-shadow: 0px 0px 15px 0px #ffffffbd;
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH173 {
                width: 215px;
                top: 28.85px;
                left: 16px;
            }

            #PARAGRAPH173>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-align: left;
                line-height: 1.2;
            }

            #LIST_PARAGRAPH175 {
                width: 478px;
                top: 74px;
                left: 16px;
            }

            #LIST_PARAGRAPH175>.ladi-list-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(96, 96, 96);
                font-size: 16px;
                line-height: 1.6;
            }

            #LIST_PARAGRAPH175 ul li {
                padding-left: 20px;
            }

            #LIST_PARAGRAPH175 ul li:before {
                content: counter(linum, disc);
                font-size: 40px;
                top: -20px;
            }

            #LINE176 {
                width: 87px;
                top: 189.5px;
                left: 16px;
            }

            #LINE176>.ladi-line>.ladi-line-container {
                border-top: 4px solid rgba(224, 40, 19, 0.5);
                border-right: 4px solid rgba(224, 40, 19, 0.5);
                border-bottom: 4px solid rgba(224, 40, 19, 0.5);
                border-left: 0px !important;
            }

            #LINE176>.ladi-line {
                width: 100%;
                padding: 8px 0px;
            }

            #GROUP177 {
                width: 510px;
                height: 230px;
                top: 148.15px;
                left: 0px;
            }

            #GROUP178 {
                width: 604px;
                height: 378.15px;
                top: 1189.45px;
                left: 596px;
            }

            #BOX179 {
                width: 1140px;
                height: 450px;
                top: 0px;
                left: 0px;
            }

            #BOX179>.ladi-box {
                background: #800309;
                background: -webkit-linear-gradient(180deg, #800309, #2e0108);
                background: linear-gradient(180deg, #800309, #2e0108);
                border-style: solid;
                border-color: rgb(169, 3, 5);
                border-width: 2px;
                border-radius: 10px;
            }

            #IMAGE180 {
                width: 445.138px;
                height: 404.938px;
                top: 22.53px;
                left: 29px;
            }

            #IMAGE180>.ladi-image>.ladi-image-background {
                width: 445.138px;
                height: 404.938px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model-s8-20200415101613.png");
            }

            #HEADLINE189 {
                width: 604px;
                top: 53.53px;
                left: 507px;
            }

            #HEADLINE189>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #IMAGE190 {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
            }

            #IMAGE190>.ladi-image>.ladi-image-background {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
                background-image: url("../images/clock-20200415101611.png");
            }

            #PARAGRAPH191 {
                width: 389px;
                top: 15px;
                left: 61px;
            }

            #PARAGRAPH191>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #HEADLINE193 {
                width: 123px;
                top: 219px;
                left: 533.638px;
            }

            #HEADLINE193>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH194 {
                width: 469px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH194>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX195 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX195>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP196 {
                width: 504.362px;
                height: 28px;
                top: 0px;
                left: 0px;
            }

            #PARAGRAPH198 {
                width: 559px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH198>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.4;
            }

            #BOX199 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX199>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP197 {
                width: 594.362px;
                height: 56px;
                top: 36px;
                left: 0px;
            }

            #PARAGRAPH201 {
                width: 588px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH201>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX202 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX202>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP200 {
                width: 623.362px;
                height: 28px;
                top: 92px;
                left: 0px;
            }

            #GROUP203 {
                width: 623.362px;
                height: 120px;
                top: 263px;
                left: 507px;
            }

            #GROUP204 {
                width: 450px;
                height: 49px;
                top: 144.5px;
                left: 507px;
            }

            #SHAPE208 {
                width: 32.4631px;
                height: 32.4631px;
                top: 161.269px;
                left: 553.968px;
            }

            #SHAPE208 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #SHAPE209 {
                width: 32.4631px;
                height: 32.4631px;
                top: 161.269px;
                left: 0px;
            }

            #SHAPE209>.ladi-shape {
                transform: rotate(-270deg);
                -webkit-transform: rotate(-270deg);
            }

            #SHAPE209 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #BOX210 {
                width: 534.071px;
                height: 921.431px;
                top: 0px;
                left: 26.18px;
            }

            #BOX210>.ladi-box {
                background: #e02813c7;
                background: -webkit-linear-gradient(180deg, #e02813c7, #3c0f27);
                background: linear-gradient(180deg, #e02813c7, #3c0f27);
                border-style: solid;
                border-color: rgb(198, 4, 4);
                border-width: 3px;
                border-radius: 25px;
            }

            #BOX211 {
                width: 586.431px;
                height: 131.947px;
                top: 29.3216px;
                left: 0px;
            }

            #BOX211>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(rgb(69, 2, 8), rgb(224, 40, 19), rgb(73, 3, 3));
            }

            #GROUP207 {
                width: 586.431px;
                height: 921.431px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE212 {
                width: 418px;
                top: 35px;
                left: 83.5px;
            }

            #HEADLINE212>.ladi-headline {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.4;
            }

            #PARAGRAPH213 {
                width: 443px;
                top: 109px;
                left: 58.5px;
            }

            #PARAGRAPH213>.ladi-paragraph {
                font-family: "Roboto-Regular.ttf";
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP206 {
                width: 586.431px;
                height: 921.431px;
                top: 12px;
                left: 2.569px;
            }

            #BUTTON_TEXT219 {
                width: 358px;
                top: 11.2887px;
                left: 0px;
            }

            #BUTTON_TEXT219>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON219 {
                width: 358.729px;
                height: 62.7151px;
                top: 150.285px;
                left: 40.1375px;
            }

            #BUTTON219>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON219>.ladi-button {
                box-shadow: 0px 15px 6px -9px #000;
                -webkit-box-shadow: 0px 15px 6px -9px #000;
                border-radius: 30px;
            }

            #BUTTON219.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #FORM_ITEM221 {
                width: 439.004px;
                height: 50.1721px;
                top: 0px;
                left: 0px;
            }

            #FORM_ITEM222 {
                width: 439.004px;
                height: 50.1721px;
                top: 70.2409px;
                left: 0px;
            }

            #FORM218 {
                width: 439.004px;
                height: 213px;
                top: 564.4px;
                left: 75.2485px;
                z-index: 20;
            }

            #FORM218>.ladi-form {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 15px;
                text-align: center;
                line-height: 1.6;
            }

            #FORM218 .ladi-form-item .ladi-form-control::placeholder,
            #FORM218 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"] {
                color: rgba(255, 255, 255, 1);
            }

            #FORM218 .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2232%22%20height%3D%2224%22%20viewBox%3D%220%200%2032%2024%22%3E%3Cpolygon%20points%3D%220%2C0%2032%2C0%2016%2C24%22%20style%3D%22fill%3A%20rgba(255%2C%20255%2C%20255%2C%201)%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
            }

            #FORM218 .ladi-form-item .ladi-form-control-select {
                text-align-last: center;
            }

            #FORM218 .ladi-form-item-container,
            #FORM218 .ladi-form-label-container .ladi-form-label-item {
                border-style: solid;
                border-color: rgb(238, 238, 238);
                border-width: 1px;
            }

            #FORM218 .ladi-form-item-container .ladi-form-quantity button {
                background-color: rgb(238, 238, 238);
            }

            #IMAGE227 {
                width: 330.724px;
                height: 210.576px;
                top: 64.8154px;
                left: 0px;
            }

            #IMAGE227>.ladi-image>.ladi-image-background {
                width: 330.724px;
                height: 210.576px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum_logo-02-02-20200722033912_2.png");
            }

            #BOX226 {
                width: 308px;
                height: 308px;
                top: 0px;
                left: 8.82368px;
            }

            #BOX226>.ladi-box {
                background: rgba(11, 46, 92, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(11, 46, 92, 1.0), rgba(19, 155, 224, 0.2));
                background: linear-gradient(180deg, rgba(11, 46, 92, 1.0), rgba(19, 155, 224, 0.2));
                border-radius: 580px;
            }

            #BOX230 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX230>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE244 {
                width: 363px;
                top: 13px;
                left: 18.5px;
            }

            #HEADLINE244>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH245 {
                width: 515px;
                top: 911.4px;
                left: 622.573px;
            }

            #PARAGRAPH245>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 13px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #IMAGE246 {
                width: 906.655px;
                height: 799.2px;
                top: -98.7px;
                left: 509.284px;
            }

            #IMAGE246>.ladi-image>.ladi-image-background {
                width: 906.655px;
                height: 799.2px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348_2.png");
            }

            #IMAGE246.ladi-animation>.ladi-image {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE248 {
                width: 420px;
                height: 420px;
                top: 386.45px;
                left: 1065px;
                display: none !important;
            }

            #IMAGE248>.ladi-image>.ladi-image-background {
                width: 420px;
                height: 420px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-mobile-20200415101624_1.png");
            }

            #GROUP251 {
                width: 1140px;
                height: 450px;
                top: 1747.6px;
                left: 30px;
            }

            #BOX287 {
                width: 50px;
                height: 50px;
                top: 20.309px;
                left: 126.826px;
            }

            #BOX287>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #IMAGE288 {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
            }

            #IMAGE288>.ladi-image>.ladi-image-background {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636.png");
            }

            #GROUP286 {
                width: 303.652px;
                height: 70.309px;
                top: 898.591px;
                left: -397.652px;
                display: none !important;
            }

            #SECTION252 {
                height: 999.9px;
            }

            #SECTION252>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION252 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #BOX292 {
                width: 1140px;
                height: 450px;
                top: 518.9px;
                left: 30px;
            }

            #BOX292>.ladi-box {
                background: #800309;
                background: -webkit-linear-gradient(180deg, #800309, #2e0108);
                background: linear-gradient(180deg, #800309, #2e0108);
                border-style: solid;
                border-color: rgb(169, 3, 5);
                border-width: 2px;
                border-radius: 10px;
            }

            #IMAGE293 {
                width: 445.138px;
                height: 404.938px;
                top: 541.43px;
                left: 59px;
            }

            #IMAGE293>.ladi-image>.ladi-image-background {
                width: 445.138px;
                height: 404.938px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model-s8-20200415101613.png");
            }

            #HEADLINE294 {
                width: 593px;
                top: 572.43px;
                left: 537px;
            }

            #HEADLINE294>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #IMAGE296 {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
            }

            #IMAGE296>.ladi-image>.ladi-image-background {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
                background-image: url("../images/clock-20200415101611.png");
            }

            #PARAGRAPH297 {
                width: 389px;
                top: 15px;
                left: 61px;
            }

            #PARAGRAPH297>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #GROUP295 {
                width: 450px;
                height: 49px;
                top: 663.4px;
                left: 537px;
            }

            #HEADLINE298 {
                width: 123px;
                top: 737.9px;
                left: 563.638px;
            }

            #HEADLINE298>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH301 {
                width: 469px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH301>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX302 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX302>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP300 {
                width: 504.362px;
                height: 28px;
                top: 0px;
                left: 0px;
            }

            #PARAGRAPH304 {
                width: 559px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH304>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.4;
            }

            #BOX305 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX305>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP303 {
                width: 594.362px;
                height: 56px;
                top: 36px;
                left: 0px;
            }

            #PARAGRAPH307 {
                width: 588px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH307>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX308 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX308>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP306 {
                width: 623.362px;
                height: 28px;
                top: 92px;
                left: 0px;
            }

            #GROUP299 {
                width: 623.362px;
                height: 120px;
                top: 781.9px;
                left: 537px;
            }

            #HEADLINE310 {
                width: 604px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE310>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.4;
            }

            #PARAGRAPH311 {
                width: 540px;
                top: 106px;
                left: 0px;
            }

            #PARAGRAPH311>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #BOX313 {
                width: 510px;
                height: 230px;
                top: 0px;
                left: 0px;
            }

            #BOX313>.ladi-box {
                box-shadow: 0px 0px 15px 0px #ffffffbd;
                -webkit-box-shadow: 0px 0px 15px 0px #ffffffbd;
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH314 {
                width: 215px;
                top: 28.85px;
                left: 16px;
            }

            #PARAGRAPH314>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-align: left;
                line-height: 1.2;
            }

            #LIST_PARAGRAPH315 {
                width: 478px;
                top: 69px;
                left: 16px;
            }

            #LIST_PARAGRAPH315>.ladi-list-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(96, 96, 96);
                font-size: 16px;
                line-height: 1.6;
            }

            #LIST_PARAGRAPH315 ul li {
                padding-left: 20px;
            }

            #LIST_PARAGRAPH315 ul li:before {
                content: counter(linum, disc);
                font-size: 40px;
                top: -20px;
            }

            #LINE316 {
                width: 87px;
                top: 189.5px;
                left: 16px;
            }

            #LINE316>.ladi-line>.ladi-line-container {
                border-top: 4px solid rgb(23, 100, 200);
                border-right: 4px solid rgb(23, 100, 200);
                border-bottom: 4px solid rgb(23, 100, 200);
                border-left: 0px !important;
            }

            #LINE316>.ladi-line {
                width: 100%;
                padding: 8px 0px;
            }

            #GROUP312 {
                width: 510px;
                height: 230px;
                top: 172.15px;
                left: 0px;
            }

            #GROUP309 {
                width: 604px;
                height: 402.15px;
                top: 47.025px;
                left: 587px;
            }

            #IMAGE317 {
                width: 263.563px;
                height: 417.308px;
                top: 68.025px;
                left: 196px;
            }

            #IMAGE317>.ladi-image>.ladi-image-background {
                width: 263.563px;
                height: 417.308px;
                top: 0px;
                left: 0px;
                background-image: url("../images/cong-bo-penirum-a-pic-20200722040222.png");
            }

            #IMAGE318 {
                width: 329.591px;
                height: 196px;
                top: 316.9px;
                left: 67.0303px;
            }

            #IMAGE318>.ladi-image>.ladi-image-background {
                width: 329.591px;
                height: 196px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum-a-2-20200722034200_1.png");
            }

            #BOX384 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX384>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE385 {
                width: 363px;
                top: 13px;
                left: 18.5px;
            }

            #HEADLINE385>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP383 {
                width: 400px;
                height: 90px;
                top: 808.591px;
                left: 405.668px;
            }

            #GROUP386 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX388 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX388>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE389 {
                width: 363px;
                top: 13px;
                left: 18.5px;
            }

            #HEADLINE389>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP387 {
                width: 400px;
                height: 90px;
                top: 821.716px;
                left: 704.501px;
            }

            #SECTION406 {
                height: 968.9px;
            }

            #SECTION406>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552_2.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION406 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #GROUP407 {
                width: 303.652px;
                height: 70.309px;
                top: 898.591px;
                left: -397.652px;
                display: none !important;
            }

            #IMAGE409 {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
            }

            #IMAGE409>.ladi-image>.ladi-image-background {
                width: 303.652px;
                height: 70.3087px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636.png");
            }

            #BOX408 {
                width: 50px;
                height: 50px;
                top: 20.309px;
                left: 126.826px;
            }

            #BOX408>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #HEADLINE450 {
                width: 752px;
                top: 28.9665px;
                left: 224px;
            }

            #HEADLINE450>.ladi-headline {
                color: rgb(225, 149, 73);
                font-size: 40px;
                text-align: center;
                line-height: 1.4;
            }

            #IMAGE451 {
                width: 32px;
                height: 16px;
                top: 110.8px;
                left: 584px;
            }

            #IMAGE451>.ladi-image>.ladi-image-background {
                width: 32px;
                height: 16px;
                top: 0px;
                left: 0px;
                background-image: url("../images/angle-20200411040722.png");
            }

            #PARAGRAPH454 {
                width: 646px;
                top: 214.8px;
                left: 393px;
            }

            #PARAGRAPH454>.ladi-paragraph {
                color: rgb(236, 201, 166);
                font-size: 16px;
                font-style: italic;
                text-align: left;
                line-height: 1.6;
            }

            #PARAGRAPH455 {
                width: 190px;
                top: 363.8px;
                left: 405.668px;
            }

            #PARAGRAPH455>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.6;
            }

            #BOX456 {
                width: 215.336px;
                height: 62px;
                top: 357.8px;
                left: 393px;
            }

            #BOX456>.ladi-box {
                background-color: rgb(232, 105, 48);
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #BOX457 {
                width: 909.246px;
                height: 246px;
                top: 188.8px;
                left: 145.377px;
            }

            #BOX457>.ladi-box {
                background-color: rgba(228, 228, 228, 0);
                border-style: solid;
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #IMAGE458 {
                width: 200px;
                height: 200px;
                top: 214.8px;
                left: 170px;
            }

            #IMAGE458>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 200px;
                top: 0px;
                left: 0px;
                background-image: url("../images/ava1-20200411040722-20201221100233.jpg");
            }

            #BOX459 {
                width: 909.246px;
                height: 246px;
                top: 505.3px;
                left: 145.377px;
            }

            #BOX459>.ladi-box {
                background-color: rgba(228, 228, 228, 0);
                border-style: solid;
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #PARAGRAPH460 {
                width: 646px;
                top: 534.8px;
                left: 170px;
            }

            #PARAGRAPH460>.ladi-paragraph {
                color: rgb(236, 201, 166);
                font-size: 16px;
                font-style: italic;
                text-align: justify;
                line-height: 1.6;
            }

            #BOX461 {
                width: 239.295px;
                height: 62px;
                top: 0px;
                left: 0px;
            }

            #BOX461>.ladi-box {
                background-color: rgb(232, 105, 48);
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #PARAGRAPH462 {
                width: 214px;
                top: 6px;
                left: 12.647px;
            }

            #PARAGRAPH462>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: right;
                line-height: 1.6;
            }

            #IMAGE463 {
                width: 200px;
                height: 200px;
                top: 534.8px;
                left: 832px;
            }

            #IMAGE463>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 200px;
                top: 0px;
                left: 0px;
                background-image: url("../images/ava2-20200411040722-20201221100400.jpg");
            }

            #HEADLINE466 {
                width: 602px;
                top: 26px;
                left: 299px;
            }

            #HEADLINE466>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 14px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #SECTION465 {
                height: 76px;
            }

            #SECTION465>.ladi-section-background {
                background-color: rgb(11, 46, 92);
            }

            #SECTION465 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #GROUP491 {
                width: 330.724px;
                height: 308px;
                top: 27.4px;
                left: 720.645px;
            }

            #GROUP492 {
                width: 400px;
                height: 90px;
                top: 687.4px;
                left: 680.073px;
            }

            #PARAGRAPH495 {
                width: 401px;
                top: 1094.64px;
                left: 164.476px;
            }

            #PARAGRAPH495>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 14px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #IMAGE500 {
                width: 443.769px;
                height: 421.613px;
                top: 77.387px;
                left: 136.615px;
            }

            #IMAGE500>.ladi-image>.ladi-image-background {
                width: 443.769px;
                height: 421.613px;
                top: 0px;
                left: 0px;
                background-image: url("../images/couple-thai-20201102073506-20201208094108.png");
            }

            #IMAGE501 {
                width: 200px;
                height: 200px;
                top: 193.96px;
                left: 742px;
            }

            #IMAGE501>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 200px;
                top: 0px;
                left: 0px;
                background-image: url("../images/chuyen-gia-20200807055411.png");
            }

            #PARAGRAPH502 {
                width: 339px;
                top: 406.96px;
                left: 683.455px;
            }

            #PARAGRAPH502>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: left;
                line-height: 1.4;
            }

            #GROUP504 {
                width: 239.295px;
                height: 62px;
                top: 670.3px;
                left: 576.705px;
            }

            #BUTTON505 {
                width: 295.05px;
                height: 57px;
                top: 936.56px;
                left: 451.9px;
            }

            #BUTTON505>.ladi-button>.ladi-button-background {
                background: #ff6a00;
                background: -webkit-linear-gradient(180deg, #ff6a00, #ee0979);
                background: linear-gradient(180deg, #ff6a00, #ee0979);
            }

            #BUTTON505>.ladi-button {
                border-radius: 33px;
            }

            #BUTTON505.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #BUTTON_TEXT505 {
                width: 295px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT505>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON_TEXT506 {
                width: 295px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT506>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON506 {
                width: 295.05px;
                height: 57px;
                top: 835.591px;
                left: 636.45px;
            }

            #BUTTON506>.ladi-button>.ladi-button-background {
                background: #ff6a00;
                background: -webkit-linear-gradient(180deg, #ff6a00, #ee0979);
                background: linear-gradient(180deg, #ff6a00, #ee0979);
            }

            #BUTTON506>.ladi-button {
                border-radius: 33px;
            }

            #BUTTON506.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #NOTIFY508 {
                width: 300px;
                height: 62px;
                top: 10px;
                left: 10px;
                bottom: auto;
                right: auto;
                position: fixed;
                z-index: 90000060;
            }

            #NOTIFY508>.ladi-notify {
                color: rgb(64, 64, 64);
                background-color: rgba(250, 250, 250, 0.9);
            }

            #COUNTDOWN_ITEM516 {
                visibility: hidden;
                pointer-events: none;
            }

            #COUNTDOWN515 {
                width: 258.246px;
                height: 46px;
                top: 241.32px;
                left: 134.754px;
            }

            #COUNTDOWN515>.ladi-countdown {
                color: rgb(0, 0, 0);
                font-size: 40px;
                font-weight: bold;
                text-align: center;
            }

            #COUNTDOWN515>.ladi-countdown>.ladi-element {
                width: calc((100% - 10px * 3) / 4);
                margin-right: 10px;
                height: 100%;
            }

            #COUNTDOWN515>.ladi-countdown .ladi-countdown-background {
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH520 {
                width: 446px;
                top: 194.92px;
                left: 63.2835px;
            }

            #PARAGRAPH520>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 20px;
                text-align: center;
                line-height: 1.6;
            }

            #HEADLINE521 {
                width: 502px;
                top: 297px;
                left: 43.751px;
            }

            #HEADLINE521>.ladi-headline {
                font-family: "Roboto-Thin.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(0, 0, 0);
                font-size: 21px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH523 {
                width: 504px;
                top: 325px;
                left: 38.2835px;
            }

            #PARAGRAPH523>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 31px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #SHAPE551 {
                width: 26.1686px;
                height: 27.5548px;
                top: 136.886px;
                left: 446.554px;
            }

            #SHAPE551 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #SHAPE552 {
                width: 26.1686px;
                height: 27.5548px;
                top: 136.886px;
                left: 0px;
            }

            #SHAPE552>.ladi-shape {
                transform: rotate(-270deg);
                -webkit-transform: rotate(-270deg);
            }

            #SHAPE552 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #BOX553 {
                width: 430.515px;
                height: 735.431px;
                top: 0px;
                left: 21.1037px;
            }

            #BOX553>.ladi-box {
                background: #e02813c7;
                background: -webkit-linear-gradient(180deg, #e02813c7, #3c0f27);
                background: linear-gradient(180deg, #e02813c7, #3c0f27);
                border-style: solid;
                border-color: rgb(198, 4, 4);
                border-width: 3px;
                border-radius: 25px;
            }

            #BOX554 {
                width: 472.723px;
                height: 111.998px;
                top: 24.8883px;
                left: 0px;
            }

            #BOX554>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(rgb(69, 2, 8), rgb(224, 40, 19), rgb(73, 3, 3));
            }

            #GROUP550 {
                width: 472.723px;
                height: 735.431px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE555 {
                width: 337px;
                top: 29.7082px;
                left: 67.3095px;
            }

            #HEADLINE555>.ladi-headline {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 40px;
                font-weight: bold;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.4;
            }

            #PARAGRAPH556 {
                width: 357px;
                top: 92.5197px;
                left: 47.1569px;
            }

            #PARAGRAPH556>.ladi-paragraph {
                font-family: "Roboto-Regular.ttf";
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP549 {
                width: 472.723px;
                height: 735.431px;
                top: 499px;
                left: 129.228px;
            }

            #PARAGRAPH558 {
                width: 446px;
                top: 648px;
                left: 142.589px;
            }

            #PARAGRAPH558>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 20px;
                text-align: center;
                line-height: 1.6;
            }

            #COUNTDOWN_ITEM560 {
                visibility: hidden;
                pointer-events: none;
            }

            #COUNTDOWN559 {
                width: 258.246px;
                height: 46px;
                top: 691.4px;
                left: 208.367px;
            }

            #COUNTDOWN559>.ladi-countdown {
                color: rgb(0, 0, 0);
                font-size: 40px;
                font-weight: bold;
                text-align: center;
            }

            #COUNTDOWN559>.ladi-countdown>.ladi-element {
                width: calc((100% - 10px * 3) / 4);
                margin-right: 10px;
                height: 100%;
            }

            #COUNTDOWN559>.ladi-countdown .ladi-countdown-background {
                background-color: rgb(255, 255, 255);
            }

            #HEADLINE578 {
                width: 502px;
                top: 753.64px;
                left: 103.774px;
            }

            #HEADLINE578>.ladi-headline {
                font-family: "Roboto-Thin.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(0, 0, 0);
                font-size: 21px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH580 {
                width: 565px;
                top: 783.536px;
                left: 75.9995px;
            }

            #PARAGRAPH580>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 30px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #BUTTON_TEXT583 {
                width: 286px;
                top: 11.2887px;
                left: 0px;
            }

            #BUTTON_TEXT583>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON583 {
                width: 299.895px;
                height: 62.7151px;
                top: 153.285px;
                left: 33.5545px;
            }

            #BUTTON583>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON583>.ladi-button {
                box-shadow: 0px 15px 6px -9px #000;
                -webkit-box-shadow: 0px 15px 6px -9px #000;
                border-radius: 30px;
            }

            #BUTTON583.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #FORM_ITEM585 {
                width: 367.004px;
                height: 50.1721px;
                top: 0px;
                left: 0px;
            }

            #FORM_ITEM586 {
                width: 367.004px;
                height: 50.1721px;
                top: 70.2409px;
                left: 0px;
            }

            #FORM582 {
                width: 367.004px;
                height: 216px;
                top: 846.04px;
                left: 181.087px;
                z-index: 20;
            }

            #FORM582>.ladi-form {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 15px;
                text-align: center;
                line-height: 1.6;
            }

            #FORM582 .ladi-form-item .ladi-form-control::placeholder,
            #FORM582 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"] {
                color: rgba(255, 255, 255, 1);
            }

            #FORM582 .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2232%22%20height%3D%2224%22%20viewBox%3D%220%200%2032%2024%22%3E%3Cpolygon%20points%3D%220%2C0%2032%2C0%2016%2C24%22%20style%3D%22fill%3A%20rgba(255%2C%20255%2C%20255%2C%201)%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
            }

            #FORM582 .ladi-form-item .ladi-form-control-select {
                text-align-last: center;
            }

            #FORM582 .ladi-form-item-container,
            #FORM582 .ladi-form-label-container .ladi-form-label-item {
                border-style: solid;
                border-color: rgb(238, 238, 238);
                border-width: 1px;
            }

            #FORM582 .ladi-form-item-container .ladi-form-quantity button {
                background-color: rgb(238, 238, 238);
            }

            #FORM_ITEM589 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 0px;
                display: none !important;
            }

            #FORM_ITEM590 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 48.8577px;
                display: none !important;
            }

            #FORM_ITEM591 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 97.7154px;
                display: none !important;
            }

            #FORM_ITEM592 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 146.573px;
                display: none !important;
            }

            #FORM_ITEM593 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 195.431px;
                display: none !important;
            }

            #FORM_ITEM594 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 244.289px;
                display: none !important;
            }

            #FORM_ITEM595 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 293.146px;
                display: none !important;
            }

            #FORM_ITEM596 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 342.004px;
                display: none !important;
            }

            #FORM_ITEM597 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 0px;
                display: none !important;
            }

            #FORM_ITEM598 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 59.1434px;
                display: none !important;
            }

            #FORM_ITEM599 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 118.287px;
                display: none !important;
            }

            #FORM_ITEM600 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 177.43px;
                display: none !important;
            }

            #FORM_ITEM601 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 236.574px;
                display: none !important;
            }

            #FORM_ITEM602 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 295.717px;
                display: none !important;
            }

            #FORM_ITEM603 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 354.861px;
                display: none !important;
            }

            #FORM_ITEM604 {
                width: 25px;
                height: 35px;
                top: 130.413px;
                left: 414.004px;
                display: none !important;
            }

            #BOX606 {
                width: 408.324px;
                height: 104.5px;
                top: 0px;
                left: 0px;
            }

            #BOX606>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                border-radius: 195px;
            }

            #HEADLINE607 {
                width: 407px;
                top: 16.75px;
                left: 19.444px;
            }

            #HEADLINE607>.ladi-headline {
                color: rgb(0, 0, 0);
                font-size: 14px;
                line-height: 1.6;
            }

            #GROUP605 {
                width: 426.444px;
                height: 104.5px;
                top: 944.64px;
                left: 702.278px;
            }

            #BOX610 {
                width: 436.557px;
                height: 160.003px;
                top: 8.43097px;
                left: 0px;
            }

            #BOX610>.ladi-box {
                background-color: rgb(228, 228, 228);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 2px;
                border-radius: 5px;
            }

            #BOX611 {
                width: 433.151px;
                height: 39.2415px;
                top: 86.9312px;
                left: 2px;
            }

            #BOX611>.ladi-box {
                opacity: 0.54;
                background-color: rgb(180, 180, 180);
                border-color: rgb(11, 75, 158);
                border-width: 1px;
                border-radius: 0px;
            }

            #BOX612 {
                width: 436.557px;
                height: 46.4368px;
                top: 0px;
                left: 0px;
            }

            #BOX612>.ladi-box {
                background-color: rgb(255, 1, 1);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 1px;
                border-radius: 5px 5px 0px 0px;
            }

            #LINE613 {
                height: 40px;
                top: 86.9433px;
                left: 153.084px;
            }

            #LINE613>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(164, 164, 164);
                border-bottom: 1px solid rgb(164, 164, 164);
                border-left: 1px solid rgb(164, 164, 164);
            }

            #LINE613>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #HEADLINE614 {
                width: 119px;
                top: 135.268px;
                left: 23.8112px;
            }

            #HEADLINE614>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE615 {
                width: 108px;
                top: 135.268px;
                left: 172.727px;
            }

            #HEADLINE615>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE616 {
                width: 142px;
                top: 133.268px;
                left: 283.746px;
            }

            #HEADLINE616>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE617 {
                width: 119px;
                top: 96.1471px;
                left: 23.8112px;
            }

            #HEADLINE617>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE618 {
                width: 110px;
                top: 96.1471px;
                left: 171.016px;
            }

            #HEADLINE618>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE619 {
                width: 144px;
                top: 94.1471px;
                left: 282.434px;
            }

            #HEADLINE619>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE620 {
                width: 125px;
                top: 54.1187px;
                left: 21.1857px;
            }

            #HEADLINE620>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE621 {
                width: 108px;
                top: 54.1187px;
                left: 174.183px;
            }

            #HEADLINE621>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE622 {
                width: 146px;
                top: 52.1187px;
                left: 281.777px;
            }

            #HEADLINE622>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #LINE623 {
                height: 122px;
                top: 47.4542px;
                left: 153.168px;
            }

            #LINE623>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(205, 205, 205);
                border-bottom: 1px solid rgb(205, 205, 205);
                border-left: 1px solid rgb(205, 205, 205);
            }

            #LINE623>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP609 {
                width: 436.557px;
                height: 169.454px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE624 {
                width: 357px;
                top: 1.25989px;
                left: 40.495px;
            }

            #HEADLINE624>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(255, 255, 255);
                font-size: 27px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP608 {
                width: 436.557px;
                height: 169.454px;
                top: 1068.04px;
                left: 686.722px;
            }

            #PARAGRAPH625 {
                width: 502px;
                top: 801.4px;
                left: 42.751px;
            }

            #PARAGRAPH625>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 14px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #BOX628 {
                width: 436.557px;
                height: 160.003px;
                top: 8.43097px;
                left: 0px;
            }

            #BOX628>.ladi-box {
                background-color: rgb(228, 228, 228);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 2px;
                border-radius: 5px;
            }

            #BOX629 {
                width: 433.151px;
                height: 39.2415px;
                top: 86.9312px;
                left: 2px;
            }

            #BOX629>.ladi-box {
                opacity: 0.54;
                background-color: rgb(180, 180, 180);
                border-color: rgb(11, 75, 158);
                border-width: 1px;
                border-radius: 0px;
            }

            #BOX630 {
                width: 436.557px;
                height: 46.4368px;
                top: 0px;
                left: 0px;
            }

            #BOX630>.ladi-box {
                background-color: rgb(255, 1, 1);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 1px;
                border-radius: 5px 5px 0px 0px;
            }

            #LINE631 {
                height: 40px;
                top: 86.9433px;
                left: 153.084px;
            }

            #LINE631>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(164, 164, 164);
                border-bottom: 1px solid rgb(164, 164, 164);
                border-left: 1px solid rgb(164, 164, 164);
            }

            #LINE631>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #HEADLINE632 {
                width: 119px;
                top: 135.268px;
                left: 23.8112px;
            }

            #HEADLINE632>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE633 {
                width: 108px;
                top: 135.268px;
                left: 172.727px;
            }

            #HEADLINE633>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE634 {
                width: 142px;
                top: 133.268px;
                left: 283.746px;
            }

            #HEADLINE634>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE635 {
                width: 119px;
                top: 96.1471px;
                left: 23.8112px;
            }

            #HEADLINE635>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE636 {
                width: 110px;
                top: 96.1471px;
                left: 171.016px;
            }

            #HEADLINE636>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE637 {
                width: 144px;
                top: 94.1471px;
                left: 282.434px;
            }

            #HEADLINE637>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE638 {
                width: 125px;
                top: 54.1187px;
                left: 21.1857px;
            }

            #HEADLINE638>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE639 {
                width: 108px;
                top: 54.1187px;
                left: 174.183px;
            }

            #HEADLINE639>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE640 {
                width: 146px;
                top: 52.1187px;
                left: 281.777px;
            }

            #HEADLINE640>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 23px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #LINE641 {
                height: 122px;
                top: 47.4542px;
                left: 153.168px;
            }

            #LINE641>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(205, 205, 205);
                border-bottom: 1px solid rgb(205, 205, 205);
                border-left: 1px solid rgb(205, 205, 205);
            }

            #LINE641>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP627 {
                width: 436.557px;
                height: 169.454px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE642 {
                width: 357px;
                top: 1.25989px;
                left: 40.495px;
            }

            #HEADLINE642>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(255, 255, 255);
                font-size: 27px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP626 {
                width: 436.557px;
                height: 169.454px;
                top: 382.4px;
                left: 77.5061px;
            }

            #BOX644 {
                width: 408.324px;
                height: 104.5px;
                top: 0px;
                left: 0px;
            }

            #BOX644>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                border-radius: 195px;
            }

            #HEADLINE645 {
                width: 407px;
                top: 16.75px;
                left: 19.444px;
            }

            #HEADLINE645>.ladi-headline {
                color: rgb(0, 0, 0);
                font-size: 14px;
                line-height: 1.6;
            }

            #GROUP643 {
                width: 426.444px;
                height: 104.5px;
                top: 795px;
                left: 681.073px;
            }
        }

        @media (max-width: 767px) {
            #SECTION_POPUP {
                height: 0px;
            }

            #SECTION_POPUP .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #SECTION1 {
                height: 2275.7px;
            }

            #SECTION1>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg1-20200415101534_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION1 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #BOX3 {
                width: 156.566px;
                height: 156.564px;
                top: 0px;
                left: 10.7122px;
            }

            #BOX3>.ladi-box {
                background: rgba(1, 126, 150, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(1, 126, 150, 1.0), rgba(2, 2, 20, 0.4));
                background: linear-gradient(180deg, rgba(1, 126, 150, 1.0), rgba(2, 2, 20, 0.4));
                border-radius: 580px;
            }

            #IMAGE4 {
                width: 177.99px;
                height: 113.231px;
                top: 24.1175px;
                left: 0px;
            }

            #IMAGE4>.ladi-image>.ladi-image-background {
                width: 177.99px;
                height: 113.231px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum_logo-02-02-20200722033912_1.png");
            }

            #PARAGRAPH6 {
                width: 161px;
                top: 162.34px;
                left: 8.63193px;
                display: none !important;
            }

            #PARAGRAPH6>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 19px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP7 {
                width: 177.99px;
                height: 173.695px;
                top: 21.272px;
                left: 121.005px;
            }

            #IMAGE8 {
                width: 531.454px;
                height: 631.46px;
                top: -74.188px;
                left: -77px;
            }

            #IMAGE8>.ladi-image>.ladi-image-background {
                width: 531.454px;
                height: 631.46px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348_3.png");
            }

            #IMAGE8.ladi-animation>.ladi-image {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 3s;
                -webkit-animation-duration: 3s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #SECTION10 {
                height: 1558.7px;
                background-position-x: 85%;
            }

            #SECTION10.ladi-animation {
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #SECTION10>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg2-20200415101533_1.jpg");
                background-position: right top;
                background-repeat: repeat;
            }

            #SECTION10 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #IMAGE30 {
                width: 418px;
                height: 418px;
                top: 261px;
                left: 748px;
                display: none !important;
            }

            #IMAGE30>.ladi-image>.ladi-image-background {
                width: 418px;
                height: 418px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-mobile-20200415101624_1.png");
            }

            #HEADLINE31 {
                width: 406px;
                top: 17px;
                left: 7.0005px;
            }

            #HEADLINE31>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 25px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.4;
            }

            #IMAGE32 {
                width: 400px;
                height: 400px;
                top: 357px;
                left: -419px;
                display: none !important;
            }

            #IMAGE32>.ladi-image>.ladi-image-background {
                width: 400px;
                height: 400px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum-a-2-20200722034200_2.png");
            }

            #IMAGE32.ladi-animation>.ladi-image {
                animation-name: flipInX;
                -webkit-animation-name: flipInX;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 2s;
                -webkit-animation-duration: 2s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE33 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE33>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE34 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE34>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE35 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE35>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #IMAGE36 {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 15px;
            }

            #IMAGE36>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 199.048px;
                top: 0px;
                left: 0px;
                background-image: url("../images/shape-s2-20200415101624.png");
            }

            #PARAGRAPH38 {
                width: 230px;
                top: 211.524px;
                left: 0px;
            }

            #PARAGRAPH38>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH39 {
                width: 230px;
                top: 212.524px;
                left: 0px;
            }

            #PARAGRAPH39>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH40 {
                width: 230px;
                top: 211.524px;
                left: 0px;
            }

            #PARAGRAPH40>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH41 {
                width: 230px;
                top: 212.524px;
                left: 0px;
            }

            #PARAGRAPH41>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH42 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH42>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP43 {
                width: 230px;
                height: 261.524px;
                top: 224.476px;
                left: 95.0005px;
            }

            #PARAGRAPH48 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH48>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP49 {
                width: 230px;
                height: 262.524px;
                top: 506.667px;
                left: 94px;
            }

            #PARAGRAPH50 {
                width: 163px;
                top: 74.524px;
                left: 33.5px;
            }

            #PARAGRAPH50>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #PARAGRAPH51 {
                width: 151px;
                top: 74.524px;
                left: 39.5px;
            }

            #PARAGRAPH51>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 50px;
                font-weight: bold;
                text-align: center;
                line-height: 1;
            }

            #GROUP52 {
                width: 230px;
                height: 262.524px;
                top: 1139.05px;
                left: 94px;
            }

            #GROUP53 {
                width: 230px;
                height: 261.524px;
                top: 833.859px;
                left: 95px;
            }

            #SECTION54 {
                height: 2065.41px;
            }

            #SECTION54>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg3-20200415101532_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION54 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #SECTION55 {
                height: 815.724px;
                display: none !important;
            }

            #SECTION55>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg4-20200415101535_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION55 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE56 {
                width: 406px;
                top: 15px;
                left: 7px;
            }

            #HEADLINE56>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 22px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH57 {
                width: 401px;
                top: 110px;
                left: 9.5px;
            }

            #PARAGRAPH57>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #BOX59 {
                width: 267.203px;
                height: 267.203px;
                top: 44.7935px;
                left: 10.1773px;
            }

            #BOX59>.ladi-box {
                background: rgba(16, 72, 145, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(16, 72, 145, 1.0), rgba(18, 11, 92, 1.0));
                background: linear-gradient(180deg, rgba(16, 72, 145, 1.0), rgba(18, 11, 92, 1.0));
                border-radius: 580px;
            }

            #BOX59.ladi-animation>.ladi-box {
                animation-name: rotateIn;
                -webkit-animation-name: rotateIn;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE61 {
                width: 287.558px;
                height: 311.997px;
                top: 0px;
                left: 0px;
            }

            #IMAGE61>.ladi-image>.ladi-image-background {
                width: 287.558px;
                height: 311.997px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pc-penirum-eng-20200722035000_1.png");
            }

            #GROUP62 {
                width: 287.558px;
                height: 311.997px;
                top: 210.503px;
                left: 66.221px;
            }

            #GROUP62.ladi-animation>.ladi-group {
                animation-name: bounceIn;
                -webkit-animation-name: bounceIn;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 3s;
                -webkit-animation-duration: 3s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #BOX63 {
                width: 125.492px;
                height: 125.492px;
                top: 0px;
                left: 3.3945px;
            }

            #BOX63>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE64 {
                width: 130.769px;
                height: 130.492px;
                top: 0px;
                left: 0px;
            }

            #IMAGE64>.ladi-image>.ladi-image-background {
                width: 130.769px;
                height: 130.492px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-11-20200722065141.png");
            }

            #GROUP65 {
                width: 130.769px;
                height: 130.492px;
                top: 0px;
                left: 126.633px;
            }

            #HEADLINE66 {
                width: 150px;
                top: 136.746px;
                left: 117.017px;
            }

            #HEADLINE66>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH67 {
                width: 406px;
                top: 168.746px;
                left: 0px;
            }

            #PARAGRAPH67>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: justify;
                line-height: 1.4;
            }

            #GROUP68 {
                width: 406px;
                height: 256.746px;
                top: 864.498px;
                left: 6.9995px;
            }

            #BOX71 {
                width: 135px;
                height: 135px;
                top: 3.5px;
                left: 1px;
            }

            #BOX71>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE72 {
                width: 138.5px;
                height: 138.5px;
                top: 0px;
                left: 0px;
            }

            #IMAGE72>.ladi-image>.ladi-image-background {
                width: 138.5px;
                height: 138.5px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-08-20200722065219.png");
            }

            #GROUP70 {
                width: 138.5px;
                height: 138.5px;
                top: 0px;
                left: 122.5px;
            }

            #HEADLINE73 {
                width: 223px;
                top: 147px;
                left: 80.25px;
            }

            #HEADLINE73>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH74 {
                width: 402px;
                top: 178px;
                left: 0px;
            }

            #PARAGRAPH74>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.4;
            }

            #GROUP69 {
                width: 402px;
                height: 222px;
                top: 1481.99px;
                left: 8px;
            }

            #BOX77 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
            }

            #BOX77>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #HEADLINE79 {
                width: 213px;
                top: 145.878px;
                left: 94px;
            }

            #HEADLINE79>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH80 {
                width: 402px;
                top: 181.75px;
                left: 0px;
            }

            #PARAGRAPH80>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: justify;
                line-height: 1.4;
            }

            #IMAGE81 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
            }

            #IMAGE81>.ladi-image>.ladi-image-background {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-10-20200722065247_1.png");
            }

            #GROUP82 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 125.5px;
            }

            #GROUP83 {
                width: 402px;
                height: 247.75px;
                top: 1177.74px;
                left: 9.5px;
            }

            #HEADLINE85 {
                width: 213px;
                top: 149.75px;
                left: 88px;
            }

            #HEADLINE85>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH86 {
                width: 402px;
                top: 177.75px;
                left: 0px;
            }

            #PARAGRAPH86>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: justify;
                line-height: 1.4;
            }

            #BOX88 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
            }

            #BOX88>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #IMAGE89 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
            }

            #IMAGE89>.ladi-image>.ladi-image-background {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-09-20200722065314_1.png");
            }

            #GROUP87 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 126.5px;
            }

            #GROUP84 {
                width: 402px;
                height: 243.75px;
                top: 1760.49px;
                left: 9px;
            }

            #BOX93 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 0px;
            }

            #BOX93>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 150px;
            }

            #HEADLINE95 {
                width: 162px;
                top: 143.5px;
                left: 107.249px;
            }

            #HEADLINE95>.ladi-headline {
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH96 {
                width: 407px;
                top: 176.5px;
                left: 0px;
            }

            #PARAGRAPH96>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: justify;
                line-height: 1.4;
            }

            #IMAGE97 {
                width: 135px;
                height: 134.146px;
                top: 0px;
                left: 0px;
            }

            #IMAGE97>.ladi-image>.ladi-image-background {
                width: 135px;
                height: 134.146px;
                top: 0px;
                left: 0px;
                background-image: url("../images/nguyen-lieu-07-20200722065346.png");
            }

            #GROUP98 {
                width: 135px;
                height: 135px;
                top: 0px;
                left: 120.749px;
            }

            #GROUP99 {
                width: 407px;
                height: 264.5px;
                top: 545.5px;
                left: 6.5px;
            }

            #SECTION100 {
                height: 1883.33px;
                display: none !important;
            }

            #SECTION100>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg6-8-20200415101553_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION100 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE101 {
                width: 406px;
                top: 10px;
                left: 7px;
            }

            #HEADLINE101>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 26px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #PARAGRAPH102 {
                width: 401px;
                top: 82px;
                left: 9.5px;
            }

            #PARAGRAPH102>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #IMAGE103 {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
            }

            #IMAGE103>.ladi-image>.ladi-image-background {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636_1.png");
            }

            #BOX104 {
                width: 38.6217px;
                height: 38.6217px;
                top: 15.6873px;
                left: 97.9647px;
            }

            #BOX104>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #GROUP105 {
                width: 234.551px;
                height: 54.309px;
                top: 114px;
                left: 90.2245px;
            }

            #VIDEO106 {
                width: 400px;
                height: 225px;
                top: 197.309px;
                left: 10px;
            }

            #VIDEO106>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video1-20200415101552_1.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #SHAPE106 {
                width: 60px;
                height: 60px;
                top: 82.4999px;
                left: 170px;
            }

            #SHAPE106 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #SHAPE107 {
                width: 60px;
                height: 60px;
                top: 82.5001px;
                left: 170px;
            }

            #SHAPE107 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #VIDEO107 {
                width: 400px;
                height: 225px;
                top: 474.309px;
                left: 10px;
            }

            #VIDEO107>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/hqdefault.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #PARAGRAPH109 {
                width: 401px;
                top: 425.862px;
                left: 7px;
            }

            #PARAGRAPH109>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #PARAGRAPH110 {
                width: 401px;
                top: 710.309px;
                left: 10px;
            }

            #PARAGRAPH110>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON112 {
                width: 270px;
                height: 50px;
                top: 765.724px;
                left: 75px;
                z-index: 10;
            }

            #BUTTON112>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON112>.ladi-button {
                border-radius: 35px;
            }

            #BUTTON112.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #BUTTON_TEXT112 {
                width: 270px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT112>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #SECTION113 {
                height: 1260px;
            }

            #SECTION113>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552_3.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION113 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #HEADLINE114 {
                width: 411px;
                top: 24px;
                left: 4px;
            }

            #HEADLINE114>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 24px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
                text-shadow: rgb(0, 0, 0) 2px 3px 3px;
            }

            #BOX115 {
                width: 353.187px;
                height: 353.187px;
                top: 154.813px;
                left: 59.5909px;
            }

            #BOX115>.ladi-box {
                background-color: rgba(10, 79, 93, 0.4);
                border-radius: 502px;
            }

            #IMAGE118 {
                width: 539.006px;
                height: 505.057px;
                top: 0px;
                left: 0px;
            }

            #IMAGE118>.ladi-image>.ladi-image-background {
                width: 539.006px;
                height: 505.057px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348_4.png");
            }

            #GROUP119 {
                width: 539.006px;
                height: 508px;
                top: 642px;
                left: -29px;
            }

            #GROUP119.ladi-animation>.ladi-group {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 3s;
                -webkit-animation-duration: 3s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #PARAGRAPH120 {
                width: 337px;
                top: 0px;
                left: 31.777px;
            }

            #PARAGRAPH120>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH121 {
                width: 337px;
                top: 65px;
                left: 31.777px;
            }

            #PARAGRAPH121>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH122 {
                width: 337px;
                top: 130px;
                left: 31.777px;
            }

            #PARAGRAPH122>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH123 {
                width: 337px;
                top: 195px;
                left: 31.777px;
            }

            #PARAGRAPH123>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH124 {
                width: 337px;
                top: 260px;
                left: 31.777px;
            }

            #PARAGRAPH124>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: left;
                line-height: 1.2;
            }

            #BOX125 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #BOX125>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX126 {
                width: 15px;
                height: 15px;
                top: 3px;
                left: 3px;
            }

            #BOX126>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP127 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #LINE128 {
                height: 64px;
                top: 14px;
                left: 2px;
            }

            #LINE128>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE128>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP129 {
                width: 21px;
                height: 78px;
                top: 4px;
                left: 0px;
            }

            #LINE131 {
                height: 64px;
                top: 14px;
                left: 2px;
            }

            #LINE131>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE131>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX133 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #BOX133>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX134 {
                width: 15px;
                height: 15px;
                top: 3px;
                left: 3px;
            }

            #BOX134>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP132 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #GROUP130 {
                width: 21px;
                height: 78px;
                top: 65px;
                left: 0px;
            }

            #LINE136 {
                height: 64px;
                top: 14px;
                left: 2px;
            }

            #LINE136>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE136>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX138 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #BOX138>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX139 {
                width: 15px;
                height: 15px;
                top: 3px;
                left: 3px;
            }

            #BOX139>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP137 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #GROUP135 {
                width: 21px;
                height: 78px;
                top: 130px;
                left: 0px;
            }

            #LINE141 {
                height: 64px;
                top: 14px;
                left: 2px;
            }

            #LINE141>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(224, 40, 19);
                border-bottom: 1px solid rgb(224, 40, 19);
                border-left: 1px solid rgb(224, 40, 19);
            }

            #LINE141>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #BOX143 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #BOX143>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX144 {
                width: 15px;
                height: 15px;
                top: 3px;
                left: 3px;
            }

            #BOX144>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP142 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #GROUP140 {
                width: 21px;
                height: 78px;
                top: 195px;
                left: 0px;
            }

            #BOX148 {
                width: 21px;
                height: 21px;
                top: 0px;
                left: 0px;
            }

            #BOX148>.ladi-box {
                background-color: rgba(224, 40, 19, 0.1);
                border-style: solid;
                border-color: rgb(224, 40, 19);
                border-width: 1px;
                border-radius: 502px;
            }

            #BOX149 {
                width: 15px;
                height: 15px;
                top: 3px;
                left: 3px;
            }

            #BOX149>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 502px;
            }

            #GROUP147 {
                width: 21px;
                height: 21px;
                top: 260px;
                left: 0px;
            }

            #GROUP152 {
                width: 368.777px;
                height: 300px;
                top: 416px;
                left: 25.6115px;
            }

            #HEADLINE153 {
                width: 410px;
                top: 1005px;
                left: -553px;
                display: none !important;
            }

            #HEADLINE153>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 26px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #BOX155 {
                width: 38.6217px;
                height: 38.6217px;
                top: 15.6873px;
                left: 97.9647px;
            }

            #BOX155>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #IMAGE156 {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
            }

            #IMAGE156>.ladi-image>.ladi-image-background {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636_1.png");
            }

            #GROUP154 {
                width: 234.551px;
                height: 54.309px;
                top: 610px;
                left: -450.275px;
                display: none !important;
            }

            #SECTION157 {
                height: 1897.58px;
            }

            #SECTION157>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg9-20200415101553_1.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION157 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #VIDEO158 {
                width: 400px;
                height: 225px;
                top: 18px;
                left: 10px;
            }

            #VIDEO158>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video3-20200415101613_1.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #SHAPE158 {
                width: 60px;
                height: 60px;
                top: 82.5001px;
                left: 170px;
            }

            #SHAPE158 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #IMAGE159 {
                width: 108.445px;
                height: 171.063px;
                top: 52.83px;
                left: 426.904px;
            }

            #IMAGE159>.ladi-image>.ladi-image-background {
                width: 108.445px;
                height: 171.063px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model1-s6-20200415101613_1.png");
            }

            #PARAGRAPH160 {
                width: 332px;
                top: 0px;
                left: 70.9428px;
            }

            #PARAGRAPH160>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.4;
            }

            #BOX161 {
                width: 57.4569px;
                height: 10px;
                top: 7.5px;
                left: 0px;
            }

            #BOX161>.ladi-box {
                background: rgba(253, 251, 251, 0.0);
                background: -webkit-linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                background: linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                border-radius: 20px;
            }

            #GROUP162 {
                width: 402.943px;
                height: 25px;
                top: 247px;
                left: 10px;
            }

            #SHAPE163 {
                width: 60px;
                height: 60px;
                top: 82.5001px;
                left: 170px;
            }

            #SHAPE163 svg:last-child {
                fill: rgba(0, 0, 0, 0.5);
            }

            #VIDEO163 {
                width: 400px;
                height: 225px;
                top: 286px;
                left: 10px;
            }

            #VIDEO163>.ladi-video>.ladi-video-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg-video4-20200415101613_1.jpg");
                background-position: center center;
                background-repeat: no-repeat;
            }

            #IMAGE165 {
                width: 71.921px;
                height: 173.696px;
                top: 295.71px;
                left: 457.467px;
            }

            #IMAGE165>.ladi-image>.ladi-image-background {
                width: 71.921px;
                height: 173.696px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model2-s6-20200415101613_1.png");
            }

            #PARAGRAPH167 {
                width: 331px;
                top: 0px;
                left: 68.0906px;
            }

            #PARAGRAPH167>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #BOX168 {
                width: 55.1469px;
                height: 10px;
                top: 7.5px;
                left: 0px;
            }

            #BOX168>.ladi-box {
                background: rgba(253, 251, 251, 0.0);
                background: -webkit-linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                background: linear-gradient(90deg, rgba(253, 251, 251, 0.0), #e02813);
                border-radius: 20px;
            }

            #GROUP166 {
                width: 399.091px;
                height: 50px;
                top: 517px;
                left: 10px;
            }

            #IMAGE169 {
                width: 400px;
                height: 424.615px;
                top: 588px;
                left: 9.5453px;
            }

            #IMAGE169>.ladi-image>.ladi-image-background {
                width: 400px;
                height: 424.615px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-s7-20200415101625_1.png");
            }

            #HEADLINE170 {
                width: 398px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE170>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 25px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #PARAGRAPH171 {
                width: 408px;
                top: 69px;
                left: 1px;
            }

            #PARAGRAPH171>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: center;
                line-height: 1.2;
            }

            #BOX172 {
                width: 408px;
                height: 230px;
                top: 0px;
                left: 0px;
            }

            #BOX172>.ladi-box {
                box-shadow: 0px 0px 15px 0px #ffffffbd;
                -webkit-box-shadow: 0px 0px 15px 0px #ffffffbd;
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH173 {
                width: 172px;
                top: 28.85px;
                left: 12.8px;
            }

            #PARAGRAPH173>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-align: left;
                line-height: 1.2;
            }

            #LIST_PARAGRAPH175 {
                width: 382px;
                top: 74px;
                left: 12.8px;
            }

            #LIST_PARAGRAPH175>.ladi-list-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(96, 96, 96);
                font-size: 16px;
                line-height: 1.6;
            }

            #LIST_PARAGRAPH175 ul li {
                padding-left: 20px;
            }

            #LIST_PARAGRAPH175 ul li:before {
                content: counter(linum, disc);
                font-size: 40px;
                top: -20px;
            }

            #LINE176 {
                width: 70px;
                top: 189.5px;
                left: 12.8px;
            }

            #LINE176>.ladi-line>.ladi-line-container {
                border-top: 4px solid rgba(224, 40, 19, 0.5);
                border-right: 4px solid rgba(224, 40, 19, 0.5);
                border-bottom: 4px solid rgba(224, 40, 19, 0.5);
                border-left: 0px !important;
            }

            #LINE176>.ladi-line {
                width: 100%;
                padding: 8px 0px;
            }

            #GROUP177 {
                width: 408px;
                height: 230px;
                top: 135.15px;
                left: 1px;
            }

            #GROUP178 {
                width: 409px;
                height: 365.15px;
                top: 1022.62px;
                left: 5px;
            }

            #BOX179 {
                width: 1140px;
                height: 450px;
                top: 0px;
                left: 0px;
            }

            #BOX179>.ladi-box {
                background: #800309;
                background: -webkit-linear-gradient(180deg, #800309, #2e0108);
                background: linear-gradient(180deg, #800309, #2e0108);
                border-style: solid;
                border-color: rgb(169, 3, 5);
                border-width: 2px;
                border-radius: 10px;
            }

            #IMAGE180 {
                width: 445.138px;
                height: 404.938px;
                top: 22.53px;
                left: 29px;
            }

            #IMAGE180>.ladi-image>.ladi-image-background {
                width: 445.138px;
                height: 404.938px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model-s8-20200415101613.png");
            }

            #HEADLINE189 {
                width: 604px;
                top: 53.53px;
                left: 507px;
            }

            #HEADLINE189>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 32px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #IMAGE190 {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
            }

            #IMAGE190>.ladi-image>.ladi-image-background {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
                background-image: url("../images/clock-20200415101611.png");
            }

            #PARAGRAPH191 {
                width: 389px;
                top: 15px;
                left: 61px;
            }

            #PARAGRAPH191>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #HEADLINE193 {
                width: 123px;
                top: 219px;
                left: 533.638px;
            }

            #HEADLINE193>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH194 {
                width: 469px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH194>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX195 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX195>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP196 {
                width: 504.362px;
                height: 28px;
                top: 0px;
                left: 0px;
            }

            #PARAGRAPH198 {
                width: 559px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH198>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.4;
            }

            #BOX199 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX199>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP197 {
                width: 594.362px;
                height: 56px;
                top: 36px;
                left: 0px;
            }

            #PARAGRAPH201 {
                width: 588px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH201>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                line-height: 1.6;
            }

            #BOX202 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX202>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP200 {
                width: 623.362px;
                height: 28px;
                top: 92px;
                left: 0px;
            }

            #GROUP203 {
                width: 623.362px;
                height: 120px;
                top: 263px;
                left: 507px;
            }

            #GROUP204 {
                width: 450px;
                height: 49px;
                top: 144.5px;
                left: 507px;
            }

            #SHAPE208 {
                width: 23.25px;
                height: 22.818px;
                top: 113.355px;
                left: 396.75px;
            }

            #SHAPE208 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #SHAPE209 {
                width: 23.25px;
                height: 22.818px;
                top: 113.355px;
                left: 0px;
            }

            #SHAPE209>.ladi-shape {
                transform: rotate(-270deg);
                -webkit-transform: rotate(-270deg);
            }

            #SHAPE209 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #BOX210 {
                width: 404.5px;
                height: 770px;
                top: 0px;
                left: 8.75px;
            }

            #BOX210>.ladi-box {
                background: #e02813c7;
                background: -webkit-linear-gradient(180deg, #e02813c7, #3c0f27);
                background: linear-gradient(180deg, #e02813c7, #3c0f27);
                border-style: solid;
                border-color: rgb(198, 4, 4);
                border-width: 3px;
                border-radius: 25px;
            }

            #BOX211 {
                width: 420px;
                height: 92.7445px;
                top: 20.6099px;
                left: 0px;
            }

            #BOX211>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(rgb(69, 2, 8), rgb(224, 40, 19), rgb(73, 3, 3));
            }

            #GROUP207 {
                width: 420px;
                height: 770px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE212 {
                width: 355px;
                top: 27.6094px;
                left: 33.875px;
            }

            #HEADLINE212>.ladi-headline {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 38px;
                font-weight: bold;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.4;
            }

            #PARAGRAPH213 {
                width: 393px;
                top: 78.9531px;
                left: 21.9375px;
            }

            #PARAGRAPH213>.ladi-paragraph {
                font-family: "Roboto-Regular.ttf";
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP206 {
                width: 420px;
                height: 770px;
                top: 25.886px;
                left: -2px;
            }

            #BUTTON_TEXT219 {
                width: 286px;
                top: 12.3962px;
                left: 0px;
            }

            #BUTTON_TEXT219>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON219 {
                width: 286px;
                height: 68.8679px;
                top: 141.736px;
                left: 32px;
            }

            #BUTTON219>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON219>.ladi-button {
                box-shadow: 0px 15px 6px -9px #000;
                -webkit-box-shadow: 0px 15px 6px -9px #000;
                border-radius: 30px;
            }

            #BUTTON219.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #FORM_ITEM221 {
                width: 350px;
                height: 55.0943px;
                top: 0px;
                left: 0px;
            }

            #FORM_ITEM222 {
                width: 350px;
                height: 55.0943px;
                top: 68.8679px;
                left: 0px;
            }

            #FORM218 {
                width: 350px;
                height: 210.604px;
                top: 553.094px;
                left: 33px;
                z-index: 20;
            }

            #FORM218>.ladi-form {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 15px;
                text-align: center;
                line-height: 1.6;
            }

            #FORM218 .ladi-form-item .ladi-form-control::placeholder,
            #FORM218 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"] {
                color: rgba(255, 255, 255, 1);
            }

            #FORM218 .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2232%22%20height%3D%2224%22%20viewBox%3D%220%200%2032%2024%22%3E%3Cpolygon%20points%3D%220%2C0%2032%2C0%2016%2C24%22%20style%3D%22fill%3A%20rgba(255%2C%20255%2C%20255%2C%201)%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
            }

            #FORM218 .ladi-form-item .ladi-form-control-select {
                text-align-last: center;
            }

            #FORM218 .ladi-form-item-container,
            #FORM218 .ladi-form-label-container .ladi-form-label-item {
                border-style: solid;
                border-color: rgb(238, 238, 238);
                border-width: 1px;
            }

            #FORM218 .ladi-form-item-container .ladi-form-quantity button {
                background-color: rgb(238, 238, 238);
            }

            #IMAGE227 {
                width: 177.298px;
                height: 112.887px;
                top: 45.955px;
                left: 2.35121px;
            }

            #IMAGE227>.ladi-image>.ladi-image-background {
                width: 177.298px;
                height: 112.887px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum_logo-02-02-20200722033912_1.png");
            }

            #BOX226 {
                width: 182px;
                height: 182px;
                top: 0px;
                left: 0px;
            }

            #BOX226>.ladi-box {
                background: rgba(11, 46, 92, 1.0);
                background: -webkit-linear-gradient(180deg, rgba(11, 46, 92, 1.0), rgba(19, 155, 224, 0.2));
                background: linear-gradient(180deg, rgba(11, 46, 92, 1.0), rgba(19, 155, 224, 0.2));
                border-radius: 580px;
            }

            #BOX230 {
                width: 365px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX230>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE244 {
                width: 331px;
                top: 17px;
                left: 21.8812px;
            }

            #HEADLINE244>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH245 {
                width: 385px;
                top: 1819.67px;
                left: 17.5px;
            }

            #PARAGRAPH245>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 14px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #IMAGE246 {
                width: 613.69px;
                height: 546.853px;
                top: 1164.05px;
                left: -57px;
            }

            #IMAGE246>.ladi-image>.ladi-image-background {
                width: 613.69px;
                height: 546.853px;
                top: 0px;
                left: 0px;
                background-image: url("../images/sp-penirum-01-20200722032348_5.png");
            }

            #IMAGE246.ladi-animation>.ladi-image {
                animation-name: flash;
                -webkit-animation-name: flash;
                animation-delay: 1s;
                -webkit-animation-delay: 1s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: 1;
                -webkit-animation-iteration-count: 1;
            }

            #IMAGE248 {
                width: 420px;
                height: 420px;
                top: 0px;
                left: -700px;
                display: none !important;
            }

            #IMAGE248>.ladi-image>.ladi-image-background {
                width: 420px;
                height: 420px;
                top: 0px;
                left: 0px;
                background-image: url("../images/pro-mobile-20200415101624_1.png");
            }

            #GROUP251 {
                width: 1140px;
                height: 450px;
                top: 1397.77px;
                left: -360px;
            }

            #BOX287 {
                width: 38.6217px;
                height: 38.6217px;
                top: 15.6873px;
                left: 97.9647px;
            }

            #BOX287>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #IMAGE288 {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
            }

            #IMAGE288>.ladi-image>.ladi-image-background {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636_1.png");
            }

            #GROUP286 {
                width: 234.551px;
                height: 54.309px;
                top: 1485.77px;
                left: -628.275px;
                display: none !important;
            }

            #SECTION252 {
                height: 1540.08px;
            }

            #SECTION252>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552_4.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION252 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #BOX292 {
                width: 409px;
                height: 386px;
                top: 1099.77px;
                left: 5.5px;
            }

            #BOX292>.ladi-box {
                background: #800309;
                background: -webkit-linear-gradient(180deg, #800309, #2e0108);
                background: linear-gradient(180deg, #800309, #2e0108);
                border-style: solid;
                border-color: rgb(169, 3, 5);
                border-width: 2px;
                border-radius: 10px;
            }

            #IMAGE293 {
                width: 445.138px;
                height: 404.938px;
                top: 1130.3px;
                left: -842px;
                display: none !important;
            }

            #IMAGE293>.ladi-image>.ladi-image-background {
                width: 445.138px;
                height: 404.938px;
                top: 0px;
                left: 0px;
                background-image: url("../images/model-s8-20200415101613.png");
            }

            #HEADLINE294 {
                width: 374px;
                top: 1115.3px;
                left: 24.181px;
            }

            #HEADLINE294>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 25px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
            }

            #IMAGE296 {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
            }

            #IMAGE296>.ladi-image>.ladi-image-background {
                width: 49px;
                height: 49px;
                top: 0px;
                left: 0px;
                background-image: url("../images/clock-20200415101611.png");
            }

            #PARAGRAPH297 {
                width: 323px;
                top: 11.5px;
                left: 67px;
            }

            #PARAGRAPH297>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 18px;
                text-align: left;
                line-height: 1.2;
            }

            #GROUP295 {
                width: 390px;
                height: 49px;
                top: 1214.27px;
                left: 21.362px;
            }

            #HEADLINE298 {
                width: 123px;
                top: 1276.77px;
                left: 173.638px;
            }

            #HEADLINE298>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: left;
                line-height: 1.2;
            }

            #PARAGRAPH301 {
                width: 343px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH301>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 17px;
                line-height: 1.6;
            }

            #BOX302 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX302>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP300 {
                width: 378.362px;
                height: 27px;
                top: 0px;
                left: 0px;
            }

            #PARAGRAPH304 {
                width: 343px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH304>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                line-height: 1.4;
            }

            #BOX305 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX305>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP303 {
                width: 378.362px;
                height: 46px;
                top: 36px;
                left: 0px;
            }

            #PARAGRAPH307 {
                width: 337px;
                top: 0px;
                left: 35.362px;
            }

            #PARAGRAPH307>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                line-height: 1.6;
            }

            #BOX308 {
                width: 8px;
                height: 8px;
                top: 11px;
                left: 0px;
            }

            #BOX308>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 200px;
            }

            #GROUP306 {
                width: 372.362px;
                height: 54px;
                top: 92px;
                left: 0px;
            }

            #GROUP299 {
                width: 378.362px;
                height: 146px;
                top: 1310.77px;
                left: 22px;
            }

            #HEADLINE310 {
                width: 398px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE310>.ladi-headline {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 22px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH311 {
                width: 408px;
                top: 82px;
                left: 1px;
            }

            #PARAGRAPH311>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 17px;
                text-align: center;
                line-height: 1.2;
            }

            #BOX313 {
                width: 408px;
                height: 230px;
                top: 0px;
                left: 0px;
            }

            #BOX313>.ladi-box {
                box-shadow: 0px 0px 15px 0px #ffffffbd;
                -webkit-box-shadow: 0px 0px 15px 0px #ffffffbd;
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH314 {
                width: 248px;
                top: 28.85px;
                left: 12.8px;
            }

            #PARAGRAPH314>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(224, 40, 19);
                font-size: 18px;
                font-weight: bold;
                text-align: left;
                line-height: 1.2;
            }

            #LIST_PARAGRAPH315 {
                width: 382px;
                top: 74px;
                left: 12.8px;
            }

            #LIST_PARAGRAPH315>.ladi-list-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(96, 96, 96);
                font-size: 16px;
                line-height: 1.6;
            }

            #LIST_PARAGRAPH315 ul li {
                padding-left: 20px;
            }

            #LIST_PARAGRAPH315 ul li:before {
                content: counter(linum, disc);
                font-size: 40px;
                top: -20px;
            }

            #LINE316 {
                width: 70px;
                top: 205.5px;
                left: 12.8px;
            }

            #LINE316>.ladi-line>.ladi-line-container {
                border-top: 4px solid rgb(23, 100, 200);
                border-right: 4px solid rgb(23, 100, 200);
                border-bottom: 4px solid rgb(23, 100, 200);
                border-left: 0px !important;
            }

            #LINE316>.ladi-line {
                width: 100%;
                padding: 8px 0px;
            }

            #GROUP312 {
                width: 408px;
                height: 230px;
                top: 154.15px;
                left: 1px;
            }

            #GROUP309 {
                width: 409px;
                height: 384.15px;
                top: 669.615px;
                left: 5.5px;
            }

            #IMAGE317 {
                width: 400px;
                height: 635.615px;
                top: 10px;
                left: 10px;
            }

            #IMAGE317>.ladi-image>.ladi-image-background {
                width: 400px;
                height: 635.615px;
                top: 0px;
                left: 0px;
                background-image: url("../images/cong-bo-penirum-a-pic-20200722040222_1.png");
            }

            #IMAGE318 {
                width: 447.433px;
                height: 267px;
                top: 390.76px;
                left: -27.433px;
            }

            #IMAGE318>.ladi-image>.ladi-image-background {
                width: 447.433px;
                height: 267px;
                top: 0px;
                left: 0px;
                background-image: url("../images/penirum-a-2-20200722034200_3.png");
            }

            #BOX384 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX384>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE385 {
                width: 363px;
                top: 6px;
                left: 14.5px;
            }

            #HEADLINE385>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP383 {
                width: 400px;
                height: 90px;
                top: 42px;
                left: 470px;
            }

            #GROUP386 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX388 {
                width: 400px;
                height: 90px;
                top: 0px;
                left: 0px;
            }

            #BOX388>.ladi-box {
                box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                -webkit-box-shadow: 0 0 15px 0 #e02813, inset 0 0 15px 0 #e02813;
                background-color: rgba(253, 251, 251, 0);
                border-radius: 20px;
                filter: saturate(102%);
                border: 2px solid rgb(224, 40, 19);
            }

            #HEADLINE389 {
                width: 363px;
                top: 13px;
                left: 19.5px;
            }

            #HEADLINE389>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 23px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #GROUP387 {
                width: 400px;
                height: 90px;
                top: 2136.31px;
                left: 9.565px;
            }

            #SECTION406 {
                height: 972.53px;
            }

            #SECTION406>.ladi-section-background {
                background-size: cover;
                background-attachment: scroll;
                background-origin: content-box;
                background-image: url("../images/bg5-20200415101552_5.jpg");
                background-position: center top;
                background-repeat: repeat;
            }

            #SECTION406 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #GROUP407 {
                width: 234.551px;
                height: 54.309px;
                top: 796.606px;
                left: -508.275px;
                display: none !important;
            }

            #IMAGE409 {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
            }

            #IMAGE409>.ladi-image>.ladi-image-background {
                width: 234.551px;
                height: 54.3088px;
                top: 0px;
                left: 0px;
                background-image: url("../images/wave-20200415101636_1.png");
            }

            #BOX408 {
                width: 38.6217px;
                height: 38.6217px;
                top: 15.6873px;
                left: 97.9647px;
            }

            #BOX408>.ladi-box {
                background-color: rgb(224, 40, 19);
                border-radius: 500px;
            }

            #HEADLINE450 {
                width: 400px;
                top: 10px;
                left: 10px;
            }

            #HEADLINE450>.ladi-headline {
                color: rgb(225, 149, 73);
                font-size: 38px;
                text-align: center;
                line-height: 1.4;
            }

            #IMAGE451 {
                width: 32px;
                height: 16px;
                top: 132px;
                left: 194px;
            }

            #IMAGE451>.ladi-image>.ladi-image-background {
                width: 32px;
                height: 16px;
                top: 0px;
                left: 0px;
                background-image: url("../images/angle-20200411040722.png");
            }

            #PARAGRAPH454 {
                width: 262px;
                top: 174px;
                left: 143px;
            }

            #PARAGRAPH454>.ladi-paragraph {
                color: rgb(236, 201, 166);
                font-size: 16px;
                font-style: italic;
                text-align: left;
                line-height: 1.6;
            }

            #PARAGRAPH455 {
                width: 190px;
                top: 461.269px;
                left: 155.668px;
            }

            #PARAGRAPH455>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.6;
            }

            #BOX456 {
                width: 215.336px;
                height: 62px;
                top: 455.269px;
                left: 143px;
            }

            #BOX456>.ladi-box {
                background-color: rgb(232, 105, 48);
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #BOX457 {
                width: 909.246px;
                height: 246px;
                top: 132px;
                left: -943.623px;
            }

            #BOX457>.ladi-box {
                background-color: rgba(228, 228, 228, 0);
                border-style: solid;
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #IMAGE458 {
                width: 125px;
                height: 125px;
                top: 174px;
                left: 9px;
            }

            #IMAGE458>.ladi-image>.ladi-image-background {
                width: 125px;
                height: 125px;
                top: 0px;
                left: 0px;
                background-image: url("../images/ava1-20200411040722-20201221100233_1.jpg");
            }

            #BOX459 {
                width: 400px;
                height: 108.222px;
                top: 613px;
                left: 550px;
            }

            #BOX459>.ladi-box {
                background-color: rgba(228, 228, 228, 0);
                border-style: solid;
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #PARAGRAPH460 {
                width: 262px;
                top: 550.915px;
                left: 143px;
            }

            #PARAGRAPH460>.ladi-paragraph {
                color: rgb(236, 201, 166);
                font-size: 16px;
                font-style: italic;
                text-align: justify;
                line-height: 1.6;
            }

            #BOX461 {
                width: 239.295px;
                height: 62px;
                top: 0px;
                left: 0px;
            }

            #BOX461>.ladi-box {
                background-color: rgb(232, 105, 48);
                border-color: rgb(232, 225, 225);
                border-width: 1px;
                border-radius: 10px;
            }

            #PARAGRAPH462 {
                width: 214px;
                top: 6.00046px;
                left: 12.6475px;
            }

            #PARAGRAPH462>.ladi-paragraph {
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: left;
                line-height: 1.6;
            }

            #IMAGE463 {
                width: 125px;
                height: 125px;
                top: 554.222px;
                left: 9px;
            }

            #IMAGE463>.ladi-image>.ladi-image-background {
                width: 125px;
                height: 125px;
                top: 0px;
                left: 0px;
                background-image: url("../images/ava2-20200411040722-20201221100400_1.jpg");
            }

            #HEADLINE466 {
                width: 290px;
                top: 18.5px;
                left: 65px;
            }

            #HEADLINE466>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 13px;
                font-style: italic;
                text-align: center;
                line-height: 1.6;
            }

            #SECTION465 {
                height: 64px;
            }

            #SECTION465>.ladi-section-background {
                background-color: rgb(11, 46, 92);
            }

            #SECTION465 .ladi-section-arrow-down {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2039%22%20style%3D%22filter%3A%20drop-shadow(0%201px%20.15px%20%23B2B2B2)%3B%20transform%3A%20rotate(90deg)%3B%20-webkit-transform%3A%20rotate(90deg)%3B%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M2%2C3l1.5-1.5l18.1%2C18l-18.1%2C18L2%2C36l16.6-16.5L2%2C3z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
            }

            #GROUP491 {
                width: 182px;
                height: 182px;
                top: 1204.94px;
                left: 119px;
            }

            #GROUP492 {
                width: 365px;
                height: 90px;
                top: 1708.89px;
                left: 27.5px;
            }

            #PARAGRAPH495 {
                width: 387px;
                top: 1592.04px;
                left: 15px;
            }

            #PARAGRAPH495>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 14px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #IMAGE500 {
                width: 426px;
                height: 404.732px;
                top: 1730.58px;
                left: -9px;
            }

            #IMAGE500>.ladi-image>.ladi-image-background {
                width: 426px;
                height: 404.732px;
                top: 0px;
                left: 0px;
                background-image: url("../images/couple-thai-20201102073506-20201208094108.png");
            }

            #IMAGE501 {
                width: 200px;
                height: 200px;
                top: 140px;
                left: 109.5px;
            }

            #IMAGE501>.ladi-image>.ladi-image-background {
                width: 200px;
                height: 200px;
                top: 0px;
                left: 0px;
                background-image: url("../images/chuyen-gia-20200807055411.png");
            }

            #PARAGRAPH502 {
                width: 407px;
                top: 360px;
                left: 50.5px;
            }

            #PARAGRAPH502>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-style: italic;
                text-align: justify;
                line-height: 1.4;
            }

            #GROUP504 {
                width: 239.295px;
                height: 62px;
                top: 866.222px;
                left: 143px;
            }

            #BUTTON505 {
                width: 318.05px;
                height: 57px;
                top: 1451.19px;
                left: 49.975px;
            }

            #BUTTON505>.ladi-button>.ladi-button-background {
                background: #ff6a00;
                background: -webkit-linear-gradient(180deg, #ff6a00, #ee0979);
                background: linear-gradient(180deg, #ff6a00, #ee0979);
            }

            #BUTTON505>.ladi-button {
                border-radius: 33px;
            }

            #BUTTON505.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #BUTTON_TEXT505 {
                width: 295px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT505>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON_TEXT506 {
                width: 295px;
                top: 9px;
                left: 0px;
            }

            #BUTTON_TEXT506>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON506 {
                width: 316.05px;
                height: 57px;
                top: 1172px;
                left: 51.975px;
            }

            #BUTTON506>.ladi-button>.ladi-button-background {
                background: #ff6a00;
                background: -webkit-linear-gradient(180deg, #ff6a00, #ee0979);
                background: linear-gradient(180deg, #ff6a00, #ee0979);
            }

            #BUTTON506>.ladi-button {
                border-radius: 33px;
            }

            #BUTTON506.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #NOTIFY508 {
                width: 300px;
                height: 62px;
                top: 10px;
                left: 10px;
                bottom: auto;
                right: auto;
                position: fixed;
                z-index: 90000060;
            }

            #NOTIFY508>.ladi-notify {
                color: rgb(64, 64, 64);
                background-color: rgba(250, 250, 250, 0.9);
            }

            #COUNTDOWN_ITEM516 {
                visibility: hidden;
                pointer-events: none;
            }

            #COUNTDOWN515 {
                width: 258.246px;
                height: 46px;
                top: 199.94px;
                left: 47.877px;
            }

            #COUNTDOWN515>.ladi-countdown {
                color: rgb(0, 0, 0);
                font-size: 40px;
                font-weight: bold;
                text-align: center;
            }

            #COUNTDOWN515>.ladi-countdown>.ladi-element {
                width: calc((100% - 10px * 3) / 4);
                margin-right: 10px;
                height: 100%;
            }

            #COUNTDOWN515>.ladi-countdown .ladi-countdown-background {
                background-color: rgb(255, 255, 255);
            }

            #PARAGRAPH520 {
                width: 401px;
                top: 150.94px;
                left: 10px;
            }

            #PARAGRAPH520>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 20px;
                text-align: center;
                line-height: 1.6;
            }

            #HEADLINE521 {
                width: 400px;
                top: 265.71px;
                left: 10px;
            }

            #HEADLINE521>.ladi-headline {
                font-family: "Roboto-Thin.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(0, 0, 0);
                font-size: 25px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH523 {
                width: 400px;
                top: 303.71px;
                left: 10px;
            }

            #PARAGRAPH523>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 30px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #SHAPE551 {
                width: 23.25px;
                height: 26.5262px;
                top: 131.775px;
                left: 396.75px;
            }

            #SHAPE551 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #SHAPE552 {
                width: 23.25px;
                height: 26.5262px;
                top: 131.775px;
                left: 0px;
            }

            #SHAPE552>.ladi-shape {
                transform: rotate(-270deg);
                -webkit-transform: rotate(-270deg);
            }

            #SHAPE552 svg:last-child {
                fill: rgba(106, 12, 11, 1.0);
            }

            #BOX553 {
                width: 404.5px;
                height: 810.27px;
                top: 0px;
                left: 8.75px;
            }

            #BOX553>.ladi-box {
                background: #e02813c7;
                background: -webkit-linear-gradient(180deg, #e02813c7, #3c0f27);
                background: linear-gradient(180deg, #e02813c7, #3c0f27);
                border-style: solid;
                border-color: rgb(198, 4, 4);
                border-width: 3px;
                border-radius: 25px;
            }

            #BOX554 {
                width: 420px;
                height: 107.817px;
                top: 23.9592px;
                left: 0px;
            }

            #BOX554>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(rgb(69, 2, 8), rgb(224, 40, 19), rgb(73, 3, 3));
            }

            #GROUP550 {
                width: 420px;
                height: 810.27px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE555 {
                width: 355px;
                top: 32.5161px;
                left: 33.875px;
            }

            #HEADLINE555>.ladi-headline {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 38px;
                font-weight: bold;
                text-align: center;
                letter-spacing: 1px;
                line-height: 1.4;
            }

            #PARAGRAPH556 {
                width: 393px;
                top: 92.9848px;
                left: 21.9375px;
            }

            #PARAGRAPH556>.ladi-paragraph {
                font-family: "Roboto-Regular.ttf";
                color: rgb(255, 255, 255);
                font-size: 16px;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP549 {
                width: 420px;
                height: 810.27px;
                top: 761px;
                left: 0px;
            }

            #PARAGRAPH558 {
                width: 401px;
                top: 919px;
                left: 7.5px;
            }

            #PARAGRAPH558>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 20px;
                text-align: center;
                line-height: 1.6;
            }

            #COUNTDOWN_ITEM560 {
                visibility: hidden;
                pointer-events: none;
            }

            #COUNTDOWN559 {
                width: 258.246px;
                height: 46px;
                top: 973px;
                left: 60.604px;
            }

            #COUNTDOWN559>.ladi-countdown {
                color: rgb(0, 0, 0);
                font-size: 40px;
                font-weight: bold;
                text-align: center;
            }

            #COUNTDOWN559>.ladi-countdown>.ladi-element {
                width: calc((100% - 10px * 3) / 4);
                margin-right: 10px;
                height: 100%;
            }

            #COUNTDOWN559>.ladi-countdown .ladi-countdown-background {
                background-color: rgb(255, 255, 255);
            }

            #HEADLINE578 {
                width: 400px;
                top: 1038.04px;
                left: 13px;
            }

            #HEADLINE578>.ladi-headline {
                font-family: "Roboto-Thin.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(0, 0, 0);
                font-size: 25px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #PARAGRAPH580 {
                width: 400px;
                top: 1064.04px;
                left: 8px;
            }

            #PARAGRAPH580>.ladi-paragraph {
                font-family: "Roboto-Medium.ttf";
                color: rgb(255, 255, 255);
                font-size: 34px;
                font-weight: bold;
                text-align: center;
                line-height: 1.4;
            }

            #BUTTON_TEXT583 {
                width: 300px;
                top: 12.3962px;
                left: 0px;
            }

            #BUTTON_TEXT583>.ladi-headline {
                color: rgb(255, 255, 255);
                font-size: 20px;
                font-weight: bold;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.6;
            }

            #BUTTON583 {
                width: 286px;
                height: 68.8679px;
                top: 146.736px;
                left: 30px;
            }

            #BUTTON583>.ladi-button>.ladi-button-background {
                background: #f60;
                background: -webkit-linear-gradient(90deg, #f60, #e21f0e);
                background: linear-gradient(90deg, #f60, #e21f0e);
            }

            #BUTTON583>.ladi-button {
                box-shadow: 0px 15px 6px -9px #000;
                -webkit-box-shadow: 0px 15px 6px -9px #000;
                border-radius: 30px;
            }

            #BUTTON583.ladi-animation>.ladi-button {
                animation-name: pulse;
                -webkit-animation-name: pulse;
                animation-delay: 0s;
                -webkit-animation-delay: 0s;
                animation-duration: 1s;
                -webkit-animation-duration: 1s;
                animation-iteration-count: infinite;
                -webkit-animation-iteration-count: infinite;
            }

            #FORM_ITEM585 {
                width: 350px;
                height: 55.0943px;
                top: 0px;
                left: 0px;
            }

            #FORM_ITEM586 {
                width: 350px;
                height: 55.0943px;
                top: 68.8679px;
                left: 0px;
            }

            #FORM582 {
                width: 350px;
                height: 215.604px;
                top: 1319.09px;
                left: 33px;
                z-index: 20;
            }

            #FORM582>.ladi-form {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 15px;
                text-align: center;
                line-height: 1.6;
            }

            #FORM582 .ladi-form-item .ladi-form-control::placeholder,
            #FORM582 .ladi-form .ladi-form-item.ladi-form-checkbox .ladi-form-checkbox-item span[data-checked="false"] {
                color: rgba(255, 255, 255, 1);
            }

            #FORM582 .ladi-form-item-container .ladi-form-item .ladi-form-control-select {
                background-image: url("data:image/svg+xml;utf8, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%2232%22%20height%3D%2224%22%20viewBox%3D%220%200%2032%2024%22%3E%3Cpolygon%20points%3D%220%2C0%2032%2C0%2016%2C24%22%20style%3D%22fill%3A%20rgba(255%2C%20255%2C%20255%2C%201)%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
            }

            #FORM582 .ladi-form-item .ladi-form-control-select {
                text-align-last: center;
            }

            #FORM582 .ladi-form-item-container,
            #FORM582 .ladi-form-label-container .ladi-form-label-item {
                border-style: solid;
                border-color: rgb(238, 238, 238);
                border-width: 1px;
            }

            #FORM582 .ladi-form-item-container .ladi-form-quantity button {
                background-color: rgb(238, 238, 238);
            }

            #FORM_ITEM589 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 0px;
                display: none !important;
            }

            #FORM_ITEM590 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 46.4286px;
                display: none !important;
            }

            #FORM_ITEM591 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 92.8571px;
                display: none !important;
            }

            #FORM_ITEM592 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 139.286px;
                display: none !important;
            }

            #FORM_ITEM593 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 185.714px;
                display: none !important;
            }

            #FORM_ITEM594 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 232.143px;
                display: none !important;
            }

            #FORM_ITEM595 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 278.571px;
                display: none !important;
            }

            #FORM_ITEM596 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 325px;
                display: none !important;
            }

            #FORM_ITEM597 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 0px;
                display: none !important;
            }

            #FORM_ITEM598 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 46.4286px;
                display: none !important;
            }

            #FORM_ITEM599 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 92.8571px;
                display: none !important;
            }

            #FORM_ITEM600 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 139.286px;
                display: none !important;
            }

            #FORM_ITEM601 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 185.714px;
                display: none !important;
            }

            #FORM_ITEM602 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 232.143px;
                display: none !important;
            }

            #FORM_ITEM603 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 278.571px;
                display: none !important;
            }

            #FORM_ITEM604 {
                width: 25px;
                height: 35px;
                top: 133.962px;
                left: 325px;
                display: none !important;
            }

            #BOX606 {
                width: 690.057px;
                height: 202.5px;
                top: 0px;
                left: 0px;
            }

            #BOX606>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                border-radius: 195px;
            }

            #HEADLINE607 {
                width: 369px;
                top: 23.25px;
                left: 159.529px;
            }

            #HEADLINE607>.ladi-headline {
                color: rgb(0, 0, 0);
                font-size: 18px;
                line-height: 1.6;
            }

            #GROUP605 {
                width: 690.057px;
                height: 202.5px;
                top: 548.04px;
                left: -129px;
            }

            #BOX610 {
                width: 394px;
                height: 156.093px;
                top: 8.22496px;
                left: 0px;
            }

            #BOX610>.ladi-box {
                background-color: rgb(228, 228, 228);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 2px;
                border-radius: 5px;
            }

            #BOX611 {
                width: 389.652px;
                height: 38.2828px;
                top: 84.8071px;
                left: 2.10984px;
            }

            #BOX611>.ladi-box {
                opacity: 0.54;
                background-color: rgb(180, 180, 180);
                border-color: rgb(11, 75, 158);
                border-width: 1px;
                border-radius: 0px;
            }

            #BOX612 {
                width: 394px;
                height: 45.3022px;
                top: 0px;
                left: 0px;
            }

            #BOX612>.ladi-box {
                background-color: rgb(255, 1, 1);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 1px;
                border-radius: 5px 5px 0px 0px;
            }

            #LINE613 {
                height: 39px;
                top: 84.8189px;
                left: 138.161px;
            }

            #LINE613>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(164, 164, 164);
                border-bottom: 1px solid rgb(164, 164, 164);
                border-left: 1px solid rgb(164, 164, 164);
            }

            #LINE613>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #HEADLINE614 {
                width: 107px;
                top: 132.135px;
                left: 19.7907px;
            }

            #HEADLINE614>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE615 {
                width: 97px;
                top: 133.027px;
                left: 155.889px;
            }

            #HEADLINE615>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE616 {
                width: 128px;
                top: 127.556px;
                left: 256.248px;
            }

            #HEADLINE616>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE617 {
                width: 107px;
                top: 92.0135px;
                left: 19.7907px;
            }

            #HEADLINE617>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE618 {
                width: 99px;
                top: 95.5795px;
                left: 154.344px;
            }

            #HEADLINE618>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE619 {
                width: 131px;
                top: 91.0008px;
                left: 255.597px;
            }

            #HEADLINE619>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE620 {
                width: 114px;
                top: 54.5326px;
                left: 16.3239px;
            }

            #HEADLINE620>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE621 {
                width: 97px;
                top: 55.4241px;
                left: 157.204px;
            }

            #HEADLINE621>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE622 {
                width: 132px;
                top: 52.6283px;
                left: 254.204px;
            }

            #HEADLINE622>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #LINE623 {
                height: 118px;
                top: 43.6202px;
                left: 138.237px;
            }

            #LINE623>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(205, 205, 205);
                border-bottom: 1px solid rgb(205, 205, 205);
                border-left: 1px solid rgb(205, 205, 205);
            }

            #LINE623>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP609 {
                width: 394px;
                height: 164.318px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE624 {
                width: 322px;
                top: 3.90359px;
                left: 34.9742px;
            }

            #HEADLINE624>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(255, 255, 255);
                font-size: 26px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP608 {
                width: 394px;
                height: 164.318px;
                top: 1128.04px;
                left: 13px;
            }

            #PARAGRAPH625 {
                width: 387px;
                top: 821.05px;
                left: 16.5px;
            }

            #PARAGRAPH625>.ladi-paragraph {
                font-family: "Roboto", sans-serif;
                color: rgb(255, 255, 255);
                font-size: 14px;
                text-align: center;
                letter-spacing: -1px;
                line-height: 1.6;
            }

            #BOX628 {
                width: 394px;
                height: 156.093px;
                top: 8.22496px;
                left: 0px;
            }

            #BOX628>.ladi-box {
                background-color: rgb(228, 228, 228);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 2px;
                border-radius: 5px;
            }

            #BOX629 {
                width: 389.652px;
                height: 38.2828px;
                top: 84.8071px;
                left: 2.10984px;
            }

            #BOX629>.ladi-box {
                opacity: 0.54;
                background-color: rgb(180, 180, 180);
                border-color: rgb(11, 75, 158);
                border-width: 1px;
                border-radius: 0px;
            }

            #BOX630 {
                width: 394px;
                height: 45.3022px;
                top: 0px;
                left: 0px;
            }

            #BOX630>.ladi-box {
                background-color: rgb(255, 1, 1);
                border-style: solid;
                border-color: rgb(255, 255, 255);
                border-width: 1px;
                border-radius: 5px 5px 0px 0px;
            }

            #LINE631 {
                height: 39px;
                top: 84.8189px;
                left: 138.161px;
            }

            #LINE631>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(164, 164, 164);
                border-bottom: 1px solid rgb(164, 164, 164);
                border-left: 1px solid rgb(164, 164, 164);
            }

            #LINE631>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #HEADLINE632 {
                width: 107px;
                top: 132.135px;
                left: 19.7907px;
            }

            #HEADLINE632>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE633 {
                width: 97px;
                top: 133.027px;
                left: 155.889px;
            }

            #HEADLINE633>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE634 {
                width: 128px;
                top: 127.556px;
                left: 256.248px;
            }

            #HEADLINE634>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE635 {
                width: 107px;
                top: 92.0135px;
                left: 19.7907px;
            }

            #HEADLINE635>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE636 {
                width: 99px;
                top: 95.5795px;
                left: 154.344px;
            }

            #HEADLINE636>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE637 {
                width: 131px;
                top: 91.0008px;
                left: 255.597px;
            }

            #HEADLINE637>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE638 {
                width: 114px;
                top: 54.5326px;
                left: 16.3239px;
            }

            #HEADLINE638>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(199, 31, 22);
                font-size: 20px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE639 {
                width: 97px;
                top: 55.4241px;
                left: 157.204px;
            }

            #HEADLINE639>.ladi-headline {
                font-family: "Barlow-Regular.ttf";
                text-decoration-line: line-through;
                -webkit-text-decoration-line: line-through;
                color: rgb(132, 132, 132);
                font-size: 17px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #HEADLINE640 {
                width: 132px;
                top: 52.6283px;
                left: 254.204px;
            }

            #HEADLINE640>.ladi-headline {
                font-family: "Barlow-Bold.ttf";
                color: rgb(233, 32, 23);
                font-size: 22px;
                text-transform: uppercase;
                text-align: center;
                line-height: 1.2;
            }

            #LINE641 {
                height: 118px;
                top: 43.6202px;
                left: 138.237px;
            }

            #LINE641>.ladi-line>.ladi-line-container {
                border-top: 0px !important;
                border-right: 1px solid rgb(205, 205, 205);
                border-bottom: 1px solid rgb(205, 205, 205);
                border-left: 1px solid rgb(205, 205, 205);
            }

            #LINE641>.ladi-line {
                height: 100%;
                padding: 0px 8px;
            }

            #GROUP627 {
                width: 394px;
                height: 164.318px;
                top: 0px;
                left: 0px;
            }

            #HEADLINE642 {
                width: 322px;
                top: 3.90359px;
                left: 34.9742px;
            }

            #HEADLINE642>.ladi-headline {
                font-family: "SourceSansPro-Black.ttf";
                color: rgb(255, 255, 255);
                font-size: 26px;
                font-weight: bold;
                text-align: center;
                line-height: 1.6;
            }

            #GROUP626 {
                width: 394px;
                height: 164.318px;
                top: 364.867px;
                left: 11.5px;
            }

            #BOX644 {
                width: 690.057px;
                height: 202.5px;
                top: 0px;
                left: 0px;
            }

            #BOX644>.ladi-box {
                background: #fdfbfb;
                background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
                background: linear-gradient(180deg, #fdfbfb, #eaedee);
                border-radius: 195px;
            }

            #HEADLINE645 {
                width: 369px;
                top: 23.25px;
                left: 159.529px;
            }

            #HEADLINE645>.ladi-headline {
                color: rgb(0, 0, 0);
                font-size: 18px;
                line-height: 1.6;
            }

            #GROUP643 {
                width: 690.057px;
                height: 202.5px;
                top: 959.776px;
                left: -135.029px;
            }
        }