* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #FF2E2E;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

h1 {
    font-family: 'matricesemibold';
    font-size: 6.4rem;
    line-height: 72px; 
    color: #fff;
    text-transform: uppercase;
}
h2 {
    font-family: 'matricesemibold';
    font-size: 3.6rem;
    line-height: normal;
    color: #0D0D0D;
    text-transform: uppercase;
}
h3 {
    font-family: 'matricesemibold';
    font-size: 2.4rem;
    line-height: normal;
    color: #0D0D0D;
}
h4 {
    font-family: 'matricesemibold';
    color: #fff;
    font-size: 2rem;
    line-height: 28px; 
    text-transform: uppercase;
}
h5 {
    color: #0D0D0D;
    font-family: 'matricemedium';
    font-size: 1.4rem;
    line-height: 20px; 
}
h6 {

}
p {
    font-family: 'matriceregular';
    color: #0D0D0D;
    font-size: 1.6rem;
    line-height: 24px; 
}
ul {
    margin-bottom: 22px;
    list-style-type: none;
    padding-left: 0;
}
li {
    font-family: 'matriceregular';
    color: #0D0D0D;
    font-size: 1.6rem;
    line-height: 24px; 
    position: relative;
    padding-left: 37px;
}
li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url(../images/tick-li.svg);
    background-color: #FF2E2E;
    background-size: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.common_btn {
    position: relative;
    display: inline-block;
    font-family: 'matricemedium';
    font-size: 1.6rem;
    line-height: 24px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    padding:12px 16px 12px 9px;
    background-color: #FF2E2E;
    border-radius: 100px;
}
.common_btn:hover{
    color: #fff;
}
.common_btn:hover .plainText::after {
    transform:translate(150%, -150%);
}
.common_btn:hover .plainText::before {
    top: 7px;
    transform:translate(-100%, 100%)scale(1);
}
.common_btn b {
    font-weight: normal !important;
}
.plainText {
    color: transparent;
    display: flex;
    align-items: center;
    column-gap: 14px;
}
.plainText::after {
    content: "";
    background-image: url(../images/btn-arrw.svg);
    height: 11px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
    position: relative;
    top: -2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    filter: invert(1);
    -webkit-filter: invert(1);
}
.plainText::before {
    content: "";
    background-image: url(../images/btn-arrw.svg);
    height: 11px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
    position: absolute;
    top: 18px;
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transform:translate(-150%, 150%) scale(0) ;
    filter: invert(1);
    -webkit-filter: invert(1);
}
.split_top,
.split_btm {
    position: absolute;
    top: 0;
    left: 17px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    justify-content: start;
    align-items: center;
    pointer-events: none;
}
.split_top b,
.split_btm b {
   display: inline-block;
   transition: transform 0.4s ease, opacity 0.3s ease;
}
.split_top b {
    transform: translateY(0%);
    opacity: 1;
}
.split_btm b {
    transform: translateY(100%);
    opacity: 0;
}
.common_btn.common_btn_hovered .split_top b {
    transform: translateY(-100%);
    opacity: 0;
}
.common_btn.common_btn_hovered .split_btm b {
    transform: translateY(0%);
    opacity: 1;
}
.white_btn{
    background-color: #fff;
    color: #0D0D0D;
}
.white_btn .plainText::before,
.white_btn .plainText::after {
    filter: none;
}
.white_btn .split_top b,
.white_btn .split_btm b{
    color: #0D0D0D;
}
.trans_btn{
    background-color: transparent;
    color: #0D0D0D;
    border: 1px solid #0D0D0D;
}
.trans_btn .plainText::before,
.trans_btn .plainText::after {
    filter: none;
}
.trans_btn .split_top b,
.trans_btn .split_btm b{
    color: #0D0D0D;
}
.trans_btn:hover {
    background-color: #FF2E2E;
    border-color: #FF2E2E;
}
.trans_btn:hover .split_top b,
.trans_btn:hover .split_btm b{
    color: #fff;
}
.trans_btn:hover .plainText::before,
.trans_btn:hover .plainText::after {
    filter: brightness(0) invert(1);
}
.btnspace {
    width: 6px;
}
.common-arrow {
    height: 67px;
    min-width: 67px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 2;
} 
.common-arrow:hover {
    background-color: #FF2E2E;
    border-color: #FF2E2E;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.full-width{
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position:relative;
}
