/*======================

	Fonts

========================*/

@import url('https://fonts.googleapis.com/css?family=Vidaloka&amp;display=swap');

.vidaloka{

    font-family: 'Vidaloka', serif;

}

h1,
h2,
h3,
h4,
h5,
h6{

	font-family: 'Vidaloka', serif;

}

.main-title{

	transform: scale(1.5);

}

.gradient-text{

	background: linear-gradient(to right, #C6FFDD, #FBD786, #f7797d);
	background-clip: text;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-ms-background-clip: text;
	-o-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	-ms-text-fill-color: transparent;
	-o-text-fill-color: transparent;

}

.text-gold{

	color: #B7835C;

}


.text-gray-regular{

    color: #aaa

}

/*======================

	Button

========================*/

.btn-gold{

    background: #B7835C!important;
    border-color: #B7835C!important;
    color: #000

}

.btn-gold:hover,
.btn-gold:focus{

    background: transparent !important;
    color: #444444 !important;

}


.btn-transparent-gold{

    background: transparent !important;
    border-color: #B7835C !important;
    color: #B7835C;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;

}

.btn-transparent-gold:hover,
.btn-transparent-gold:focus{

    background: transparent !important;
    border-color: #ccc !important;
    color: #B7835C;
	transform: translateY(-4px);
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);

}


.btn{

    width: auto;
    font-weight: 400;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
	display: inline-block;
    line-height: inherit;
	letter-spacing: 5px;
	word-spacing: 3px;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid transparent;
	font-family: 'Roboto', serif;
	

}


/*======================

	Return to Top

========================*/

#return-to-top{

	position: fixed;
	bottom: 40px;
	right: 65px;
	background: #B7835C;
	z-index: 999;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	line-height: 53px;
	border: 2px solid #fff;
	text-align: center;
	display: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

}


#return-to-top:hover{

	opacity: 0.6;
	transform: translateY(-4px);
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);


}


/*======================

	Navigation

========================*/


.navbar-dark .uk-navbar-container:not(.uk-navbar-transparent){

	background: #111;
	opacity: 0.96;

}



/*======================

	Background & Border

========================*/

.border-color-gold{

	border-color: #B7835C;

}

.bg-gold{

	background: #B7835C;

}

/*======================

	Special Link Style

========================*/

.special-link a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	text-decoration: none;
}

.special-link a:hover,
.special-link a:focus {
	outline: none;
}

.link-style-1 {
	position: relative;
	z-index: 1;
}

.link-style-1 a {
	padding: 0 5px;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.link-style-1 a::before,
.link-style-1 a::after {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	height: 2px;
	margin-top: -1px;
	background: #B7835C;
	content: '';
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	pointer-events: none;
}

.link-style-1 a::before {
	-webkit-transform: translateY(-20px);
	-moz-transform: translateY(-20px);
	transform: translateY(-20px);
}

.link-style-1 a::after {
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	transform: translateY(20px);
}

.link-style-1 a:hover,
.link-style-1 a:focus {
	color: #fff;
}

.link-style-1 a:hover::before,
.link-style-1 a:hover::after,
.link-style-1 a:focus::before,
.link-style-1 a:focus::after {
	opacity: 0.7;
}

.link-style-1 a:hover::before,
.link-style-1 a:focus::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.link-style-1 a:hover::after,
.link-style-1 a:focus::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


::-moz-selection{

    color: #585858;
    background: #9a9a9a;

}

::-webkit-input-placeholder{

    color: #000;
    text-overflow: ellipsis;

}

::-moz-placeholder{

    color: #000;
    text-overflow: ellipsis;
    opacity: 1;

}

:-ms-input-placeholder{

    color: #000;
    text-overflow: ellipsis;
    opacity: 1;

}


/*======================

	Responsive

========================*/

@media all and (max-width: 767px) {

	.main-title{

		transform: scale(1);

	}
	
	
	#return-to-top{
	
		right: 40px;
	
	}

}