/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian Sidik
Template Name : Remhos - Furniture Interiors Landing Page Multipurpose Bootstrap Template  
Version       : 1.0
Filename      : main.css
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - loadder
    - animation
* 02.HEADDER SECTION
    - navigation
    - mobile navigation
* 03.HERO SECTION
* 04.ABOUT SECTION
* 05.OFFERS SECTION 
* 06.PROJECT SECTION 
* 07.SERVICE SECTION 
* 08.GAP SECTION 
    - testimonial 
* 09.NEWS SECTION 
* 10.CONTACT SECTION  
* 11.FOOTER SECTION 
* 12.SCROLLTOP
*/
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/

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

html,
body {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    background: #f7f1ed;
    color: #1a0800;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

input,
textarea {
    padding: 10px 20px 10px 0;
    border: none;
    font-size: 13px;
    width: 100%;
    border-bottom: 2px solid rgba(8, 8, 8, .5);
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid #dd9d4c;
}

button.butform {
    background: #dd9d4c;
    border: none;
    margin: 30px 0 0 0;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 5px;
    color: #f6f1ed;
    font-weight: 700;
    padding: 10px 30px 10px 30px;
    cursor: pointer;
}

input.error {
    border-bottom: 2px solid red;
}

textarea.error {
    border-bottom: 2px solid red;
}

button.butform:hover {
    background: #DBAEA3;
}

label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 20px 0 0 0;
    color: #1a0800;
}

label.error {
    font-size: 13px;
    letter-spacing: normal;
    font-weight: normal;
    color: red;
    display: block;
    margin: 10px 0 0 0;
}

a.button-link {
    position: relative;
    z-index: 3;
    padding: 18px 40px;
    border-radius: 4px;
    background-color: #dd9d4c;
    color: #f7f1ed;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

a.button-link:hover {
    text-decoration: none;
    color: #f7f1ed;
    background-color: #DBAEA3;
}

.nav-link.active {
    color: #1a0800 !important;
}

.head-title p {
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    text-transform: uppercase;
    color: rgba(26, 8, 0, 0.5);
    border-bottom: 1px solid rgba(26, 8, 0, 0.5);
}

.head-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
}

.a-bg {
    background: #fff;
}

.b-bg {
    background: #F6F1ED;
    z-index: 1;
}

.c-bg {
    background: #DBAEA3;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #dd9d4c;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: transparent;
    border: 1px solid #dd9d4c;
}

.highlight {
    color: #dd9d4c;
}

.flashinfo {
    font-size: 13px;
    padding: 10px 10px 10px 40px;
    background: #f6f1ed;
    display: none;
}
.flashinfo span {
    position: absolute;
    left: 25px;
}
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - loadder
* ----------------------------------------------------------------------------------------
*/
.pace {
    pointer-events: none;
    user-select: none;
    z-index: 999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: rgba(26, 8, 0, 0.1);
    -webkit-transition: all 1s;
    transition: all 1s;
}

.pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 9;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #1a0800;
}

.pace.pace-inactive {
    width: 100vw;
    opacity: 0;
}

.pace.pace-inactive .pace-progress {
    max-width: 100vw;
}

#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
}

#preloader:after,
#preloader:before {
    content: '';
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: #f6f1ed;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
    top: 0;
}

#preloader:after {
    bottom: 0;
}

#preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

#preloader.isdone:after,
#preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}


#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
}

/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - animation
* ----------------------------------------------------------------------------------------
*/

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: .8;
    }
}

@keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        opacity: 0.8;
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        opacity: 0.8;
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

.bigfade {
    -webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) .5s both;
    animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) .5s both;
}

.bigfadesec {
    -webkit-animation: fade-in-bottom 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) .8s both;
    animation: fade-in-bottom 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) .8s both;
}

.bigfadetree {
    -webkit-animation: fade-in-bottom 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
    animation: fade-in-bottom 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}


/*
* ----------------------------------------------------------------------------------------
* 02.HEADDER SECTION 
* ----------------------------------------------------------------------------------------
*/

#headder-main {
    position: fixed;
    z-index: 5;
    width: 100%;
}

.logo-container {
    width: 50px;
}

.logo-container img {
    width: 100%;
}

.fixi {
    background: #dd9d4c;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
}


