* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #0D0D0D;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #91BD54;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'Manrope-SemiBold';
    font-size: 6.4rem;
    line-height: 70px;
}
h2 {
    color: #0D0D0D;
    font-family: 'Manrope-SemiBold';
    font-size: 4.8rem;
    line-height: 56px;
}
h3 {
    color: #0D0D0D;
    font-family: 'Manrope-Medium';
    font-size: 3.4rem;
    line-height: normal;
}
h4 {
    color: #0D0D0D;
    font-family: 'Manrope-Medium';
    font-size: 3rem;
    line-height: normal;
}
h5 {
    color: #0D0D0D;
    font-family: 'Manrope-SemiBold';
    font-size: 2.4rem;
    line-height: normal;
}
h6 {
    color: #0D0D0D;
    font-family: 'Manrope-SemiBold';
    font-size: 2rem;
    line-height: normal;
}
h6 strong {
    color: #91BD54;
    font-family: 'OpenSans-Regular';
    font-size: 1.4rem;
    line-height: normal;
    font-weight: normal;
}
p {
    color: #0D0D0D;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 16px;
}
ul {
	padding: 0;
	list-style-type: none;
	margin-bottom: 16px;
}
li {
    color: #0D0D0D;
    font-family: 'OpenSans-Regular';
    font-size: 1.4rem;
    line-height: normal;
    margin-bottom: 12px;
    position: relative;
    padding-left: 14px;
}
li::after {
    content: '';
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    background-color: #91BD54;
    position: absolute;
    left: 0;
    top: 7px;
}
.common-btn {
    color: #0D0D0D;
    font-family: 'OpenSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #0D0D0D;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn::after {
    content: "";
    height: 14px;
    width: 14px;
    background-image: url(../images/btn-arrow.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    margin-top: 2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-btn:hover {
    background-color: #428962;
    border-color: #428962;
    color: #fff;
}
.common-btn:hover::after {
    filter: brightness(0) invert(1);
} 
.orange-btn {
    background-color: #91BD54;
    border-color: #91BD54;
    color: #fff;
}
.orange-btn::after {
    filter: brightness(0) invert(1);
}
.orange-btn:hover {
    background-color: #428962;
    border-color: #428962;
    color: #fff;
}
.white-border-btn {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}
.white-border-btn::after {
    filter: brightness(0) invert(1);
}
.white-border-btn:hover {
    background-color: #428962;
    border-color: #428962;
    color: #fff;
}
.white-border-btn:hover::after {
    filter: brightness(0) invert(1);
}
.no-icon::after {
    display: none;
}
.circle-btn {
    width: 62px;
    height: 62px;
    background-color: #428962;
    border-radius: 100%;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.circle-btn::after {
    content: "";
    height: 21px;
    width: 21px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/circle-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 21px;
    cursor: pointer;
}
.circle-btn:hover {
    background-color: #fff;
}
.circle-btn:hover img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(15%) saturate(1793%) hue-rotate(171deg) brightness(97%) contrast(94%);
}
.common-wrap {
    padding-left: 12px;
    padding-right: 12px;
}
.orange-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #91BD54;
}
.orange-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../images/service-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

