* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1c1c1c;
}
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: 'AcariSans-Bold';
    font-size: 7.2rem;
    line-height: 80px;
}
h2 {
    color: #010101;
    font-family: 'AcariSans-Bold';
    font-size: 6.4rem;
    line-height: normal;
}
h4 {
    color: #FFF;
    font-family: 'AcariSans-Bold';
    font-size: 2.4rem;
    line-height: 32px;
}
p {
    color: rgba(1, 1, 1, 0.70);
    font-family: 'AcariSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 20px;
}
li {
    color: rgba(1, 1, 1, 0.70);
    font-family: 'AcariSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 20px;
}
li::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: rgba(1, 1, 1, 0.70);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 100%;
}
.common-btn {
    font-family: 'SegoeUI';
    color: #010101;
    font-size: 1.6rem;
    padding: 12px 90px 12px 42px;
    border-radius: 100px;
    background-color: #F7E7CE;
    border: 1px solid #F7E7CE;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
}
.common-btn::after {
    position: absolute;
    top: 40%;
    transform: translateX(-50%);
    right: 13%;
    content: "";
    background-image: url(../images/btn-arrow.svg);
    height: 12px;
    width: 18px;
    background-size: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.common-btn:hover {
    background-color: #010101;
    border-color: #010101;
    color: #F7E7CE;
}
.common-btn:hover::after {
    filter: brightness(1);
    -webkit-filter: brightness(1);
}
.black-btn {
    background-color: #010101;
    border-color: #010101;
    color: #fff;
}
.black-btn::after {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.black-btn:hover {
    background-color: #F7E7CE;
    border-color: #F7E7CE;
    color: #010101;
}
.black-btn:hover::after {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.border-btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.border-btn:hover {
    background-color: #F7E7CE;
    border-color: #F7E7CE;
    color: #010101;
}
.border-btn::after {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.border-btn:hover::after {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.common-arrow {
   height: 86px;
   width: 86px;
   background-color: #010101;
   border: 1px solid #010101;
   border-radius: 100px;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #F7E7CE;
    border-color: #F7E7CE;
}
.common-arrow:after {
    display: none;
}
.common-arrow img{
    width: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    filter: brightness(0) invert(1);
}
.common-arrow:hover img {
    filter: none;
}
.common-arrow:after{
    display: none;
}
.common-arrow img{
	width: 15px;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

