* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #F9E26A;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'LibreFranklin-Medium';
    font-size: 5.8rem;
    line-height: 72px;
    text-transform: uppercase;  
}
h1 strong {
    font-family: 'LibreFranklin-Bold';
    font-weight: normal;
}
h2 strong{
    font-family: 'LibreFranklin-Bold';
    font-weight: normal;
}
h2 {
    color: #fff;
    font-family: 'LibreFranklin-Medium';
    font-size: 4.8rem;
    line-height: normal;
    line-height: 56px;
    text-transform: uppercase;
}
h3 {
    color: #fff;
    font-family: 'LibreFranklin-SemiBold';
    font-size: 3rem;
    line-height: 42px;
    letter-spacing: 0.6px;
}
h4 {
    color: #fff;
    font-family: 'LibreFranklin-Bold';
    font-size: 3.2rem;
    line-height: 40px;
    letter-spacing: 0.64px;
}
h5 {
    color: #fff;
    font-family: 'LibreFranklin-Bold';
    font-size: 1.8rem;
    line-height: 25px;
    letter-spacing: 0.36px;
}
h6 {
    color: #A8A8A8;
    font-family: 'Montserrat-SemiBold';
    font-size: 1.6rem;
    line-height: normal;
}
p {
    color: #fff;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    margin-bottom: 27px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
li {
    color: #fff;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 28px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 15px;
}
li::after {
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #222020;
    border-radius: 100%;
}
.common-btn {
    color: #222124;
    font-family: 'Montserrat-SemiBold';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 20px;
    border-radius: 100px;
    background-color: #F9E26A;
    border: 1px solid #F9E26A;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.with-icon {
    padding-left: 42px;
    position: relative;
}
.with-icon::after {
    content: "";
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    background-image: url(../images/btn-car.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    position: absolute;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    filter: brightness(1) invert(1);
}
.common-btn:hover {
    color: #222124;
    background-color: #FBF88D;
    border-color: #FBF88D;
}
.border-btn {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.60);
    color: rgba(255, 255, 255, 0.60);
}
.border-btn.with-icon::after {
    opacity: 0.6;
}
.border-btn:hover {
    background-color: #F9E26A;
    border-color: #F9E26A;
}
.border-btn.with-icon:hover::after {
    opacity: 1;
}
.txt-btn {
    color: #fff;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: normal;
    position: relative;
    padding-right: 27px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.txt-btn:after {
    content: "";
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-image: url(../images/txt-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    position: absolute;
    /* filter: brightness(10);
    -webkit-filter: brightness(10); */
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}
.txt-btn:hover {
    color: #F9E26A;
}
.txt-btn:hover::after {
    /* filter: brightness(1);
    -webkit-filter: brightness(1); */
    opacity: 1;
    filter: none;
}
.box-btn {
    width: 76px;
    height: 76px;
    background-color: #F9E26A;
    display: inline-block;
    position: relative;
    border: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.box-btn::after {
    content: "";
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-image: url(../images/box-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    position: absolute;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    filter: brightness(1) invert(1);
}
.box-btn:hover {
    background-color: #FBF88D;
}
.common-arrow {
    height: 58px;
    width: 58px;
    border: 2px solid #fff;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #fff;
}
.common-arrow:hover img {
    filter: brightness(0);
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 11px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

