/*=========
fonts
===========*/
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
	background: #FFFFFF;
	color: #000000;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

/*scrollto-top*/
.scrollto-top {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrollto-top:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

/*===================
header-area start
=====================*/
.header-area {
    background-image: url(../storage/images/buyer/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header-overlay {
    background: linear-gradient(90.98deg, rgba(8, 20, 1, 0.85) 45.41%, rgba(8, 20, 1, 0) 177.34%);
    padding: 14px 0 9px;
    border-bottom: 1px solid rgba(126, 126, 126, 0.3);
}

.navbar-brand img {
    max-width: 152px;
}

.navbar-nav li {
    padding-left: 38px;
}

.navbar-nav li:nth-child(7) {
    padding-left: 74px;
}

.navbar-nav li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #BEBEBE;
    transition: 0.2s all ease;
}

.navbar-nav li a:hover {
    color: #3D9204;
}

.navbar-nav li #active {
    font-weight: 600;
    color: #3D9204;
}

.navbar-nav li .signup-btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #FFFAF5;
    background: #3D9204;
    display: inline-block;
    padding: 15px 54px;
    border-radius: 30px;
    transition: 0.2s all ease;
}

.navbar-nav li .signup-btn:hover {
    opacity: 0.85;
    color: #FFFAF5;
}

.navbar-toggler {
    outline: none!important;
    box-shadow: none!important;
    padding: 2px;
    transition: 0.2s all ease;
}

.navbar-toggler:hover {
    opacity: 0.75;
}

/*hamburger*/
.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #FFF;
    border-radius: 4px;
    position: absolute;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    outline: none;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*side-bar*/
.offcanvas-start {
    background: #0B1505;
    width: 320px;
}

.offcanvas-header img {
    max-width: 152px;
}

.offcanvas-body ul li {
    padding: 10px 10px!important;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    font-size: 25px;
    outline: none!important;
    box-shadow: none!important;
    transition: 0.2s all ease;
}

/*=== footer-area start ===*/
.footer-area {
    background: #3D9204;
}

.footer-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 60px;
    border-bottom: 1px solid #51A618;
}

.footer-uprcnt h2 {
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-uprcnt p {
    max-width: 608px;
    width: 100%;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.011em;
    color: #FDFDF0;
    margin: 0;
}

.footer-uprcnt a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.0025em;
    color: #3D9204;
    background: #FFFFFF;
    display: inline-block;
    padding: 18px 54px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.footer-uprcnt a:hover {
    opacity: 0.85;
}

.footer-main {
    padding: 78px 0 45px;
}

.footer-left img {
    max-width: 236px;
}

.footer-left p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #EAEAEA;
    margin: 24px 0;
}

.footer-left ul li {
    display: inline-block;
    padding-right: 16px;
}

.footer-left ul li img {
    max-width: 24px;
    transition: 0.2s all ease;
}

.footer-left ul li img:hover {
    opacity: 0.85;
}

.footer-item h4 {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 30px;
}

.footer-item ul li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #E7E7E7;
    margin-top: 15px;
    transition: 0.2s all ease;
}

.footer-right ul li a {
    display: flex;
    align-items: center;
}

.footer-right ul li a img {
    max-width: 28px;
    margin-right: 15px;
}

.footer-item ul li a:hover {
    opacity: 0.85;
}

.copyright-area {
    /*padding: 24px 0 37px;*/
    /*border-top: 1px solid rgba(255, 173, 61, 0.5);*/
}

.copy-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-left p {
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin: 0;
}

.copy-right {
    display: flex;
    align-items: center;
}

.copy-right p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin: 0;
}

.copy-right a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    text-decoration-line: underline;
    color: #FFFFFF;
    display: inline-block;
    margin-left: 38px;
    transition: 0.2s all ease;
}

.copy-right a:hover {
    opacity: 0.85;
}

/*=== hero-area start ===*/
.header-areaindx {
    background: none;
}

