* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #030304;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1c1c1c;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
ul {
	padding: 0;
	list-style-type: none;
	margin: 0px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
strong {
    font-weight: normal;
}
h1{
    font-size: 8rem;
    line-height: 88px;
    font-family: 'larken_demoextrabold';
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}
h2{
    font-size: 5rem;
    line-height: 88px;
    color: #fff;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'larken_demoextrabold';
}
h5{
    font-size: 2.4rem;
    line-height: 32px;
    color: #fff;
    letter-spacing: 1.2px;
    font-family: 'larken_demoextrabold';
}
p{
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.48px;
    /* font-family: 'elza_text_trialregular'; */
    color: #fff;
    font-family: 'Elza-Regular';
}
.common-button {
    font-family: 'Elza-Medium';
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.48px;
    display: inline-block;
    border-radius: 100px 0 0 100px;
    background: #fff;    
    color: #1C1C1C;
    padding: 16px 24px;
    padding-right: 0;
    max-width: max-content;
    line-height: normal;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    margin-right:50px;
    border: 0;
    
}
.common-button::after{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: transparent;
    height: 100%;
    width: calc(100% + 55px);
    border-radius: 100px;
}
.common-button strong{
    height:100%;
    width: 55px;
    background-color: #fff;
    background-image: url(../images/btn_arrow.svg);
    background-position: center ;
    background-repeat: no-repeat;
    background-size: 15px;
    top: 0;
    right: -54px;
    position: absolute;
    border-radius: 0 100px 100px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-button:hover{
    padding-right: 12px; 
    padding-left: 12px;
    background: #F7901E;
    backdrop-filter: blur(2px);
    border-radius: 100px;
    color: #fff;
}
.common-button:hover strong{
    border-radius: 100px;
    background-color: #F7901E;
    animation: movearrow .5s ;
    background-image: url(../images/btn_arrow-white.svg);
}
@keyframes movearrow {
    10%{
        background-position-x: 50px;
    }
    20%{
        background-position-x: -150px;
    }
    100%{
        background-position-x: center;
    }
}
.color_btn strong,
.color_btn{
    background-color: #F7901E;
    border-color: #F7901E;
    color: #fff;
}
.color_btn strong{
    background-image: url(../images/btn_arrow-white.svg);
}
.color_btn:hover strong,
.color_btn:hover{
    /* background-color: #FBFBFB;
    border-color: #FBFBFB; */
}
.common-arrow img{
	width: 18px;
}
.common-arrow::after{
    display: none;
}
.common-arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
    width: 66px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 1 !important;
}
.common-arrow:hover{
    background-color: #F7901E;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
    pointer-events: all;
    cursor: pointer;
}
.full-width {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
.common-background{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

