* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #ECC32C;
}
ul {
	padding: 0;
	list-style-type: none;
	margin: 0px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 6.4rem;
    line-height: normal;
}
h2{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 4.8rem;
    line-height: normal;
}
h3{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 3.2rem;
    line-height: normal;
}
h4{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 2.4rem;
    line-height: normal;  
}
h5{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 2rem;
    line-height: normal;
}
h6{
    color: #FFF;
    font-family: 'Barlow-Condensed-Regular';
    font-size: 1.6rem;
    line-height: normal;
}
p{
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Barlow-Condensed-Regular';
    font-size: 1.6rem;
    line-height: normal;
}
li {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Barlow-Condensed-Regular';
    font-size: 1.6rem;
    line-height: normal;
    position: relative;
    padding-left: 17px;
}
li::after {
    position: absolute;
    content: "";
    background-color: #ECC32C;
    width: 7px;
    height: 7px;
    border-radius: 20px;
    left: 0;
    top: 7px;
}
.common-btn {
    color: #19191A;
    font-family: 'Barlow-Condensed-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 18px;
    display: inline-block;
    border: 1px solid #ECC32C;
	border-radius: 0px;
    background: #ECC32C;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    color: #FFF;
    background: #19191A;
    border-color: #19191A;
}
.white-btn{
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
}
.white-btn:hover{
    border: 1px solid #ECC32C;
    background: #ECC32C; 
    color: #19191A;
}
.common-arrow {
    background-color: rgba(255, 255, 255, 0.70);
    width: 41px;
    height: 41px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover{
    background-color: #ECC32C;
}
.common-arrow svg{
	display: none;
}
.common-arrow img {
	width: 12px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}