* {
	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: 'Inter-Medium';
    font-size: 6.4rem;
    line-height: 72px;
}
h2 {
    color: #FFF;
    font-family: 'Inter-Medium';
    font-size: 4rem;
    line-height: normal;
}
h2 strong {
    color: #1C1C1C;
    font-weight: normal;
}
h3 {
    color: #FFF;
    font-family: 'Inter-Medium';
    font-size: 2.8rem;
    line-height: 30.8px;
}
h4 {
    font-size: 2.4rem;
    font-family: 'Inter-SemiBold';
    color: #1C1C1C;
    line-height: normal;
}
h5 {
    color: #FFF;
    font-family: 'Inter-Medium';
    font-size: 2rem;
    line-height: normal;
}
p {
    color: #1C1C1C;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
li {
    color: #1C1C1C;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    padding-left: 20px;
}
.common-btn {
	color: #FDFDFD;
    font-family: 'Inter-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    transition: all 0.2s ease;
    padding: 15px 20px;
    display: inline-block;
    border: 0;
    background: transparent;
}
.common-btn strong {
	position: relative;
    z-index: 1;
    font-weight: 500;
}
.common-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    border-radius: 28px;
    background-color: #BF192B;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.common-btn:hover {
    color: #fff;
}
.common-btn:hover::before {
    width: 100%;
}
.common-btn-dark {
    color: #000;
}
.common-btn-dark:hover {
    color: #fff;
}
.common-btn em {
    font-style: normal;
    color: #fff;
    position: relative;
    padding-top: 15px;
    padding-bottom: 16px;
}
.common-btn em::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    display: block;
    border-radius: 28px;
    background-color: #BF192B;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.common-arrow {
    height: 72px;
    width: 72px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #BF192B;
}
.common-arrow:hover img {
    filter: brightness(0) 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;
}