/*
* ----------------------------------------------------------------------------------------
* 02.HEADDER SECTION 
    - navigation
* ----------------------------------------------------------------------------------------
*/

.navigation-big {
    text-align: right;
}

.navigation-big .list-nav li {
    display: inline-block;
    position: relative;
    margin: 0 20px 0 0;
    z-index: 10;
}

.navigation-big .list-nav li a {
    color: #f7f1ed;
    font-size: 17px;
    letter-spacing: 1px;
}

.navigation-big .list-nav li a:hover {
    color: #dd9d4c;
    text-decoration: none;
}

.fixi .navigation-big .list-nav li a:hover {
    color: #1a0800;
}

/*
* ----------------------------------------------------------------------------------------
* 02.HEADDER SECTION 
    - mobile navigation
* ----------------------------------------------------------------------------------------
*/


.toggle-nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 1;
    cursor: pointer;
    color: #f6f1ed;
}

.toggle-nav span {
    font-size: 50px;
    top: 0;
    right: 0px;
    position: absolute;
}


.mobile-navwrap {
    width: 100%;
    height: 0%;
    position: fixed;
    display: block;
    visibility: hidden;
    overflow: auto;
    top: 0;
    z-index: 99;
    padding-top: 50px;
    background: #f6f1ed;

    transition: all .3s;
}

#navmobile {
    position: relative;
    top: 30%;
    padding-bottom: 30px;
}

.navigation-listmobile {
    padding-left: 30px;
}

.navigation-listmobile li {
    list-style: none;
    display: block;
    margin: 10px;
}

.navigation-listmobile li a {
    color: #1a0800;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.navigation-listmobile li a:hover {
    color: #dd9d4c;
    font-weight: 600;
    text-transform: uppercase;
}

.closed {
    color: #1a0800;
}


/*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION 
* ----------------------------------------------------------------------------------------
*/

#hero-wrap {
    height: auto;
}

.corner-es,
.corner-es-sec {
    position: absolute;
    width: 70px;
    height: 70px;
    border-color: rgba(255, 255, 255, 0.2);
}

.corner-es {
    top: 30px;
    right: 30px;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-right: 1px solid rgba(255, 255, 255, .8);
}

.corner-es-sec {
    bottom: 30px;
    left: 30px;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    border-left: 1px solid rgba(255, 255, 255, .8);
}

.wrap-innerhero {
    position: relative;
    z-index: 3;
}

.overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left top, right top, from(rgba(8, 8, 8, 0.8)), to(rgba(8, 8, 8, .5)));
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.8), rgba(8, 8, 8, .2));
}

