a {
    transition: all 0.3s;
}

.content-page {
    min-height: 100vh;
    padding: 100px 0px;
}

@media only screen and (max-width: 480px) {
    .content-page {
        padding: 40px 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    .content-page {
        padding: 40px 0px;
    }
}

h1.heading {
    color: #fdae4b;
    font-weight: 700;
    line-height: 48px;
    font-size: 36px;
}

@media only screen and (max-width: 480px) {
    h1.heading {
        font-size: 24px;
        line-height: 30px;
    }
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", Sans-serif !important;
    font-size: 14px;
    background: #f0f0f0 !important;
}

body.no-scroll {
    overflow-x: hidden;
    overflow-y: hidden;
}

nav.navigation {
    text-align: center;
    background: transparent;
    width: 100%;
    top: 0px;
    position: fixed;
    transition: all 0.3s;
}

nav.navigation.fixed-navigation {
    background: #fdae4b;
}

nav.navigation.fixed-navigation ul.nav li {
    padding-top: 0px;
}

nav.navigation ul.nav {
    text-align: center;
}

nav.navigation ul.nav li {
    transition: all 0.3s;
    padding-top: 20px;
    display: inline-block;
}

nav.navigation ul.nav li.active a:after, nav.navigation ul.nav li.active a:before {
    width: 20%;
}

nav.navigation ul.nav li.mobileOnly {
    display: none;
}

nav.navigation ul.nav li a {
    display: block;
    color: #ffffff;
    padding: 20px 20px;
    position: relative;
    font-weight: bolder
}

nav.navigation ul.nav li a:after, nav.navigation ul.nav li a:before {
    transition: all 0.3s;
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffffff;
    bottom: 12px;
}

nav.navigation ul.nav li a:after {
    right: 50%;
}

nav.navigation ul.nav li a:before {
    left: 50%;
}

nav.navigation ul.nav li a:hover, nav.navigation ul.nav li a:focus {
    background: transparent;
}

nav.navigation ul.nav li a:hover:after, nav.navigation ul.nav li a:hover:before, nav.navigation ul.nav li a:focus:after, nav.navigation ul.nav li a:focus:before {
    width: 20%;
}

nav.navigation ul.nav li a.partnership {
    border-radius: 8px;
    border: 1px solid #ffffff;
    padding: 10px 15px;
}

nav.navigation ul.nav li a.partnership:after, nav.navigation ul.nav li a.partnership:before {
    display: none;
}

nav.navigation ul.nav li a.partnership:hover {
    background: #ffffff;
    color: #fdae4b;
}

nav.navigation .content-mobile {
    display: none;
}

@media only screen and (max-width: 800px) {
    nav.navigation .content-mobile {
        display: block;
        padding: 10px 0px;
        position: relative;
        text-align: left;
        color: #ffffff;
    }

    nav.navigation .content-mobile label a {
        transition: all 0.3s;
        color: #ffffff;
        display: inline-block;
        text-decoration: none;
    }

    nav.navigation .content-mobile .on-right a {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }

    nav.navigation .content-mobile button.toggle-button {
        width: 20px;
        height: 15px;
        border: 0px;
        background: transparent;
        border-bottom: 2px solid #ffffff;
        border-top: 2px solid #ffffff;
        position: absolute;
        right: 0px;
        top: 13px;
        z-index: 99;
    }

    nav.navigation .content-mobile button.toggle-button:after {
        content: '';
        transition: all 0.3s;
        position: absolute;
        height: 2px;
        width: 100%;
        left: 0px;
        top: 50%;
        margin-top: -1px;
        background: #ffffff;
    }

    nav.navigation .content-mobile button.toggle-button:before {
        content: '';
        position: absolute;
        transition: all 0.3s;
        height: 2px;
        width: 100%;
        left: 0px;
        top: 50%;
        margin-top: -1px;
        background: #ffffff;
    }

    nav.navigation .content-mobile button.toggle-button.toggleOn {
        border-color: transparent;
    }

    nav.navigation .content-mobile button.toggle-button.toggleOn:after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    nav.navigation .content-mobile button.toggle-button.toggleOn:before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    nav.navigation .content-mobile button.toggle-button:visited, nav.navigation .content-mobile button.toggle-button:focus {
        outline: none;
    }

    nav.navigation ul.nav {
        width: 80%;
        max-width: 300px;
        height: 100vh;
        position: fixed;
        text-align: left;
        right: 0px;
        top: 0px;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        background: #fdae4b;
        transition: all 0.3s;
    }

    nav.navigation ul.nav li {
        padding-top: 0px;
        display: block;
    }

    nav.navigation ul.nav li.active a:before {
        width: 3px;
    }

    nav.navigation ul.nav li.mobileOnly {
        display: block;
    }

    nav.navigation ul.nav li.mobileOnly a {
        padding: 12px;
        background: #ED8F03;
    }

    nav.navigation ul.nav li a {
        border-bottom: 1px solid #FFFFFF;
    }

    nav.navigation ul.nav li a:after {
        display: none;
        opacity: 0;
    }

    nav.navigation ul.nav li a:before {
        height: 100%;
        right: 0px;
        left: auto;
        width: 0px;
        bottom: 0px;
    }

    nav.navigation ul.nav li a:hover, nav.navigation ul.nav li a:focus, nav.navigation ul.nav li a:visited {
        background: #fdae4b;
    }

    nav.navigation ul.nav li a:hover:before, nav.navigation ul.nav li a:focus:before, nav.navigation ul.nav li a:visited:before {
        width: 3px;
    }

    nav.navigation ul.nav li a.partnership {
        margin: 25px auto;
        width: 200px;
        text-align: center;
    }

    nav.navigation ul.nav.show-menu {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 0px 0px 107px 0px rgba(0, 0, 0, 0.5);
    }
}

header#overview {
    background: transparent;
    position: relative;
}

