* {
	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: 'ZalandoSansSemiExpanded-Medium';
    font-size: 4.8rem;
    line-height: 62.4px;
    letter-spacing: 0.96px;
}
h2 {
    color: #FFF;
    font-family: 'ZalandoSansSemiExpanded-Medium';
    font-size: 4.8rem;
    line-height: 62.4px;
    letter-spacing: 0.96px;
}
h3 {
    color: #FFF;
    font-family: 'ZalandoSansSemiExpanded-Medium';
    font-size: 3rem;
    line-height: 39px;
    letter-spacing: 0.6px;
}
h4 {
    color: #181818;
    font-family: 'ZalandoSansSemiExpanded-Medium';
    font-size: 2.4rem;
    line-height: 31.2px;
    letter-spacing: 0.48px;
}
h5 {
    color: #FFF;
    font-family: 'ZalandoSansSemiExpanded-Medium';
    font-size: 2rem;
    line-height: 22px;
}
p {
    color: #FFF;
    font-family: 'ZalandoSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 24px;
}
li {
    color: #1A241F;
    font-family: 'ZalandoSansSemiExpanded-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
}
li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    /* transform: translateY(-50%); */
    height: 10px;
    width: 10px;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/plus-icon.svg);
}

.common-btn {
    color: #FFF;
    font-family: 'ZalandoSans-Medium';
    font-size: 1.6rem;
    line-height: 24px; 
    padding: 11px 40px 11px 18px;
    border-radius: 100px;
    letter-spacing: 0.8px;
    background-color: #181818;
    border: 1px solid #0180F6;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
}
.common-btn::after {
    position: absolute;
    content: '';
    right: 18px;
    top: 16px;
    height: 12px;
    width: 12px;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/plus-icon-white.svg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #0180F6;
    color: #fff;
}
.common-btn:hover::after {
    transform: rotate(90deg);
}
.common-arrow {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 60px;
}
.common-arrow:hover {
    background-color: #0180F6;
    border-color: #0180F6;
}
.common-arrow img {
    width: 18px;
}
.common-arrow:after {
	display: none;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.sec-mark {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
}
