* {
	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: 'LamaSans-MediumCondensed';
    font-size: 8rem;
    line-height: 88px;
    letter-spacing: 6.4px;
}
h2 {
    color: #FFF;
    font-family: 'LamaSans-MediumCondensed';
    font-size: 5.6rem;
    line-height: 64px;
}
h3 {
    color: #010101;
    font-family: 'LamaSans-SemiBoldCondensed';
    font-size: 4.8rem;
    line-height: 56px;
    letter-spacing: 3.84px;
}
h4 {
    color: #FFF;
    font-family: 'LamaSans-MediumCondensed';
    font-size: 3.2rem;
    line-height: 40px;
}
h5 {
    color: #FFF;
    font-family: 'LamaSans-MediumCondensed';
    font-size: 2.4rem;
    line-height: 40px;
    letter-spacing: 0.24px;
}
h5 strong {
    font-weight: normal;
    font-family: 'LamaSans-SemiBoldCondensed';
}
h6 {
    font-size: 1.6rem;
}
p {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 24px;
}
li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 15px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    height: 4px;
    width: 4px;
    background-size: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/li-icon.svg);
}
.common-btn {
    font-family: 'LamaSans-Regular';
    padding: 15px 40px 15px 60px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: inline-block;
    overflow: hidden;
    text-transform: none;
    position: relative;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(20, 20, 20, 0.10);
    backdrop-filter: blur(5.849999904632568px);
    letter-spacing: normal;
}
.common-btn:hover {
	color: #fff;
    border-color: rgba(1, 1, 1, 0.10);
    background: rgba(1, 1, 1, 0.10);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn strong {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 9px;
    width: 40px;
    height: 40px;
    content: "";
    background: linear-gradient(90deg,rgba(255, 237, 0, 1) 0%, rgba(255, 255, 255, 1) 90%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 100px;
}
.common-btn strong::before {
    content: "";
    height: 10px;
    width: 10px;
    background-image: url(../images/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 1;
    opacity: 0;
}
.common-btn strong::after {
    content: "";
    height: 10px;
    width: 10px;
    background-image: url(../images/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover strong::before {
    left: 50%;
    background-image: url(../images/btn-arrow.svg);
    opacity: 1;
}
.common-btn:hover strong::after {
    left: 83%;
    opacity: 0;
    background-image: url(../images/btn-arrow.svg);
}
.common-btn strong::before,
.common-btn strong::after {
    transition: none;
}

.common-btn.arrow-animate strong::before {
    animation: arrowIn .5s forwards;
}

.common-btn.arrow-animate strong::after {
    animation: arrowOut .5s forwards;
}

@keyframes arrowIn {
    from {
        left: 15%;
        opacity: 0;
    }
    to {
        left: 50%;
        opacity: 1;
    }
}

@keyframes arrowOut {
    from {
        left: 50%;
        opacity: 1;
    }
    to {
        left: 83%;
        opacity: 0;
    }
}
.grey-btn {
    color: #010101;
    border: 1px solid rgba(1, 1, 1, 0.10);
    background: rgba(1, 1, 1, 0.10);
}
.grey-btn:hover {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(20, 20, 20, 0.10);
    color: #fff;
}
.common-arrow {
    height: 88px;
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
    border-radius: 100px;
}
.common-arrow:hover {
    background: linear-gradient(90deg,rgba(255, 237, 0, 1) 0%, rgba(255, 255, 255, 1) 90%);
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
}
.common-arrow img {
    width: 13px;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