header#overview:before {
    content: '';
    width: 100%;
    height: 575px;
    position: absolute;
    top: 0px;
    background: #fdae4b;
    background: -webkit-linear-gradient(to right, #ED8F03, #fdae4b);
    background: linear-gradient(to right, #ED8F03, #fdae4b);

}

header#overview figure.figure_img {
    text-align: right;
    width: 100%;
}

header#overview figure.figure_img img {
    max-width: 100%;
    float: right;
    display: block;
    position: relative;
    right: -100px;
}

header#overview .meta-header {
    padding-top: 120px;
}

header#overview .meta-header h1 {
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.35);
}

header#overview .meta-header h2, header#overview .meta-header p {
    color: #323f47;
}

header#overview .meta-header p {
    font-size: 1.125em;
    padding-top: 10px;
}

header#overview .meta-header a {
    display: inline-block;
    margin-top: 20px;
    padding-right: 10px;
}

header#overview .meta-header a img {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.43);
    transition: all 0.3s;
}

header#overview .meta-header a:hover img {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

@media only screen and (max-width: 480px) {
    header#overview:before {
        height: 50vh;
    }

    header#overview figure.figure_img img {
        right: 0px;
        float: none;
    }

    header#overview .meta-header {
        padding-top: 0px;
        text-align: center;
    }

    header#overview .meta-header h1 {
        color: #fdae4b;
        text-shadow: 1px 2px 3px transparent;
    }

    header#overview .meta-header a img {
        width: 110px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    header#overview {
        min-height: 0px;
    }

    header#overview:before {
        height: 40vh;
    }

    header#overview .meta-header {
        padding-top: 30px;
    }

    header#overview figure.figure_img img {
        top: 30px;
        right: 0px;
    }
}