.hero-header {
    background-image: url(../storage/images/buyer/hero-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-area {
    background: linear-gradient(90.98deg, rgba(8, 20, 1, 0.85) 45.41%, rgba(8, 20, 1, 0) 177.34%);
    padding: 54px 0 120px;
    overflow: hidden;
}

.hero-right {
    position: relative;
}

.hero-right iframe {
    width: 100%;
    height: 450px;
    position: relative;
    z-index: 1;
}

.hero-right .bg1 {
    max-width: 152px;
    position: absolute;
    left: -70px;
    bottom: -72px;
}

.hero-right .bg2 {
    max-width: 152px;
    position: absolute;
    right: -70px;
    bottom: -72px;
}

.hero-left h6 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #3D9204;
    background: rgba(61, 146, 4, 0.1);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 50px;
    margin: 0;
}

.hero-left h1 {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.011em;
    color: #FCFAF8;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.hero-left h1 span {
    color: #3D9204;
}

.hero-left p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #BEBEBE;
    margin: 21px 0 50px;
}

.hero-left ul li {
    display: inline-block;
    padding-right: 16px;
}

.hero-left ul li a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #3D9204;
    border: 1px solid #3D9204;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.hero-left ul li a:hover,
.hero-left ul li .active {
    color: #FFFAF5;
    background: #3D9204;
}

.hero-left {
    position: relative;
}

.hero-left img {
    max-width: 392px;
    position: absolute;
    right: 0;
    top: 90px;
}

/*=== choose-area start ===*/
.choose-upper {
    background: linear-gradient(180deg, rgba(240, 112, 0, 0.05) 24.95%, rgba(240, 112, 0, 0) 116.99%);
    padding: 60px 0;
}

.choose-item {
    display: flex;
    align-items: flex-start;
}

.choose-inner img {
    max-width: 68px;
    margin-right: 32px;
}

.choose-cnt h4 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.011em;
    color: #000000;
    margin-bottom: 15px;
}

.choose-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #333333;
    margin-top: 6px;
    margin-bottom: 0px;
}

.choose-main {
    padding: 60px 0 150px;
}

.choose-right img {
    max-width: 100%;
    margin-top: 66px;
}

.choose-left h6 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #3D9204;
    background: rgba(61, 146, 4, 0.1);
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    margin: 0;
}

.choose-left h6 img {
    max-width: 80px;
    margin-left: 10px;
}

.choose-left h2 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 15px 0;
    position: relative;
}

.choose-left h2::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    margin-top: 10px;
    border-radius: 50px;
}

.choose-left ul {
    padding: 30px 0 52px;
    border-bottom: 1px solid #E1E1E1;
}

.choose-left ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
}

.choose-left ul li img {
    max-width: 22px;
    margin-right: 30px;
    margin-top: 6px;
}

.value-cnt h4 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.011em;
    color: #000000;
    margin-bottom: 14px;
}

.value-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 0;
}

.value-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}

.value-btmcnt h3 {
    font-weight: 800;
    font-size: 48px;
    letter-spacing: 0.056em;
    background: linear-gradient(94.76deg, #51BC0A -2.7%, #1C4501 111.82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.value-btmcnt p {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.011em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

/*=== activity-area start ===*/
.activity-area {
    background: #0F0700;
    padding: 75px 0 100px;
}

.activity-upper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.activity-upper h2 {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    position: relative;
}

.activity-upper h2::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    border-radius: 50px;
    margin: 10px auto 30px;
}

.activity-upper p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #BABABA;
}

.activity-item img {
    max-width: 65px;
    border-radius: 5px;
}

.activity-item h4 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin: 25px 0 15px;
}

.activity-item p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #9B9B9B;
}

.activity-item a {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #F9943B;
}

.activity-item a img {
    max-width: 20px;
    margin-left: 15px;
}

.activity-item {
    background: #19110B;
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    min-height: 356px;
    border-radius: 5px;
    margin-top: 40px;
}

.act-btn {
    border-top: 1px solid #2A221C;
    padding-top: 15px;
    margin-top: auto;
}

/*=== process-area start ===*/
.process-area {
    background: #FFFFFF;
    padding: 86px 0;
}

