* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1B1B1B;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'Alexandria-Regular';
    font-size: 7rem;
    line-height: 80px;
    letter-spacing: 0.7px;
}
h2 {
    color: #1B1B1B;
    font-family: 'Alexandria-Regular';
    font-size: 3.6rem;
    line-height: normal;
    letter-spacing: 0.36px;
}
h3 {
    color: #fff;
    font-family: 'Alexandria-Medium';
    font-size: 2.4rem;
    line-height: 34px;
    letter-spacing: 0.24px;
}
h4 {
    color: #fff;
    font-family: 'Alexandria-Regular';
    font-size: 2rem;
    line-height: 32px;
}
h5 {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.8rem;
    line-height: 25px;
    letter-spacing: 0.18px;
}
h6 {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
p {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    margin-bottom: 12px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 12px;
}
li {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 21px;
}
li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    background-image: url(../images/list-star.svg);
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 17px;
    height: 17px;
}
.common-btn {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    background-color: #30B712;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 12px 20px;
    border: 1px solid #30B712;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    text-align: center;
}
.common-btn:hover {
    background-color: #121212;
    border-color: #fff;
    color: #fff;
}
.border-btn {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}
.border-btn:hover {
    border-color: #fff;
    background-color: #fff;
    color: #1B1B1B;
}
.dark-btn {
    border-color: #fff;
    background-color: #fff;
    color: #1B1B1B;
}
.dark-btn:hover {
    border-color: #1B1B1B;
    background-color: #1B1B1B;
    color: #fff;
}
.dark-border-btn {
    border-color: #121212;
    background-color: transparent;
    color: #121212;
}
.dark-border-btn:hover {
    border-color: #121212;
    background-color: #121212;
    color: #fff;
}
.white-border-btn {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}
.white-border-btn:hover {
    border-color: #30B712;
    background-color: #30B712;
    color: #fff;
}
.txt-btn {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 25px; 
    letter-spacing: 0.18px;
    text-decoration: underline;
    text-underline-position: under;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:hover {
    color: #30B712;
    text-decoration: underline;
}
.common-arrow {
    width: 98px;
    height: 98px;
    border-radius: 100%;
    border: 1px solid rgba(26, 36, 31, 0.20);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #1B1B1B;
    border-color: #1B1B1B;
}
.common-arrow:hover img{
    filter: brightness(1) invert(1);
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 15px;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

