* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #2F2F2F;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #0070BA;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'Teko-Medium';
    font-size: 8rem;
    line-height: 72px;
    letter-spacing: 0.8px;
}
h2 {
    color: #2F2F2F;
    font-family: 'Teko-Medium';
    font-size: 4.4rem;
    line-height: 62px;
    letter-spacing: 0.54px;
}
h3 {
    color: #2F2F2F;
    font-family: 'Teko-Regular';
    font-size: 3rem;
    line-height: 30px;
    letter-spacing: 0.3px;
}
h6 {
    color: #2F2F2F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
h6 strong {
    font-family: 'LamaSans-SemiBold';
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    position: relative;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
}
h6 strong::before {
    content: '';
    height: 2px;
    width: 22px;
    margin-right: 9px;
    background-color: #0070BA;
    display: inline-block;
}
p {
    color: #2F2F2F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 20px;
}
li {
    color: #2F2F2F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
li::before {
    content: '';
    height: 13px;
    width: 13px;
    margin-right: 12px;
    background-image: url(../images/list-mark.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px;
    display: inline-block;
    position: relative;
    top: 1px;
}
.common-btn {
    color: #2F2F2F;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 20px;
    border-radius: 5px;
    border: 1px solid #2F2F2F;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
}
.fill-btn {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
}
.fill-btn:hover {
    background-color: #0b4e7a;
    border-color: #0b4e7a;
    color: #fff;
}
.white-border-btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.white-border-btn:hover {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
}
.white-btn {
    background-color: #fff;
    border-color: #fff;
    color: #2F2F2F;
}
.white-btn:hover {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
}
.with-icon {
    display: inline-flex;
    align-items: center;
}
.with-icon::after {
    content: '';
    height: 13px;
    width: 13px;
    background-image: url(../images/btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 13px;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.with-icon:hover::after {
    filter: brightness(0) invert(1);
}
.txt-btn {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
}
.txt-btn::after {
    content: '';
    height: 13px;
    width: 13px;
    background-image: url(../images/txt-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 13px;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.txt-btn:hover {
    color: #fff;
}
.txt-btn:hover::after {
    margin-left: 11px;
}
.round-btn {
    position: relative;
    display: inline-block;
    width: 83px;
    height: 83px;
    background-color: #0070BA;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.round-btn::after {
    content: '';
    height: 18px;
    width: 18px;
    background-image: url(../images/round-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow {
    height: 45px;
    width: 45px;
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #0070BA;
    border-color: #0070BA;
}
.common-arrow:hover img {
    filter: brightness(0) invert(1);
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
    filter: brightness(100) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding-left: 17px;
    padding-right: 17px;
}
.custom-swiper-scrollbar {
    height: 3px;
    background-color: rgba(47, 47, 47, 0.10);
    width: 100%;
    border-radius: 30px;
}
.swiper-scrollbar-drag {
    border-radius: 30px;
    background-color: #0070BA;
    cursor: grab;
}