* {
    outline: none !important;
}

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

a:hover {
    text-decoration: none;
    color: #FDBF03;
}

:focus {
    outline: none !important;
}

section {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h1 {
    color: #fff;
    font-family: 'Roboto-Bold';
    font-size: 6rem;
    line-height: 68px;
}

h2 {
    color: #fff;
    font-family: 'Roboto-Bold';
    font-size: 4.8rem;
    line-height: 56px;
}

h3 {
    color: #fff;
    font-family: 'Roboto-Bold';
    font-size: 3.2rem;
    line-height: 40px; 
}

h4 {
    color: #fff;
    font-family: 'InterTight-Regular';
    font-size: 2.4rem;
    line-height: 24px;
}

h6 {
    color: #fff;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: normal;
}

p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 15px;
}

ul {
    margin-bottom: 15px;
    padding-left: 22px;
}

.txt-btn {
    color: #fff;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    display: inline-block;
    padding-right: 25px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.txt-btn::after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    right: 5px;
    top: 52%;
    transform: translateY(-50%);
    background-image: url(../images/text-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.txt-btn:hover {
    color: #FDBF03;
}

.txt-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(85%) sepia(36%) saturate(3374%) hue-rotate(353deg) brightness(97%) contrast(105%);
}

.common-btn {
    color: #03151A;
    font-family: 'Roboto-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 56px 12px 24px;
    background-color: #FDBF03;
    overflow: hidden;
    align-items: center;
    border-radius: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    border: 0;
}

.common-btn::before,
.common-btn::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    left: -50px;
    top: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: url(../images/btn-arrow.svg);
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
}

.common-btn::after {
    right: 4px;
    left: auto;
}

.common-btn:hover {
    color: #03151A;
    padding-left: 56px;
    padding-right: 24px;
}

.common-btn:hover::after {
    right: -50px;
}

.common-btn:hover::before {
    left: 4px;
}

.common-arrow {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: rgba(18, 18, 18, 0.41);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(5.2px); */
    /* border: 1px solid rgba(255, 255, 255, 0.38); */
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.common-arrow img {
    width: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.common-arrow:hover {
    background-color: #FDBF03;
    border-color: #FDBF03;
}

.common-arrow:hover img {
    filter: brightness(0);
}

.common-arrow:after {
    display: none;
}

.common-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}