* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #DBE7F5;
}
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-family: 'bankgothicbold';
    font-size: 8rem;
    line-height: normal;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    color: #fff;
}
h2 {
    font-family: 'bankgothicbold';
    font-size: 4rem;
    color: #090A0E;
    line-height: 48px;
    letter-spacing: -2.4px;
    text-transform: uppercase;			
}
h2 strong {
    font-weight: normal;
    color: #EAEFF5;
}
h3 {
    color: #23252B;
    font-family: 'NotoSans-Bold';
    font-size: 2.4rem;
    line-height: normal;
    letter-spacing: -1.44px;
}
h5 {
    color: #090A0E;
    font-family: 'NotoSans-Bold';
    font-size: 1.8rem;
    line-height: normal;  
}
p {
    font-family: 'noto_sansregular';
    color: #090A0E;
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 10px;
}
li {
    font-family: 'noto_sansregular';
    color: #090A0E;
    font-size: 1.6rem;
    line-height: normal;
    position: relative;
    padding-left: 20px;
    list-style-type: none;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background-image: url(../images/bullet.svg);
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
    height: 8px;
    width: 8px;
}
.common-btn {
    font-family: 'noto_sansregular';
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    position: relative;
    line-height: normal;
    display: inline-block;
    border: 1px solid #041790;
    border-radius: 8px;
    padding: 12px 24px;
    background-color: #041790;
}
.common-btn strong {
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.common-btn::before{
    background-color: #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0%;
    transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.common-btn:hover {
    color: #041790;
    border-color: #fff;
    background-color: #fff;
}
.common-btn:hover::before{
    height: 500%;
    width: calc(100% + 50%);
}
.border-btn {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}
.border-btn::before{
    background-color: #041790;
}
.border-btn:hover {
    color: #fff;
    border-color: #041790;
    background-color: #041790;
}
.common-arrow {
    border-radius: 50px;
    border: 1px solid #fff;
    background: #fff;
    height: 70px;
    width: 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow img {
    filter: brightness(100) invert(1);
}
.common-arrow:hover {
    background: #041790;
    border-color: #041790;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 11px;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