@media only screen and (max-width: 640px) {
    header#overview {
        text-align: center;
    }

    header#overview:before {
        height: 50vh;
        left: 0px;
    }

    header#overview figure.figure_img {
        width: 100%;
        text-align: center;
    }

    header#overview figure.figure_img img {
        float: none;
        right: 0px;
        width: 400px;
        margin: 0 auto;
    }

    header#overview .meta-header h1 {
        font-weight: 700;
        color: #fdae4b;
        font-size: 48px;
        text-shadow: 1px 2px 3px transparent;
    }
}

section#about {
    height: auto;
    min-height: 0px;
    position: relative;
}

section#about .about-content {
    position: relative;
    top: 50px;
}

section#about .about-content .logo {
    width: 120px;
    float: left;
    margin-right: 45px;
    margin-bottom: 45px;
}

section#about .about-content .logo img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 9px 9px 29px 0px rgba(0, 0, 0, 0.22);
}

section#about .about-content p {
    font-size: 1.125em;
    line-height: 30px;
    text-align: justify;
}

section#about .ilustrasi {
    width: 100%;
    position: absolute;
    top: -150px;
    right: 0px;
}

@media only screen and (max-width: 480px) {
    section#about .about-content {
        position: relative;
        top: 0px;
    }

    section#about .about-content .logo {
        margin-right: 0px;
        margin-bottom: 11px;
    }

    section#about .about-content .logo img {
        display: inline-block;
        width: 80px;
    }

    section#about .ilustrasi {
        width: 100%;
        position: relative;
        top: 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    section#about .ilustrasi {
        width: 100%;
        position: relative;
        top: 0px;
    }
}

section#work {
    padding-bottom: 0px;
    min-height: 0px;
}

section#work h1.heading {
    padding-bottom: 30px;
    position: relative;
    left: -20px;
}

section#work .hand-showcase {
    width: 502px;
    height: 762px;
    position: relative;
    width: 382px;
    height: 580px;
    float: right;
}

section#work .hand-showcase .slick-arrow {
    display: none !important;
}

section#work .box-showcase {
    background: url(../images/empty.png) no-repeat center/cover;
    width: 502px;
    height: 762px;
    position: absolute;
    z-index: 9;
    top: 0px;
    right: 0px;
    width: 382px;
    height: 580px;
}

section#work .slider.slide-order-showcase {
    position: absolute;
    top: 80px;
    left: 138px;
    width: 270px;
    height: 478px;
}

section#work .slider.slide-order-showcase {
    width: 274px;
    height: 452px;
    top: 67px;
    left: 117px;
    width: 209px;
    height: 369px;
}

section#work .slider.slide-order-showcase img {
    width: 209px;
    height: 369px;
}

section#work .stepList {
    margin: 0px;
    padding: 0px;
    list-style: none;
    padding-bottom: 50px;
}

section#work .stepList:before {
    content: '';
    position: absolute;
    left: 21px;
    top: 10px;
    width: 2px;
    height: 100%;
    background: #E4E4E4;
}

section#work .stepList.mobile {
    display: none;
}

section#work .stepList li {
    overflow: hidden;
    position: relative;
}

section#work .stepList li .num {
    display: inline-block;
    float: left;
    width: 30px;
    margin-right: 5px;
}

section#work .stepList li .num.bullet span {
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 8px;
    left: 0px;
    background: #f0f0f0;
    border-radius: 100%;
    border: 2px solid #fdae4b;
}

section#work .stepList li .stepCnt {
    float: left;
    width: auto;
    overflow: hidden;
    padding-left: 50px;
    padding-bottom: 20px;
}

section#work .stepList li .stepCnt h3 {
    margin: 0px;
    color: #323f47;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    font-size: 1.143em;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 7px;
}

section#work .stepList li:last-child:after {
    display: none;
}

section#work .stepList li.active .num span {
    background-color: #fdae4b;
    color: #fff;
}

section#work .stepList li.active .stepCnt h3 {
    color: #fdae4b;
    font-weight: 600;
}