.process-upper {
    max-width: 936px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.process-upper h2 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.011em;
    color: #0F0700;
    text-align: center;
    position: relative;
}

.process-upper h2::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    border-radius: 50px;
    margin: 10px auto 35px;
}

.process-upper p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #848280;
}

.process-box {
    background: #FFFFFF;
    padding: 48px 56px 56px;
    margin-top: 60px;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.process-item {
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.process-item img {
    max-width: 40px;
}

.process-item h4 {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 16px 0 18px;
}

.process-item p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 0;
}

.process-item::after {
    content: "";
    width: 125px;
    height: 1px;
    display: block;
    background: #BDBCBB;
    position: absolute;
    right: -104px;
    top: 70px;
}

.process-last::after {
    display: none;
}

/*=== platform-area start ===*/
.platform-area {
    background: linear-gradient(180deg, rgba(61, 146, 4, 0.05) 2.51%, rgba(255, 255, 255, 0) 32.69%);
    padding: 50px 0 54px;
    border-bottom: 1px solid #D7D7D7;
}

.platform-main {
    padding: 62px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-item {
    padding: 0 10px;
}

.platform-item img {
    max-width: 100%;
}

.platform-btn a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #FFFAF5;
    background: #3D9204;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.platform-btn a:hover {
    opacity: 0.9;
}

/*=== partner-area start ===*/
.partner-area {
    background: #FFFFFF;
    padding: 110px 0 88px;
    border-bottom: 1px solid #D7D7D7;
}

.partner-item img {
    max-width: 100%;
}

.partner-cnt h2 {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
}

.partner-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 23px 0 62px;
}

.partner-cnt a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #FFFAF5;
    background: #3D9204;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.partner-cnt a:hover {
    opacity: 0.9;
}

/*=== team-area start ===*/
.team-area {
    background: linear-gradient(180deg, rgba(61, 146, 4, 0.05) 24.95%, rgba(61, 146, 4, 0.05) 116.99%);
    padding: 60px 0 92px;
}

.team-upper span {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #3D9204;
    background: rgba(61, 146, 4, 0.1);
    display: inline-block;
    padding: 9px 16px;
    border-radius: 50px;
}

.team-upper h2 {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 15px 0;
    position: relative;
}

.team-upper h2::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    border-radius: 50px;
    margin: 10px auto 35px;
}

.team-item img {
    width: 100%;
}

.team-item h4 {
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.011em;
    color: #102402;
    text-align: center;
    margin: 20px 0 0;
}

.team-item p {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin-top: 5px;
    margin-bottom: 0;
}

.team-item {
    margin-top: 44px;
}

/*=== review-area start ===*/
.review-area {
    background: #FFFFFF;
    padding: 88px 0 104px;
}

.review-upper a {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #3D9204;
}

.review-item {
    padding: 0 16px;
}

.review-item img {
    max-width: 28px;
    height: initial;
}

.review-item p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #000F09;
    margin: 20px 0 35px;
}

.review-client {
    display: flex;
    align-items: center;
}

.review-client img {
    max-width: 90px;
    width: 90px;
    height: 88px;
    border-radius: 50%;
    margin-right: 26px;
}

.review-cnt h4 {
    font-weight: 500;
    font-size: 20px;
    color: #2F2F42;
    margin-bottom: 6px;
}

.review-cnt p {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: #2F2F42;
    margin: 0;
}

.review-main {
    padding-top: 50px;
}

.owl-theme .owl-dots {
    margin-top: 35px;
}

/*=== question-area start ===*/
.question-area {
    background: #F9F9F9;
    padding: 115px 0 88px;
}

.question-item img {
    max-width: 100%;
}

.question-cnt h2 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.011em;
    color: #000000;
    margin: 0;
}

.question-cnt p {
    max-width: 380px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 26px 0 45px;
}

.question-cnt ul li {
    display: inline-block;
    padding-right: 15px;
}

.question-cnt ul li a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #3D9204;
    border: 1px solid #3D9204;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.question-cnt ul li a:hover,
.question-cnt ul li .active {
    color: #FFFFFF;
    background: #3D9204;
}

