@media (max-width: 768px) and (max-height: 600px), (orientation: landscape) and (max-height: 600px), (orientation: portrait) and (max-width: 768px) {
    .process-icons {
        display: none;
    }

    [data-step]::before {
        content: "";
        display: block;
        width: 16.8rem;
        height: 16.8rem;
        margin: 0 auto 1.4rem;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        -webkit-box-shadow: 0 0 0 2px #352F2E;
        -moz-box-shadow: 0 0 0 2px #352F2E;
        box-shadow: 0 0 0 2px #352F2E;
    }
    [data-step][data-step="1"]::before {
        background-image: url(images/process-icon-step1.svg);
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    [data-step][data-step="2"]::before {
        background-image: url(images/process-icon-step2.svg);
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    [data-step][data-step="3"]::before {
        background-image: url(images/process-icon-step3.svg);
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    [data-step][data-step="4"]::before {
        background-image: url(images/process-icon-step4.svg);
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    [data-step][data-step="5"]::before {
        background-image: url(images/process-icon-step5.svg);
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    [data-step]:not(:last-child)::after {
        content: "";
        display: block;
        width: 2px;
        height: 8.4rem;
        margin: 1.4rem auto -5.6rem;
        background-color: #352F2E;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    .process-wrap {
        position: relative;
        height: 360vh;
    }
    .process-wrap.fixed [data-step],
    .process-wrap.fixed .process-icons {
        position: fixed;
        top: 8.4rem;
    }
    .process-wrap.bottom [data-step],
    .process-wrap.bottom .process-icons {
        top: auto;
        bottom: 0;
    }
    .process-wrap.fixed .step-text {
        max-width: 250px;
    }

    [data-step] {
        position: absolute;
        top: 0;
        left: 50%;
        width: 45vh;
        height: calc(100vh - 8.4rem);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s linear 0.25s, opacity 0.25s linear;
        will-change: visibility, opacity;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        /* Safari 7.0+ */
        justify-content: center;
        -webkit-align-items: center;
        /* Safari 7.0+ */
        align-items: center;
        padding: 0 !important;
    }
    [data-step] .step-label {
        position: absolute;
        top: 25%;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-step] .step-label {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-step] p {
        padding-top: 1.4rem;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    .process-icons {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
        width: calc(100vh - 8.4rem);
        height: calc(100vh - 8.4rem);
        margin: 0 auto;
    }
    .process-icons svg {
        width: 100%;
        height: 100%;
        -webkit-transform-origin: 50% 50%;
        -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        -o-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        will-change: transform;
        -webkit-transition: transform 0.75s linear;
        -moz-transition: transform 0.75s linear;
        -o-transition: transform 0.75s linear;
        transition: transform 0.75s linear;
    }
    .process-icons svg g:not(.arrows) {
        will-change: transform;
        -webkit-transition: transform 0.75s linear;
        -moz-transition: transform 0.75s linear;
        -o-transition: transform 0.75s linear;
        transition: transform 0.75s linear;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .process-icons svg g.step1 {
        -webkit-transform-origin: 50% 12.45%;
        -moz-transform-origin: 50% 12.45%;
        -ms-transform-origin: 50% 12.45%;
        -o-transform-origin: 50% 12.45%;
        transform-origin: 50% 12.45%;
    }
    .process-icons svg g.step2 {
        -webkit-transform-origin: 85.75% 38.45%;
        -moz-transform-origin: 85.75% 38.45%;
        -ms-transform-origin: 85.75% 38.45%;
        -o-transform-origin: 85.75% 38.45%;
        transform-origin: 85.75% 38.45%;
    }
    .process-icons svg g.step3 {
        -webkit-transform-origin: 72.15% 80.45%;
        -moz-transform-origin: 72.15% 80.45%;
        -ms-transform-origin: 72.15% 80.45%;
        -o-transform-origin: 72.15% 80.45%;
        transform-origin: 72.15% 80.45%;
    }
    .process-icons svg g.step4 {
        -webkit-transform-origin: 27.85% 80.45%;
        -moz-transform-origin: 27.85% 80.45%;
        -ms-transform-origin: 27.85% 80.45%;
        -o-transform-origin: 27.85% 80.45%;
        transform-origin: 27.85% 80.45%;
    }
    .process-icons svg g.step5 {
        -webkit-transform-origin: 14.2% 38.45%;
        -moz-transform-origin: 14.2% 38.45%;
        -ms-transform-origin: 14.2% 38.45%;
        -o-transform-origin: 14.2% 38.45%;
        transform-origin: 14.2% 38.45%;
    }
    .process-icons svg circle {
        fill: #CEC4C4;
    }
    .process-icons svg g.arrows {
        animation: none !important;
        transform: none !important;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    .process-icons svg circle {
        stroke: #CEC4C4;
        stroke-width: 1px;
        will-change: stroke;
        -webkit-transition: stroke 0.25s ease-in-out;
        -moz-transition: stroke 0.25s ease-in-out;
        -o-transition: stroke 0.25s ease-in-out;
        transition: stroke 0.25s ease-in-out;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="1"] [data-step="1"] {
        visibility: visible;
        opacity: 0.99999;
        transition-delay: 0s;
    }
    [data-current-step="1"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="1"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="1"] g.step1 circle {
        stroke: #352F2E;
    }
    [data-current-step="1"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="1"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="2"] [data-step="2"] {
        visibility: visible;
        opacity: 0.99999;
        transition-delay: 0s;
    }
    [data-current-step="2"] .process-icons svg {
        -webkit-transform: rotate(-72deg);
        -moz-transform: rotate(-72deg);
        -ms-transform: rotate(-72deg);
        -o-transform: rotate(-72deg);
        transform: rotate(-72deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="2"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(72deg) scale(0.9);
        -moz-transform: rotate(72deg) scale(0.9);
        -ms-transform: rotate(72deg) scale(0.9);
        -o-transform: rotate(72deg) scale(0.9);
        transform: rotate(72deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="2"] g.step2 circle {
        stroke: #352F2E;
    }
    [data-current-step="2"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="2"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="3"] [data-step="3"] {
        visibility: visible;
        opacity: 0.99999;
        transition-delay: 0s;
    }
    [data-current-step="3"] .process-icons svg {
        -webkit-transform: rotate(-144deg);
        -moz-transform: rotate(-144deg);
        -ms-transform: rotate(-144deg);
        -o-transform: rotate(-144deg);
        transform: rotate(-144deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="3"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(144deg) scale(0.9);
        -moz-transform: rotate(144deg) scale(0.9);
        -ms-transform: rotate(144deg) scale(0.9);
        -o-transform: rotate(144deg) scale(0.9);
        transform: rotate(144deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="3"] g.step3 circle {
        stroke: #352F2E;
    }
    [data-current-step="3"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="3"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="4"] [data-step="4"] {
        visibility: visible;
        opacity: 0.99999;
        transition-delay: 0s;
    }
    [data-current-step="4"] .process-icons svg {
        -webkit-transform: rotate(-216deg);
        -moz-transform: rotate(-216deg);
        -ms-transform: rotate(-216deg);
        -o-transform: rotate(-216deg);
        transform: rotate(-216deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="4"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(216deg) scale(0.9);
        -moz-transform: rotate(216deg) scale(0.9);
        -ms-transform: rotate(216deg) scale(0.9);
        -o-transform: rotate(216deg) scale(0.9);
        transform: rotate(216deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="4"] g.step4 circle {
        stroke: #352F2E;
    }
    [data-current-step="4"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="4"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}
@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="5"] [data-step="5"] {
        visibility: visible;
        opacity: 0.99999;
        transition-delay: 0s;
    }
    [data-current-step="5"] .process-icons svg {
        -webkit-transform: rotate(-288deg);
        -moz-transform: rotate(-288deg);
        -ms-transform: rotate(-288deg);
        -o-transform: rotate(-288deg);
        transform: rotate(-288deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="5"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(288deg) scale(0.9);
        -moz-transform: rotate(288deg) scale(0.9);
        -ms-transform: rotate(288deg) scale(0.9);
        -o-transform: rotate(288deg) scale(0.9);
        transform: rotate(288deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="5"] g.step5 circle {
        stroke: #352F2E;
    }
    [data-current-step="5"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="5"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}
@media (min-width: 769px) and (min-height: 601px), (orientation: landscape) and (min-height: 601px), (orientation: portrait) and (min-width: 769px) {
    [data-current-step="6"] .process-icons svg {
        -webkit-transform: rotate(-288deg);
        -moz-transform: rotate(-288deg);
        -ms-transform: rotate(-288deg);
        -o-transform: rotate(-288deg);
        transform: rotate(-288deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="6"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(288deg) scale(0.9);
        -moz-transform: rotate(288deg) scale(0.9);
        -ms-transform: rotate(288deg) scale(0.9);
        -o-transform: rotate(288deg) scale(0.9);
        transform: rotate(288deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

@media (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: none), (min-width: 769px) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: none), (orientation: landscape) and (min-height: 601px) and (-ms-high-contrast: active), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: none), (orientation: portrait) and (min-width: 769px) and (-ms-high-contrast: active) {
    [data-current-step="6"] .process-icons svg {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-current-step="6"] .process-icons svg g:not(.arrows) {
        -webkit-transform: rotate(0deg) scale(0.9);
        -moz-transform: rotate(0deg) scale(0.9);
        -ms-transform: rotate(0deg) scale(0.9);
        -o-transform: rotate(0deg) scale(0.9);
        transform: rotate(0deg) scale(0.9);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}