* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
    color: #fff;
}
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{
    font-size: 6.4rem;
    line-height: 72px;
    font-family: 'Inter-Bold';
    color: #FFF;
}
h2{
    font-size: 4.8rem;
    line-height: 56px;
    font-family: 'Inter-Bold';
    color: #FFF;
}
h3{
    font-size: 3.2rem;
    line-height: 48px; 
    font-family: 'Inter-SemiBold';
}
h4{
    font-size: 2.4rem;
    line-height: 32px;
    font-family: 'Inter-SemiBold';
    color: #fff;
}
p{
    font-size: 1.6rem;
    font-family: 'Inter-Regular';
    line-height: 24px;
    color: #FFF;
    margin-bottom: 24px;
}
strong{
    font-family: 'Inter-MediumItalic';
    font-weight: normal;
}
li {
    padding-left: 19px;
    position: relative;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
/* li::after {
    content: '';
    height: 6px;
    width: 6px;
    position: absolute;
    top: 7px;
    left: 0;
    background-color: #10183C;
    border-radius: 100px;
} */

.common-btn {
    font-family: 'Inter-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 57px 12px 24px;
    border-radius: 100px;
    color: #10183C;
    background-color: rgba(16, 24, 60, 0.20);
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    border: 1px solid transparent;
}
.common-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    width: 40px;
    height: 40px;
    background-image: url(../images/btn-arw.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-color: #3733FF;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #3733FF;
}
.common-btn:hover {
	color: #FFF;
    background-color: #3733FF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover::after{
    background-color: #fff;
    background-image: url(../images/btn-arw-blue.svg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.blue-btn{
    color: #FFF;
    background-color: #3733FF;
}
.blue-btn::after{
    background-color: #fff;
    background-image: url(../images/btn-arw-blue.svg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.blue-btn:hover{
    color: #10183C;
    background-color: rgba(16, 24, 60, 0.2);
}
.blue-btn:hover::after{
    background-color: #3733FF;
    background-image: url(../images/btn-arw.svg);
}
.text-btn{
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    color: #FFF;
    background-color: transparent;
    text-align: left;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
}
.text-btn::after{
    content: '';
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    right: 20%;
    width: 100%;
    height: 14px;
    background-image: url(../images/btn-arw.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-position: center center;
    background-repeat: no-repeat;
}
.glass-filter-btn{
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: transparent;
    color: #FFF;
}
.common-arrow {
   height: 48px;
   width: 48px;
   background-color: #10183C;
   border: 1px solid #10183C;
   border-radius: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #3733FF;
    border-color: #3733FF;
}
.common-arrow img {
    width: 14px;
}
.common-arrow svg {
	display: none;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap{
    padding-left: 14px;
    padding-right: 14px;
}

