* {
	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: #FAF3E6;
    font-family: 'Cinzel-Bold';
    font-size: 8rem;
    line-height: 96px;
    text-transform: uppercase;
}
h2 {
    color: #354323;
    font-family: 'Cinzel-Bold';
    font-size: 4.8rem;
    line-height: 60px;
    text-transform: uppercase;
}
h3 {
    color: #FFF;
    font-family: 'Cinzel-Bold';
    font-size: 2.4rem;
    line-height: normal;
    text-transform: uppercase;
}
h4 {
    color: #354323;
    font-family: 'Cinzel-Bold';
    font-size: 2rem;
    line-height: normal;
}
p {
    color: rgba(0, 0, 0, 0.70);
    font-family: 'open_sansregular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 25px;
}
ul {
    margin-bottom: 22px;
}
li {
    color: #374221;
    font-family: 'open_sansregular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.common-btn {
    font-family: 'OpenSans-SemiBold';
    font-size: 1.6rem;
    color: #FAF3E6;
    overflow: hidden;
    position: relative;
    line-height: 24px; 
    letter-spacing: normal;
    display: inline-block;
    border: 1px solid #354323;
    background-color: #354323;
    border-radius: 10px;
    padding: 11px 18px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #4B5E33;
    border-color: #4B5E33;
    color: #FAF3E6;
}
.white-btn {
    background-color: #FAF3E6;
    border-color: #FAF3E6;
    color: #374221;
}
.white-btn:hover {
    background-color: #374221;
    border-color: #374221;
    color: #FAF3E6;
}
.border-btn {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.10);
    color: #FAF3E6;
}
.common-arrow {
    width: 66px;
    height: 66px;
    border-radius: 100%;
    border: 1px solid #354323;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #354323;
}
.common-arrow:hover img {
    filter: brightness(1)invert(1);
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 16px;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding-left: 7px;
    padding-right: 7px;
}
.bouncing {
    -webkit-animation: bounce 2.5s infinite ease-in-out;
    -o-animation: bounce 2.5s infinite ease-in-out;
    -ms-animation: bounce 2.5s infinite ease-in-out; 
    -moz-animation: bounce 2.5s infinite ease-in-out; 
    animation: bounce 2.5s infinite ease-in-out;
}
@keyframes bounce {
    0% { transform: translateY(-3px)  }
    50% { transform: translateY(6px) }
    100% { transform: translateY(-3px) }
}