section#work .stepCnt h3:hover, section#work .num:hover {
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    section#work .box-showcase, section#work .hand-showcase {
        display: none;
    }

    section#work h1.heading {
        left: 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    section#work h1.heading {
        left: 0px;
        text-align: center;
    }
}

@media only screen and (max-width: 640px) {
    section#work .box-showcase {
        left: 100px;
    }

    section#work .hand-showcase {
        float: left;
        left: 70px;
    }
}

section#download {
    position: relative;
    width: 100%;
    color: #ffffff;
    min-height: 0px;
    height: 550px;
    background: url(../images/back-black.jpg) no-repeat center top #323f47;
}

section#download .meta-download {
    padding-top: 40px;
}

section#download .meta-download h1 {
    line-height: 48px;
    padding-bottom: 10px;
}

section#download .meta-download .box-qr {
    float: left;
}

section#download .meta-download .box-qr label {
    display: block;
    margin: 20px 0px 15px 0px;
}

section#download .meta-download .box-qr img {
    width: 130px;
}

section#download .meta-download .box-link-app {
    padding-left: 55px;
    float: left;
}

section#download .meta-download .box-link-app label {
    display: block;
    margin: 20px 0px 15px 0px;
}

section#download .meta-download .box-link-app a {
    display: block;
    padding-bottom: 15px;
}

section#download .showcase-download {
    position: relative;
}

section#download .showcase-download img {
    position: absolute;
}

@media only screen and (max-width: 480px) {
    section#download {
        height: auto;
        text-align: center;
        padding-bottom: 200px;
        overflow: hidden;
    }

    section#download .box-qr {
        display: none;
    }

    section#download .box-link-app {
        width: 100%;
        padding: 0px !important;
    }

    section#download .box-link-app a {
        display: inline-block !important;
    }

    section#download .box-link-app a img {
        width: 110px;
    }

    section#download .showcase-download {
        width: 100%;
    }

    section#download .showcase-download img {
        left: 0px;
        top: 15vh;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    section#download .showcase-download img {
        width: 270px;
        position: absolute;
        right: 0px;
    }
}

section#contact {
    background: #fdae4b;
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #fdae4b), color-stop(100%, #3cc1cd));
    background: linear-gradient(135deg, #fdae4b 0%, #ED8F03 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdae4b', endColorstr='#3cc1cd', GradientType=1);
    min-height: 0px;
    color: #ffffff;
    padding-bottom: 0px;
}

section#contact h1.heading {
    color: #ffffff;
}

section#contact ul.list-info {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

section#contact ul.list-info li {
    padding: 5px 0px;
    font-size: 18px;
}

section#contact ul.list-info li i {
    padding-right: 15px;
}

section#contact ul.list-info li .info {
    font-weight: normal;
    color: #ffffff;
}

section#contact footer {
    border-top: 1px solid rgba(255, 255, 255, 0.33);
    margin-top: 100px;
    padding: 25px 0px;
}

section#contact footer ul.link-footer {
    float: right;
    padding: 0px;
    list-style: none;
}

section#contact footer ul.link-footer li {
    display: inline-block;
}

section#contact footer ul.link-footer li a {
    display: block;
    color: #ffffff;
    padding-left: 15px;
}

@media only screen and (max-width: 480px) {
    section#contact {
        text-align: center;
    }

    section#contact ul.list-info li i {
        display: block;
        width: 40px;
        height: 40px;
        margin: 10px auto;
        border-radius: 100%;
        border: 2px solid #ffffff;
        text-align: center;
        line-height: 35px;
        padding: 0px;
    }

    section#contact ul.list-info li .info {
        font-size: 14px;
    }

    section#contact footer {
        margin-top: 20px;
    }

    section#contact footer span {
        font-size: 11px;
    }

    section#contact footer ul.link-footer {
        padding-top: 20px;
        float: none;
        text-align: center;
    }

    section#contact footer ul.link-footer li a {
        padding: 5px !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    section#contact footer {
        margin-top: 20px;
        text-align: center;
    }

    section#contact footer span {
        font-size: 11px;
    }

    section#contact footer ul.link-footer {
        padding-top: 20px;
        float: none;
        text-align: center;
    }

    section#contact footer ul.link-footer li a {
        padding: 5px !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    section#contact .info {
        font-size: 14px;
    }
}