.wrap-bghero {
    height: 100vh;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.title-hero {
    position: relative;
    z-index: 2;
    height: 100vh;
}

.inner-detailhero h3 {
    font-size: 50px;
    color: #f7f1ed;
    font-family: 'Cormorant Garamond', serif;
}

.inner-detailhero p {
    font-size: 15px;
    color: #f7f1ed;
}

.sosmed-li {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    right: 30px;
}

.li-sos {
    padding-left: 0;
}

.li-sos li {
    position: relative;
    display: inline-block;
    margin: 0 20px 0 20px;
}

.li-sos li a {
    font-size: 20px;
    color: #f7f1ed;
}

.li-sos li a:hover {
    text-decoration: none;
    color: #dd9d4c;
}

/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION 
* ----------------------------------------------------------------------------------------
*/

.wrap-imagebroken {
    position: relative;
    z-index: 1;
}

.image-broken-frame {
    width: 100%;
    position: relative;
    top: 0;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.image-broken-frame img {
    width: 100%;
    height: auto;
    position: absolute;
}

.wrap-detailabout h3 {
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.wrap-detailabout p {
    color: rgba(26, 8, 0, 0.5);
}

.wrap-innerabout h3 {
    font-weight: 700;
    color: #dd9d4c;
}

/*
* ----------------------------------------------------------------------------------------
* 05.OFFERS SECTION 
* ----------------------------------------------------------------------------------------
*/

#wrap-offers {
    padding: 150px 0;
}

.wrap-inneroffers {
    background: #EFE5DC;
    border-radius: 10px;
    padding: 40px 20px 50px 20px;

}

.shape-rotate {
    margin: -80px auto;
    display: block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: relative;
    background: #dd9d4c;
}

.shape-rotate span {
    transform: rotate(-45deg) translate(0, -50%);
    -ms-transform: rotate(-45deg) translate(0, -50%);
    -webkit-transform: rotate(-45deg) translate(0, -50%);
    position: absolute;
    color: #f7f1ed;
    top: 45%;
    left: 45%;
    font-size: 50px;
}


.detail-offers {
    padding: 120px 0 0;
}

.detail-offers h3 {
    font-size: 23px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond';
}

.detail-offers p {
    font-size: 15px;
    color: rgba(26, 8, 0, 0.5);
}


/*
* ----------------------------------------------------------------------------------------
* 06.PROJECT SECTION 
* ----------------------------------------------------------------------------------------
*/

#work-section {
    position: relative;
}

.item img {
    border-radius: 20px;
    width: 30%;
    transition: all .5s;
}

.item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.overlay-porto {
    padding: 30px 15px;
    position: absolute;
    bottom: -58px;
    left: 0;
    width: 100%;
    top: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    z-index: 1;
    height: auto;
    box-sizing: border-box;
    background: linear-gradient(to bottom, transparent 0, rgba(8, 8, 8, .01) 2%, rgba(8, 8, 8, .90) 90%);
}

.item a {
    display: block;
}

.item a:hover {
    text-decoration: none;
}

.item .texts {
    padding: 50px 20px 30px 20px;
    display: block;
    left: 0;
    width: 100%;
    position: absolute;
    transform: translate(0, -100%);
    transition: all .5s;
    z-index: 3;
}

.item:hover .overlay-porto {
    bottom: 0;
}

.texts p {
    color: #f7f1ed;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.texts h4 {
    color: #f7f1ed;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond';
}

.texts span {
    width: 100%;
    text-align: center;
    font-size: 50px;
    margin: 30px auto 0;
    display: none;
    color: #f7f1ed;
}

.wrap-detailport p {
    font-size: 30px;
    font-weight: 700;
    color: #dd9d4c;
}

.line-detail {
    text-align: right;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 15px 0 0;
}

.item:hover img {
    transform: scale(1.1);
}

.item:hover .texts {
    transform: translate(0, -105%);

}

.item:hover .line-detail {
    width: 100%;
}

.item:hover span {
    display: block;
}

.navigationslide {
    position: absolute;
    z-index: 1;
    top: -50px;
    width: 10%;
    right: 0;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.navigationslide .prevslide {
    width: 20%;
    text-align: center;
    float: left;
    cursor: pointer;
}

.navigationslide .nextslide {
    width: 20%;
    text-align: center;
    float: right;
    cursor: pointer;
}

/*
* ----------------------------------------------------------------------------------------
* 07.SERVICE SECTION 
* ----------------------------------------------------------------------------------------
*/

.wrap-iineroffers {
    padding: 30px 50px 30px 50px;
    position: relative;
    border-radius: 10px;
}

.wrap-iineroffers span {
    font-size: 50px;
}

.wrap-iineroffers h3 {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond';
}

.wrap-iineroffers .bignum {
    position: absolute;
    right: 30px;
    font-size: 50px;
    color: rgba(8, 8, 8, 0.1);
    font-weight: 700;
}

.wrap-iineroffers .line-detail {
    text-align: right;
    height: 1px;
    width: 60px;
    background-color: rgba(8, 8, 8, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 15px 0 0;
}

.wrap-iineroffers p {
    line-height: 25px;
    color: rgba(26, 8, 0, 0.5);
}

.wrap-iineroffers:hover {
    background: #EFE5DC;
}

.wrap-iineroffers:hover .line-detail {
    width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* 08.GAP SECTION 
* ----------------------------------------------------------------------------------------
*/

#gap-wrap {
    position: relative;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

#gap-wrap:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(239, 229, 220, .8);
}

.video-button {
    font-size: 100px;
}

a.link-video>div {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    color: #1a0800;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

a.link-video div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    display: block;
    border: 3px solid #1a0800;
    z-index: 3;
    border-radius: 100%;
    animation: animationSignal1;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: 1;
    transform: scale(1);
    transition: all 0.3;
}

a.link-video div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    display: block;
    border: 5px solid #1a0800;
    ;
    border-radius: 100%;
    animation: animationSignal1;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
    z-index: 1;
    transform: scale(1);
    transition: all 0.3;
}

h3.video-text {
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    letter-spacing: 5px;
}

/*
* ----------------------------------------------------------------------------------------
* 08.GAP SECTION 
    - testimonial
* ----------------------------------------------------------------------------------------
*/
.wrap-testimonial {
    position: relative;
    background: #f6f1ed;
    padding: 60px 45px;
    margin-bottom: -90px;
}

.the-testi {
    position: relative;
    text-align: left;
    padding-top: 50px;
    padding: 50px 20px;
}

.the-testi h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
}

.the-testi span {
    font-size: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: rgba(26, 8, 0, 0.1);

}

.info-testi {
    padding: 0 20px;
}

.wrap-imguser {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}

.detail-user {
    text-align: right;
}

.detail-user h3 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 700;
}

