.btn {
    display: inline-block;
    padding: 13px 20px;
    color: #000;
    text-decoration: none;
    position: relative;
    background-color: #d0b07f;
    border: none;
	border-radius:5px;
    font-size: 16px;
	font-family: MainBody, calibri, Tahoma, Geneva, sans-serif;
	font-weight:bold;
    letter-spacing: 0.2em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	color:#000;
    left: 0; 
    width: 100%;
    background-color: #d0b07f;
    z-index: 1;
    opacity: 0;
    transition:opacity 0s linear 0.2s;
}

.btn::after {
	background-color: #c0a377;
	color:#fff;
}

.btn .btn-inner {
    position: relative;
    z-index: 2;
	color:#fff;
}
.btn .btn-inner:hover {
    position: relative;
    z-index: 2;
	color:#fff;
}

.btn:hover {
    color: #fff;
	background-color: #c0a377;
    transition: color 0.1s linear 0s;
	opacity:1;
	border-color:#c0a377;
}

.btn:hover::before {
    top: 0;
    opacity: 1;
	background-color: #c0a377;
    transition: opacity 0s linear 0s;
}

.btn:hover::after {
    border: #c0a377;
	background-color: #c0a377;
    transition: border 0.1s linear 0s;
}

.slideshow .slide .btn {
    margin: 15px 0 0;
    border-color: #fff;
}

.slideshow .slide .btn::before {
    background: #fff;
}

.slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item+.page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(208, 176, 127, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: #d0b07f;
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: #d0b07f;
}

.slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 10px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
}

.slideshow .arrows .prev {
    left: 30px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 30px;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #d0b07f;
    transition: left 0.2s ease;
}