.partnership-page {
    min-height: 100px;
}

.partnership-page h2 {
    line-height: 36px;
    margin-bottom: 20px;
}

.partnership-page p {
    font-size: 16px;
    line-height: 24px;
}

.partnership-page .form-partnership {
    border-radius: 8px;
    background: #ffffff;
    padding: 40px;
    width: 100%;
    min-height: 400px;
    box-shadow: 13px 23px 60px 0px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.partnership-page .form-partnership .divider {
    clear: both;
    width: 150%;
    height: 2px;
    background: #fdae4b;
    margin: 20px -40px 45px -40px;
}

.partnership-page .form-partnership .group-form {
    margin-bottom: 25px;
}

.partnership-page .form-partnership .group-form label {
    display: block;
    margin-bottom: 5px;
    color: #323f47;
}

.partnership-page .form-partnership .group-form input, .partnership-page .form-partnership .group-form textarea {
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #ddd;
    padding: 3px 0px 10px 0px;
    font-weight: normal;
    transition: all 0.3s;
}

.partnership-page .form-partnership .group-form input:focus, .partnership-page .form-partnership .group-form input:hover, .partnership-page .form-partnership .group-form textarea:focus, .partnership-page .form-partnership .group-form textarea:hover {
    outline: none;
}

.partnership-page .form-partnership .group-form textarea {
    border: 1px solid #ddd;
    resize: none;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.partnership-page .form-partnership .group-form button {
    float: right;
    padding: 15px 40px;
    border: 0px;
    border-radius: 4px;
    text-transform: uppercase;
    color: #ffffff;
    background: #1A85DF;
    box-shadow: 1px 3px 16px 0 rgba(28, 118, 193, 0.58);
    transition: all 0.4s ease;
}

.partnership-page .form-partnership .group-form button:hover {
    background: #3B8ED4;
}

@media only screen and (max-width: 480px) {
    .partnership-page h2, .partnership-page p {
        text-align: center;
    }

    .partnership-page form.form-partnership {
        margin-top: 20px;
        padding: 20px;
    }

    .partnership-page form.form-partnership button {
        width: 100%;
    }
}

.cd-form ul {
    list-style: none;
    padding: 0px;
    margin-top: 10px;
}

.cd-form ul li {
    position: relative;
    padding: 4px 0px;
}

.cd-form input[type=radio],
.cd-form input[type=checkbox] {
    /* hide original check and radio buttons */
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
    padding-left: 24px;
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
    /* custom radio and check boxes */
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    width: 16px;
    height: 16px;
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
    border: 1px solid #cfd9db;
    background: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
    border-radius: 50%;
}

.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
    border-radius: .25em;
}

.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
    background-color: #2c97de;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
    display: none;
}

.cd-form input[type="radio"] + label::after {
    /* custom image for radio button */
    background-image: url("../img/cd-icon-radio.svg");
}

.cd-form input[type="checkbox"] + label::after {
    /* custom image for checkbox */
    background-image: url("../img/cd-icon-check.svg");
}

.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
    /* add focus effect for radio and check buttons */
    box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}

.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
    display: block;
}

.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
    -webkit-animation: cd-bounce 0.3s;
    animation: cd-bounce 0.3s;
}

header.header-page {
    width: 100%;
    min-height: 200px;
    max-height: 250px;
    padding: 50px 0px;
    /*background: url(../images/back.jpg) no-repeat center center; }*/
    background: rgb(98, 204, 92) linear-gradient(353deg, rgba(98, 204, 92, 1) 66%, rgba(76, 177, 111, 1) 100%) repeat scroll 0% 0%;
    /*background: #fdae4b;*/
    /*background: -webkit-linear-gradient(to right, #ED8F03, #fdae4b);*/
    /*background: linear-gradient(to right, #ED8F03, #fdae4b);*/
}