/*=== service page start ===*/
.hero-2 {
    padding: 70px 0 125px;
}

.service-area {
    background: #FFFFFF;
    padding: 108px 0 90px;
}

.serv-item img {
    max-width: 100%;
}

.serv-cnt h4 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
    position: relative;
}

.serv-cnt h4::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    border-radius: 50px;
    margin: 10px 0;
}

.serv-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 40px 0 70px;
}

.serv-cnt a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #3D9204;
    border: 1px solid #3D9204;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.serv-cnt a:hover {
    background: #3D9204;
    color: #FFF;
}

.service-area2 {
    background: #F9FCF7;
    padding: 90px 0;
}

/*=== blog-page start ===*/
.article-upper {
    background: #FFFFFF;
    padding: 120px 0 80px;
}

.article-upper span {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #3D9204;
    background: rgba(61, 146, 4, 0.1);
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
}

.article-upper h2 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
    position: relative;
    margin-top: 10px;
}

.article-upper h2::after {
    content: "";
    width: 62px;
    height: 5px;
    display: block;
    background: #3D9204;
    border-radius: 50px;
    margin-top: 10px;
}

.article-main {
    background: #F9FCF8;
    padding: 54px 0 90px;
}

.article-links ul li {
    display: inline-block;
    padding: 10px 12px;
}

.article-links ul li a {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.011em;
    text-transform: uppercase;
    color: #3D9204;
    border: 2px solid #3D9204;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.article-links ul li a:hover,
.article-links ul li .active {
    color: #FFFFFF;
    background: #3D9204;
}

.article-part {
    padding-top: 60px;
}

.article-item img {
    max-width: 100%;
}

.article-cnt h6 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 0;
}

.article-cnt h6 span {
    color: #215001
}

.article-cnt a {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.011em;
    text-decoration-line: underline;
    color: #0F0700;
    display: inline-block;
    margin: 15px 0 30px;
}

.article-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 0;
}

.article-bottom {
    display: flex;
    align-items: center;
    padding-top: 45px;
}

.article-bottom img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.article-btmcnt h4 {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin-bottom: 3px;
}

.article-btmcnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
    margin: 0;
}

/*=== blog-area start ===*/
.blog-area {
    background: #FFFFFF;
    padding: 80px 0 115px;
}

.blog-item {
    background: #FCFCFC;
    margin-bottom: 46px;
}

.blog-item img {
    width: 100%;
}

.blog-cnt {
    padding: 40px 16px 32px;
}

.blog-item .article-bottom img {
    width: 50px;
}

.blog-cnt h6 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #215001;
    margin: 0;
}

.blog-cnt a {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.011em;
    text-decoration-line: underline;
    color: #0F0700;
    margin: 15px 0 30px;
}

.blog-cnt p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
}

.blog-btn a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.0025em;
    color: #3D9204;
    border: 2px solid #3D9204;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    margin-top: 20px;
    transition: 0.2s all ease;
}

.blog-btn a:hover {
    background: #3D9204;
    color: #FFF;
}

/*=== blog-post page start ===*/
.blog-wrapper {
    background: #FFFFFF;
    padding: 70px 0 125px;
}

.blogpost-upper {
    max-width: 840px;
    margin: 0 auto;
}

.blogpost-upper p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #BEBEBE;
    margin: 0;
}

.blogpost-upper p i {
    color: #BEBEBE;
    display: inline-block;
    margin: 0 12px;
}

.blogpost-upper p a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.011em;
    text-decoration-line: underline;
    color: #3D9204;
}

.blogpost-upper h6 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.011em;
    color: #215001;
    margin: 46px 0 20px;
}

.blogpost-upper h2 {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
}

.blogpost-cntshr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
}

.share-item {
    display: flex;
    align-items: center;
}

.share-item h4 {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
    margin-right: 12px;
}

.share-item ul li {
    display: inline-block;
    padding-left: 10px;
}

.share-item ul li img {
    max-width: 24px;
}

.blogpost-cnt1 {
    max-width: 728px;
    width: 100%;
    margin: 68px auto 38px;
}

