* {
	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: #101010;
    font-size: 8rem;
    font-family: 'Inter-SemiBold';
    line-height: 88px;
}
h2 {
    color: #101010;
    font-size: 6.4rem;
    font-family: 'Inter-SemiBold';
    line-height: 72px; 
}
h3 {
    color: #101010;
    font-size: 4rem;
    font-family: 'Inter-Bold';
    line-height: 48px; 
}
h4 {
    color: #101010;
    font-size: 2.4rem;
    font-family: 'Inter-Medium';
    line-height: 32px; 
}
p {
    color: rgba(16, 16, 16, 0.50);
    font-size: 1.6rem;
    font-family: 'Inter-Regular';
    line-height: 24px;
    margin-bottom: 20px;
}
ul {
    margin-bottom: 20px;
    padding-left: 15px;
}
li{
    color: rgba(16, 16, 16, 0.80);
    font-size: 1.6rem;
    font-family: 'Inter-Regular';
    line-height: 24px;
    position: relative;
}
li::after {
    position: absolute;
    content: "";
    background-color: rgba(16, 16, 16, 0.80);
    left: -12px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
}
.common-btn {
    position: relative;
    color: #FFF;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
    display: inline-block;
    border-radius: 100px 0 0 100px;
    background-color: #0C2D4A;
    padding: 12px 50px;
    padding-right: 0;
    max-width: max-content;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    margin-right: 70px;
}
.common-btn strong {
    position: absolute;
    background-image: url(../images/arrow-btn.svg);
    background-color: #0C2D4A;
    background-position: center;
    background-repeat: no-repeat;
    background-position: 15px;
    background-size: 14px;
    border-radius: 0 100px 100px 0;
    width: 70px;
    height: 100%;
    top: 0;
    right: -70px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    color: #fff;
    background-color: #101010;
    border-radius: 100px;
    padding-left: 35px;
    padding-right: 35px;
}
.common-btn:hover strong {
    border-radius: 100px;
    background-color: #101010;
    animation: movearrow .5s;
    background-position: center;
    width: 50px;
    right: -50px;
}
@keyframes movearrow {
    10%{
        background-position-x: 50px;
    }
    20%{
        background-position-x: -150px;
    }
    100%{
        background-position-x: center;
    }
}
.border-btn{
    background-color: #fff;
    color: #0C2D4A;
    border: 1.5px solid #0C2D4A;
    border-right: 0;
}
.border-btn strong {
    background: #fff;
    background-image: url(../images/arrow-border.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-position: 15px;
    background-size: 14px;
    border: 1.5px solid #0C2D4A;
    border-left: 0px;
    height: 50px;
    top: -1px;
}
.border-btn:hover strong {
    background-image: url(../images/arrow-btn.svg);
}
.common-arrow {
    background-color: #FFFFFF;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 16, 16, 0.20);
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
    height: 18px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover{
    background-color: #0C2D4A;
    border-color: #0C2D4A;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.read-more-btn {
    position: relative;
    z-index: 1;
    border-radius: 100px;
    border: 1.5px solid #0C2D4A;
    font-family: 'Inter-Regular';
    padding: 12px 71px;
    padding-left: 45px;
    color: #0C2D4A;
    font-size: 1.6rem;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: inline-block;
}
.read-more-btn::after {
    position: absolute;
    content: "";
    background-image: url(../images/arrow-border.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 15px;
    width: 15px;
    height: 18px;
    right: 45px;
    top: 17px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.read-more-btn:hover {
    background-color: #0C2D4A;
    color: #fff;
}
.read-more-btn:hover::after{
    background-image: url(../images/arrow-btn.svg);
}