header.header-page h1 {
    color: #ffffff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}

header.header-page ul.chumb {
    padding: 0px;
    list-style: none;
}

header.header-page ul.chumb li {
    display: inline-block;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

header.header-page ul.chumb li:last-child:after {
    display: none;
}

header.header-page ul.chumb li:after {
    content: "/";
    position: absolute;
    right: 0px;
    top: 10px;
    color: #ddd;
}

header.header-page ul.chumb li span {
    color: #ddd;
    display: block;
    padding: 10px 10px 10px 0px;
}

header.header-page ul.chumb li a {
    display: block;
    padding: 10px 10px 10px 0px;
    color: #ffffff;
}

header.header-page .container {
    position: relative;
}

header.header-page .img-header {
    position: absolute;
    right: 0px;
    width: 400px;
    height: 237px;
    bottom: -50px;
    /*background: url(../images/back-heading2.png) no-repeat center center;*/
    background-size: 100%;
}

@media only screen and (max-width: 480px) {
    header.header-page {
        padding: 25px 0px;
        text-align: center;
        height: auto;
        min-height: 0px;
    }

    header.header-page h1 {
        font-size: 24px;
    }

    header.header-page .img-header {
        display: none;
    }

    header.header-page ul.chumb {
        text-align: center;
        width: 100%;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    header.header-page ul.chumb li {
        text-align: center;
        font-size: 11px;
        margin-right: 5px;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    header.header-page .img-header {
        bottom: -60px;
    }
}

.container-page {
    padding: 50px 0px;
}

.aside-content h2 {
    font-size: 18px;
}

.aside-content ol {
    padding: 0px 0px 0px 25px;
}

.aside-content ol li {
    padding: 5px 0px;
}

.aside-content ol li a {
    color: #1a85df;
}

.paragraph {
    line-height: 24px;
    text-align: justify;
}

.content-detail {
    padding: 10px 0px 30px 0px;
    text-align: justify;
}

.content-detail h3 {
    font-size: 16px;
    font-weight: 700;
}

.content-detail ol li {
    line-height: 24px;
    padding: 8px 0px;
}

footer.footer-page {
    border-top: 1px solid #ddd;
    margin-top: 100px;
    padding: 25px 0px;
}

footer.footer-page ul.link-footer {
    float: right;
    padding: 0px;
    list-style: none;
}

footer.footer-page ul.link-footer li {
    display: inline-block;
}

footer.footer-page ul.link-footer li a {
    display: block;
    color: #1a85df;
    padding-left: 15px;
}

@media only screen and (max-width: 480px) {
    footer.footer-page {
        text-align: center;
        margin-top: 20px;
    }

    footer.footer-page span {
        font-size: 11px;
    }

    footer.footer-page li a {
        padding: 10px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1023px) {
    footer.footer-page {
        text-align: center;
        margin-top: 20px;
    }

    footer.footer-page span {
        font-size: 11px;
    }

    footer.footer-page ul {
        float: none;
        width: 100%;
    }

    footer.footer-page li a {
        padding: 10px;
    }
}

#back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: #323f47;
    z-index: 100;
    border: 0px;
    box-shadow: 0px 11px 30px 0px rgba(0, 0, 0, 0.59);
    transition: all 0.3s;
}

#back-to-top:hover, #back-to-top:visited {
    outline: none;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0px 11px 40px 0px rgba(0, 0, 0, 0.59);
}

#back-to-top i {
    color: #fff;
    font-size: 31px;
}

@media only screen and (max-width: 480px) {
    #back-to-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.68);
    }

    #back-to-top i {
        font-size: 18px;
    }
}