.blogpost-cnt1 h4 {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #323130;
    margin-bottom: 15px;
}

.blogpost-cnt1 p {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #000000;
    margin: 0;
}

.blogpost-item img {
    width: 100%;
}

.blogpost-cnt2 {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
}

.blogpost-cnt2 p {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #000000;
    margin: 0;
}

.blogpost-cnt2  h4 {
    font-weight: 700;
    color: #000000;
    margin-top: 40px;
}

/*=== faq-page start ===*/
.faq-wrapper {
    background: #FFF;
    padding-bottom: 65px;
}

.faq-upper {
    padding: 90px 0 65px!important;
}

.faq-left p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.011em;
    color: #848280;
}

.faq-left p a {
    font-weight: 500;
    color: #3D9204;
    text-decoration: underline;
}

/*accordian */
.faqs h3 {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.011em;
    color: #0F0700;
    text-align: left;
    background: #EBF4E6;
    padding: 20px 25px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 15px;
    padding-right: 40px;
    transition: 0.25s all;
    position: relative;
    border-radius: 5px;
}

.ziehharmonika h3.active {
    margin-bottom: 0px;
}

.ziehharmonika > div {
    display: none;
    background: #FBFDFA;
    text-align: left;
    padding: 18px 25px;
    margin-bottom: 15px;
}

.faqs > div p {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.011em;
    color: #0F0700;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.faqs > div p span {
    display: inline-block;
    margin-right: 8px;
}

.faqs .arrowDown {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #272e35 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    transition: 0.25s all;
    opacity: 0;
}

.faqs .collapseIcon {
    position: absolute;
    right: 20px;
    top: 45%;
    font-size: 18px;
    font-weight: 300;
    color: #0F0700;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
}

.faqs .collapseIcon.alignLeft {
    right: initial;
    left: 20px;
}

/*=== register-page start ===*/
.reg-mainleft {
    background-image: url(../storage/images/dropshippers2.webp.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.reg-left {
    background: rgba(15, 7, 0, 0.85);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.regleft-item {
    max-width: 468px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.regleft-item img {
    max-width: 456px;
}

.regleft-item p {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.011em;
    color: #FFFFFF;
    margin: 52px 0 16px;
}

.regleft-item .line {
    max-width: 100%;
}

.reg-mainright {
    background: #FFFFFF;
}

.reg-right {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
}

.regright-item {
    max-width: 626px;
    width: 100%;
    margin: 0 auto;
}

.regright-item h2 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 0.75px;
    color: #07130E;
    margin-bottom: 48px;
}

.regright-item label {
    font-family: 'Epilogue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.75px;
    color: #07130E;
    display: block;
    margin-bottom: 15px;
}

.regright-item input {
    width: 100%;
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #6B767E;
    background: #FBFBFB;
    border: 1px solid #C7C8CA;
    padding: 12px 20px;
    outline: none;
    border-radius: 5px;
    margin-bottom: 22px;
}

.regright-item button {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    background: #3D9204;
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 15px;
    border: none;
    outline: none;
    box-shadow: 0px 4px 15px rgba(64, 171, 126, 0.1);
    border-radius: 5px;
    transition: 0.2s all ease;
    margin-top: 35px;
}

.regright-item button:hover {
    opacity: 0.9;
}

.regright-item h4 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.75px;
    color: #07130E;
    margin: 30px 0 20px;
}

.regright-item h4 a {
    color: #3D9204;
    text-decoration: underline;
}

.regright-item p {
    font-family: 'Epilogue', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.75px;
    color: #B8B8B8;
    margin: 0;
}

.login-item h3 {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.75px;
    color: #6C6C6C;
    margin: 21px 0 45px;
    text-align: right;
}

.login-item h3 a {
    color: #3D9204;
}

/*.login-item [type="password"] {*/
/*    background-image: url(images/eye.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-size: auto;*/
/*    background-position: 96% 50%;*/
/*    padding-right: 54px;*/
/*}*/

#copy_right {
    padding: 20px 0;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    /* line-height: 32px; */
    border-top: 1px solid rgba(255, 173, 61, 0.5);
}
