* {
	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;
    margin-bottom: 20px;
    padding-left: 15px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1{
    color: #FFF;
    font-family: 'VolvoNovum-Medium';
    font-size: 6.4rem;
    line-height: 70px;
    letter-spacing: 1.28px;  
}
h2{
    color: #121212;
    font-family: 'VolvoNovum-Medium';
    font-size: 4.8rem;
    line-height: 54px;
    letter-spacing: 0.96px; 
}
h4{
    color: #121212;
    font-family: 'VolvoNovum-Medium';
    font-size: 2.4rem;
    line-height: 30px;
}
h5{
    color: #121212;
    font-family: 'VolvoNovum-Medium';
    font-size: 1.8rem;
    line-height: normal;
}
p{
    color: #121212;
    font-family: 'VolvoNovum-Light';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
li {
    color: #121212;
    font-family: 'VolvoNovum-Light';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 14px;
}
li::after {
    position: absolute;
    content: "";
    background-image: url(../images/li-icon.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 16px;
    left: -12px;
    top: 8px;
    width: 16px;
    height: 10px;
}
.common-btn {
    font-family: 'VolvoNovum-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    border:1px solid #004274;
    background: #004274;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
	color: #fff;
    background: #121212;
    border-color: #121212;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.border-btn{
    background-color: transparent;
    border:1px solid #fff; 
}
.border-btn:hover{
    border:1px solid #004274;
    background: #004274;
    color: #fff;
}
.read-more-btn {
    color: #121212;
    font-family: 'VolvoNovum-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding-left: 26px;
}
.read-more-btn::after {
    position: absolute;
    content: "";
    background-image: url(../images/read-more-btn-arrow.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    left: 0;
    top: 52%;
    width: 20px;
    height: 10px;
    transform: translateY(-50%);
}
.read-more-btn:hover{
    color: #004274;
}
.read-more-btn:hover::after{
    filter: brightness(0) saturate(100%) invert(14%) sepia(33%) saturate(7492%) hue-rotate(191deg) brightness(94%) contrast(101%);
}
.common-arrow {
    background-color: transparent;
    border: 1px solid #004274;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:after {
    display: none;
}
.common-arrow img {
    width: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover{
    background-color: #004274;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.header-line-doted span:first-child {
    position: absolute;
    content: "";
    background-image: url(../images/header-line-dot.png);
    background-repeat: repeat-y;
    background-position: center;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.header-line-doted span:last-child {
    position: absolute;
    content: "";
    background-image: url(../images/header-line-dot.png);
    background-repeat: repeat-y;
    background-position: center;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}
.common-wrap{
    padding: 0px 48px;
}