* {
	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: 'EurostileLTProUnicode-Demi';
    font-size: 6.4rem;
    line-height: 72px;
    letter-spacing: 1.28px;
}
h2 {
    color: #001005;
    font-family: 'EurostileLTProUnicode-Demi';
    font-size: 4.8rem;
    line-height: 56px;
    letter-spacing: 0.96px;
}
h3 {
    color: #FFF;
    font-family: 'EurostileLTProUnicode-Demi';
    font-size: 3.2rem;
    line-height: 40px;
    letter-spacing: 0.64px;
}
h4 {
    color: #FFF;
    font-family: 'Poppins-Regular';
    font-size: 2.4rem;
    line-height: normal;
}
p {
    color: #FFF;
    font-family: 'Poppins-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 24px;
}
.common-btn {
    /* color: #fff; */
    color: #001005;
    font-family: 'Poppins-Regular';
    font-size: 1.6rem;
    font-style: normal;
    line-height: 24px; 
    padding: 11px 23px;
    padding-left: 45px;
    border-radius: 100px;
    background-color: #49d859;
    border: 1px solid #49d859;
    letter-spacing: 0.32px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/txt-btn-arrow-black.svg);
    background-size: 11px;
    width: 11px;
    height: 9px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #001005;
    border-color: #001005;
    color: #fff;
}
.common-btn:hover::after {
    background-image: url(../images/txt-btn-arrow.svg);
}
.border-btn {
    background-color: transparent;
    border-color: #49d859;
    color: #49d859;
}
.border-btn:hover {
    background-color: #49d859;
    /* color: #fff; */
    color: #001005;
    border-color: #49d859;
}
.border-btn::after {
    background-image: url(../images/txt-green-btn-arrow.svg);
}
.border-btn:hover::after {
    background-image: url(../images/txt-btn-arrow.svg);
    filter: brightness(0);
}
.common-arrow {
   height: 56px;
   width: 56px;
   border: 1px solid #49d859;
   background-color: #fff;
   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: #49d859;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

