* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #121212;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #E1AB02;
}
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: 'Lexend-Medium';
    font-size: 8rem;
    line-height: normal;
}
h2 {
    color: #121212;
    font-family: 'Lexend-Medium';
    font-size: 4.8rem;
    line-height: normal;
}
h3 {
    color: #121212;
    font-family: 'Lexend-Medium';
    font-size: 3.4rem;
    line-height: normal;
}
h4 {
    color: #121212;
    font-family: 'Lexend-Regular';
    font-size: 2.4rem;
    line-height: normal;
    letter-spacing: 0.24px;
}
h5 {
    color: rgba(47, 47, 47, 0.70);
    font-family: 'Lexend-Regular';
    font-size: 2rem;
    line-height: 20px; 
}
h6 {
    color: #121212;
    font-family: 'Lexend-Light';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
p {
    color: #121212;
    font-family: 'Lexend-Light';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    margin-bottom: 22px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 22px;
}
li {
    color: #121212;
    font-family: 'Lexend-Light';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 27px;
}
li::after {
    content: "";
    height: 21px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url(../images/list-icon.svg);
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: center center;
}
.common-btn {
    color: #121212;
    font-family: 'Lexend-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    position: relative;
    padding: 12px 18px;
    display: inline-block;
    border: 0;
    background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn strong {
    font-weight: normal;
    position: relative;
    padding-right: 25px;
}
.common-btn strong::after {
    content: "";
    height: 14px;
    width: 14px;
    background-image: url(../images/btn-arrow.svg);
    background-size: 14px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.common-btn::after, .common-btn::before {
    content: "";
    position: absolute;
    bottom: -0.0625em;
    left: 0;
    width: 100%;
    height: 0.0625em;
    background-color: #121212;
    transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
}
.common-btn::before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
    transition-delay: 0.3s;
}
.common-btn::after {
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
    transition-delay: 0s;
}
.common-btn:hover {
    color: #121212;
}
.common-btn:hover::before {
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
    transition-delay: 0s;
}
.common-btn:hover::after {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
    transition-delay: 0.3s;
}
.white-btn {
    color: #fff;
}
.white-btn::after, .white-btn::before {
    background-color: #fff;
}
.white-btn:hover {
    color: #fff;
}
.white-btn strong::after {
    filter: brightness(0) invert(1);
}
.common-arrow {
    height: 46px;
    width: 46px;
    border: 1px solid rgba(18, 18, 18, 0.5);
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow img {
    width: 17px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #E1AB02;
    border-color: #E1AB02;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding-left: 30px;
    padding-right: 30px;
}
.common-pagination {
    opacity: 1;
    position: relative;
    bottom: 0;
}
.common-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: rgba(18, 18, 18, 0.20);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-pagination .swiper-pagination-bullet-active {
    background: #FCC000;
    width: 40px;
    border-radius: 10px;
}