* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #1A332D;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #028767;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'Michroma-Regular';
    font-size: 6rem;
    line-height: 80px;
}
h2 {
    color: #1A332D;
    font-family: 'Michroma-Regular';
    font-size: 4.8rem;
    line-height: 68px; 
}
h3 {
    color: #1A332D;
    font-family: 'OpenSans-SemiBold';
    font-size: 3.2rem;
    line-height: 35px;
}
h4 {
    color: #1A332D;
    font-family: 'Michroma-Regular';
    font-size: 1.8rem;
    line-height: 27px;
    letter-spacing: 0.36px;
}
h5 {
    color: #1A332D;
    font-family: 'OpenSans-Regular';
    font-size: 2.4rem;
    line-height: 34px;
    letter-spacing: 0.24px;
}
h6 {
    color: #1A332D;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: normal;
    letter-spacing: 0.32px;
}
p {
    color: #1A332D;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 20px;
}
li {
    position: relative;
    padding-left: 13px;
}
li::after {
    content: "";
    height: 12px;
    left: 0;
    top: 7px;
    width: 2px;
    background-color: #028767;
    position: absolute;
}
/*****common-btn****/
.common-btn {
    border: 1px solid #CFFFE5;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(207, 255, 229, 0.00) 0%, #CFFFE5 100%);
    font-size: 1.6rem;
    display: inline-block;
    padding: 11px 38px 11px 19px;
    color: #1A332D;
    font-family: 'OpenSans-SemiBold';
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn strong {
    font-weight: normal;
    z-index: 2;
    position: relative;
}
.common-btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #1A332D;
    position: absolute;
    top: 50%;
    right: 19px;
    transform-origin: center;
    transform: translateY(-50%) scaleX(1) scaleY(1);
    transition: .5s ease-in all;
    -webkit-transition: .5s ease-in all;
    /* animation: btn-blink 2s infinite; */
    z-index: 1;
}
/* @keyframes btn-blink {
    0% {
        opacity: 1
    }
    50% {
        opacity: 1
    }
    51% {
        opacity: 0
    }
    100% {
        opacity: 0
    } 
}*/
.common-btn::before {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    top: 50%;
    transform: scale(0) rotate(360deg) translate(0%, -50%);
    transition: .5s transform;
    -webkit-transition: .5s transform;
    right: 19px;
    background-image: url(../images/btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px;
    z-index: 2;
}
.common-btn:hover::after {
    filter: blur(1px);
    background: linear-gradient(90deg, rgba(207, 255, 229, 0.70) 0%, #CFFFE5 100%);
    transform: translateY(-50%) scaleX(60) scaleY(60);
    animation: unset;
}
.common-btn:hover::before {
    transform: scale(1) rotate(0deg) translate(0%, -50%);
}
.common-btn:hover {
    color: #1A332D;
}
.dark-border {
    border-color: #1A332D;
}
.light-green {
    color: #fff;
    background: linear-gradient(90deg, rgba(26, 51, 45, 0.00) 0%, #1A332D 100%);
}
.light-green::after {
    background-color: #008A69;
}
.light-green::before {
    background-image: url(../images/btn-arrow-white.svg);
}
.light-green:hover::after {
    background: linear-gradient(90deg, rgba(26, 51, 45, 0.70) 0%, #1A332D 100%);
}
.light-green:hover {
    color: #fff;
}
.deep-green {
    color: #fff;
    border-color: #CFFFE5;
    background: linear-gradient(90deg, rgba(2, 135, 103, 0.00) 0%, #028767 100%);
}
.deep-green::after {
    background-color: #fff;
}
.deep-green::before {
    background-image: url(../images/btn-arrow-white.svg);
}
.deep-green:hover::after {
    background: linear-gradient(90deg, rgba(2, 135, 103, 0.70) 0%, #028767 100%);
}
.deep-green:hover {
    color: #fff;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 20px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