.detail-user p {
    color: rgba(26, 8, 0, 0.5);
    font-size: 13px;
}


/*
* ----------------------------------------------------------------------------------------
* 09.NEWS SECTION 
* ----------------------------------------------------------------------------------------
*/

.img-news {
    overflow: hidden;
    height: 300px;
    z-index: 1;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.img-news:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom, transparent 0, rgba(8, 8, 8, .01) 2%, rgba(8, 8, 8, .90) 90%);
    height: 100%;
}

.img-news img {
    width: 100%;
}

.wrap-innernews {
    padding: 50px 50px 30px;
    background: #f6f1ed;
    position: relative;
    top: -50px;
    margin: 0 30px 0 30px;
    z-index: 1;
}

.wrap-innernews h3 {
    font-size: 30px;
    font-family: 'Cormorant Garamond';
}

.wrap-innernews a {
    color: #1a0800;
}

.wrap-innernews a:hover {
    text-decoration: none;
}

.wrap-innernews p {
    color: rgba(26, 8, 0, 0.5);
}

.wrap-innernews p.subcat {
    font-size: 13px;
    letter-spacing: 2px;
}

/*
* ----------------------------------------------------------------------------------------
* 10.CONTACT SECTION 
* ----------------------------------------------------------------------------------------
*/

.wrap-detailcontact {
    color: rgba(26, 8, 0, 0.5);
}

.wrap-detailcontact .li-sos li a {
    color: #1a0800;
}

.wrap-detailcontact .li-sos li a:hover {
    color: #dd9d4c;
}

.wrap-detailcontact .li-sos li:nth-last-child(4) {
    margin-left: 0;
}

.list-contact li {
    list-style: none;
    position: relative;
    padding: 0 0 30px 50px;
    display: block;
    font-size: 13px;
    color: rgba(26, 8, 0, 0.5);
}

.list-contact li p {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a0800;
}

.list-contact li span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 25px;
    color: #1a0800;
}


/*
* ----------------------------------------------------------------------------------------
* 11.FOOTER SECTION 
* ----------------------------------------------------------------------------------------
*/
.bottomfot {
    text-align: right;
    font-size: 13px;
    color: #1a0800;
}

.bottomfot p {
    color: rgba(26, 8, 0, 0.5);
}

.wrap-footimg {
    width: 50px;
}

.wrap-footimg img {
    filter: contrast(0.5);
    width: 100%;
}

.link-bottom {
    text-align: right;
}

.link-bottom li {

    display: inline-block;
    list-style: none;
    margin: 0 10px;
    font-size: 15px;
}

.link-bottom li a {
    color: #1a0800;
    display: block;
}

.mini-info h3 {
    font-size: 15px;
    color: rgba(26, 8, 0, 0.5);
}

.mini-info p {
    font-size: 15px;
    color: #1a0800;
}

/*
* ----------------------------------------------------------------------------------------
* 12.SCROLLTOP
* ----------------------------------------------------------------------------------------
*/

.scroll-top {
    z-index: 1;
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 23px;
    padding: 0;
    overflow: hidden;
    outline: 0;
    border: none;
    border-radius: 2px;
    border-radius: 2px;
    background: #dd9d4c;
    transition: all .3s;
}

.scroll-top .dropicon {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0;
    border-radius: 100%;
    color: #1a0800;
}

.show {
    width: 56px;
    height: 56px;
}

.scroll-top:hover {
    background: #DBAEA3;
}

.scroll-top:hover .dropicon {
    color: #f6f1ed;
}