@font-face {
    font-family: 'LearningCurve';
    src: url("../fonts/LearningCurve.eot?#iefix") format("embedded-opentype");
    src: url('../fonts/LearningCurve.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Muli, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: #818491;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    font-family: Muli, sans-serif;
}

.has-submenu .navbar-submenu {
    display: none;
    position: absolute;
    list-style-type: none;
    padding: 0;
}

.has-submenu:hover .navbar-submenu {
    display: block;
}

.hero--noimage:after{
    content: ''!important;
    display: none!important;
}

.main-container,
footer{
    padding: 3.2%
}

.services-row{
    margin-top: -20%;
    padding-top: 20%;
}

.portfolio-wrapper{
    background: #e3e3e3;
}

.portfolio-item{
    overflow: hidden;
    border: 0;
    padding: 0;
    transform: scale(1);
    transition: transform .3s;
}

.portfolio-item:hover{
    transform: scale(0.95)
}

.portfolio-item img{
    transform: scale(1);
    transition: transform .3s;
}

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

.portfolio-item .portfolio-title{
    opacity: 0;
    transition: opacity .2s ease-in-out
}

.portfolio-item:hover .portfolio-title{
    opacity: 1;
}

.style-item{
    overflow: hidden;
}

.style-item img{
    transform: scale(1.2);
    transition: transform .8s;
}

.style-item:hover img {
    transform: scale(1.2) translateX(20px)
}

.style-item .style-title{
    bottom: 50px;
    width: 75%;
    left: -400px;
    transition: left .8s;
}

.style-item:hover .style-title{
    left: 0;
}

.blog-item{
    overflow: hidden;
}

.blog-date{
    top: 30px;
    background: #fff;
    padding: 0 15px;
}

.publii-counter{
    font-size: 60px;
    color: #dedee1;
}

.text-secondary{
    color: #c78665!important;
}

.font-cormorant-italic{
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
}

.fs-21{
    font-size: 21px;
}

.btn-link {
    position: relative; /* biar pseudo-element bisa pakai positioning relatif ke link */
    color: #000;
    text-decoration: none; /* jangan pakai underline bawaan */
    font-family: Cormorant,serif;
    font-style: italic;
    font-size: 19px;
}

.btn-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* posisikan di bawah text */
    width: 20%;
    height: 1px;
    transform: translate(-50%);
    background-color: #000;
    transition: width 0.3s ease;
}

.btn-link:hover::after {
    width: 95%;
}

.footer__bttop{
    opacity: 0;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: transparent;
    border: 1px solid #c78665;
    padding: 5px;
    color: #c78665;
    width: 32px;
    height: 32px;
    transition: opacity .3s ease;
}

.footer__bttop.is-visible{
    opacity: 1;
}