* {
	outline: none !important;
}
/*=======THEME VARIABLES=======*/
/****Light Theme (Default)****/
/* :root {
    --primary-bg-color: #F5F5F5;
    --primary-text: #212121;
    --primary-border-rgb: 33, 33, 33;
    --highlight-color: #194684;
    --highlight-hover-color: #A38C7F;
    --primary-box-shadow: 16, 24, 40;
    --primary-wp-text: #25D366;
    --secondary-bg-color: #FDFDFD;
    --secondary-text: #FFF;
    --secondary-border-rgb: 25, 70, 132;
    --primary-circle-border: #D9D9D9;
    --secondary-text-rgb: 255, 255, 255;
    --block-bg-color: #fff;
    --secondary-box-shadow: 0, 0, 0;
} */
/****Dark Theme****/
/* .dark-mode {
    --primary-bg-color: #081D3A;
    --secondary-text: #FFF;
    --primary-text: #FFF;
} */
 
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: #FFF;
    font-family: 'GeneralSans-Bold';
    font-size: 7.8rem;
    line-height: 84px;
    letter-spacing: 0.78px;
}
h2 {
    color: #194684;
    font-family: 'GeneralSans-Bold';
    font-size: 4.8rem;
    line-height: 54px;
    letter-spacing: 0.48px;
}
h3 {
    color: #FFF;
    font-family: 'GeneralSans-Semibold';
    font-size: 3.2rem;
    line-height: 38px;
    letter-spacing: 0.32px;
}
h4 {
    color: #212121;
    font-family: 'GeneralSans-Semibold';
    font-size: 2.4rem;
    line-height: 38px;
    letter-spacing: 0.24px;
}
h5 {
    color: #212121;
    font-family: 'LamaSans-SemiBold';
    font-size: 2rem;
    line-height: 20px;
}
h6 {
    color: #212121;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 21px;
    letter-spacing: 0.28px;
}
p {
    color: #212121;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 24px;
}
li {
    color: #212121;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 30px;
}
li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url(../images/bullet.svg);
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.common-btn {
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 21px;
    border-radius: 5px;
    background: #194684;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    overflow: hidden;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    border: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #A38C7F;
    color: #fff;
}
.brown-btn {
    background-color: #A38C7F;
}
.brown-btn:hover {
    background-color: #194684;
}
.common-arrow {
   width: 51px;
   height: 51px;
   border-radius: 51px;
   overflow: hidden;
   display: flex;
   align-items: center;
   background-color: #212121;
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #194684;
}
.common-arrow:after{
	display: none;
}
.common-arrow img{
	width: 15px;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.sec-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.sec-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(71.24% 71.24% at 50% 50%, #F5F5F5 0%, rgba(245, 245, 245, 0.95) 100%);
    pointer-events: none;
}
.blue-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
