* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #302041;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 15px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    font-family: 'LamaSans-MediumCondensed';
    color: #FFF;
    font-size: 8rem;
    line-height: 96px;
    letter-spacing: 1.6px;
}
h2 {
    font-family: 'LamaSans-MediumCondensed';
    color: #1E2132;
    font-size: 4.8rem;
    line-height: 56px;
    letter-spacing: 0.96px;
}
h3 {
    font-family: 'LamaSans-RegularCondensed';
    color: #1E2132;
    font-size: 3.2rem;
    line-height: 40px;
}
h4 {
    font-family: 'LamaSans-RegularCondensed';
    color: #0D0D0D;
    font-size: 2.4rem;
    line-height: 32px;
    letter-spacing: 0.24px;
}
p, li {
    font-family: 'LamaSans-Regular';
    color: rgba(28, 28, 28, 0.70);
    font-size: 1.6rem;
    line-height: 24px; 
}
p {
    margin-bottom: 24px;
}
li {
    padding-left: 12px;
    position: relative;
    margin-bottom: 2px;
}
li::after {
    content: '';
    height: 3px;
    width: 3px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #011224;
    border-radius: 50px;
}
.common-btn {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    padding: 15px 38px;
    background-color: #302041;
    border: 1px solid #302041;
    border-radius: 100px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.common-btn em {
    display: block;
    font-style: normal;
    overflow: hidden;
    height: 24px;
    line-height: 24px;
    position: relative;
}
.common-btn strong {
    display: block;
    margin: 0;
    transform: translateY(0);
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
    position: relative;
    font-weight: normal;
}
.common-btn strong .word {
    display: inline-block;
    transform: translateY(0); 
}
.common-btn:hover strong {
    top: -24px;
}
.common-btn:hover {
    color: #0D0D0D;
    background-color: #F2F2F2;
    border-color: #F2F2F2; 
}
.border-btn {
    background-color: transparent;
    border-color: #121212;
    color: #121212; 
}
.border-btn:hover {
    color: #fff;
    background-color: #302041;
    border-color: #302041;
}
.white-border-btn {
    color: #fff;
    background-color: transparent;
    border-color: #fff; 
}
.white-border-btn:hover {
    color: #0D0D0D;
    background-color: #F2F2F2;
    border-color: #F2F2F2;
}
.read-more-btn {
    border: 0;
    padding: 0;
    background-color: transparent;
    font-family: 'LamaSans-Regular';
    color: #fff;
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    padding-right: 71px;
    text-align: left;
    position: relative;
    max-width: max-content;
}
.read-more-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 100px;
    background-image: url(../images/read-more-arw.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 17px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.read-more-btn:hover::after {
    background-color: #302041;
    border-color: #302041;
}
.common-arrow {
   height: 56px;
   width: 56px;
   background-color: #0D0D0D;
   border: 1px solid #0D0D0D;
   border-radius: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #302041;
    border-color: #302041;
}
.common-arrow img {
    width: 17px;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

