* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #A35E3F;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'Livvic-SemiBold';
    font-size: 7rem;
    line-height: 80px;
}
h2 {
    color: #fff;
    font-family: 'Livvic-SemiBold';
    font-size: 4.8rem;
    line-height: 58px; 
}
h3 {
    color: #fff;
    font-family: 'Livvic-SemiBold';
    font-size: 3.6rem;
    line-height: 54px; 
}
h4 {
    color: #fff;
    font-family: 'Livvic-SemiBold';
    font-size: 3rem;
    line-height: 32px; 
}
h5 {
    color: #fff;
    font-family: 'Livvic-SemiBold';
    font-size: 2.4rem;
    line-height: 32px;
}
h6 {
    color: #fff;
    font-family: 'Livvic-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
p {
    color: #fff;
    font-family: 'Livvic-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 14px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 14px;
}
li {
    color: #fff;
    font-family: 'Livvic-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
}
li:last-child {
    margin-bottom: 0;
}
li::after {
    content: "";
    height: 14px;
    width: 14px;
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../images/list-icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
}
.txt-btn {
    color: #fff;
    font-family: 'Livvic-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    background-color: transparent;
    border: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:hover {
    color: rgba(255, 255, 255, 0.5);
}
.common-btn {
    font-family: 'Livvic-Medium';
    position: relative;
    font-size: 1.6rem;
    display: inline-block;
    border: 0;
    border-radius: 100px 0 0 100px;
    background: #fff;    
    color: #0F0F0F;
    padding: 14px 18px;
    padding-right: 0;
    max-width: max-content;
    line-height: normal;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    margin-right: 48px;
}
.common-btn::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: transparent;
    height: 100%;
    width: calc(100% + 48px);
    border-radius: 100px;
}
.common-btn strong {
    height:100%;
    width: 48px;
    background-color: #fff;
    background-image: url(../images/btn-arrow.svg);
    background-position: center ;
    background-repeat: no-repeat;
    background-size: 12px;
    top: 0;
    right: -48px;
    position: absolute;
    border-radius: 0 100px 100px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    padding-right: 18px; 
    padding-left: 18px;
    background-color: #7C3F28;
    color: #fff;
    border-radius: 100px;
}
.common-btn:hover strong {
    border-radius: 100px;
    background-color: #7C3F28;
    animation: movearrow .5s;
    background-image: url(../images/btn-arrow-white.svg);
}
@keyframes movearrow {
    10%{
        background-position-x: 50px;
    }
    20%{
        background-position-x: -150px;
    }
    100%{
        background-position-x: center;
    }
}
.border-btn {
    background-color: transparent;
    border: 1px solid #fff;
    padding-right: 18px;
    color: #fff;
    border-radius: 100px;
    margin-right: 0;
}
.border-btn strong {
    border-radius: 100%;
    right: 0;
    opacity: 0;
}
.border-btn:hover {
    border-color: #7C3F28;
}
.border-btn:hover strong {
    right: -48px;
    opacity: 1;
}
.common-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #A35E3F;
    border-color: #A35E3F;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

