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

/* GENERAL */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
    font-family: Montserrat;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

ol,
ul {
    list-style: none
}

.sppb-addon-text-block .sppb-addon-content ul li{
    list-style-type: square;
    list-style-position: inside;

}

blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

figure {
    margin: 0;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

legend {
    white-space: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input {
    line-height: normal;
}

input,
textarea {
    background-image: -webkit-linear-gradient( hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0));
    /* Removing the inner shadow, rounded corners on iOS inputs */
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    line-height: 1;
    cursor: pointer;
    /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button;
    /* Corrects inability to style clickable 'input' types in iOS */
    border: none;
}

input[type='checkbox'],
input[type='radio'] {
    padding: 0;
    /* Addresses excess padding in IE8/9 */
}

input[type='search'] {
    -webkit-appearance: textfield;
    /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type='search']::-webkit-search-decoration {
    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
    border: 0;
    padding: 0;
}

body {
    font: 16px/30px 'Rubik', sans-serif;
}

ul,
ol {
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

b,
strong {
    font-weight: 600;
}

button {
    transition-duration: 0.5s;
    border: none;
}

select,
option {
    font-size: 16px !important;
    font-family: 'Rubik', sans-serif !important;
    color: var(--secondcolor) !important;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color: var(--maincolor);
    padding: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button.search-submit-form {
    padding: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

select,
textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 8px 15px;
    color: #374874;
    height: 45px;
    border-radius: 5px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px var(--maincolor);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

textarea:hover,
input[type='text']:hover,
input[type='password']:hover,
input[type='datetime']:hover,
input[type='datetime-local']:hover,
input[type='date']:hover,
input[type='month']:hover,
input[type='time']:hover,
input[type='week']:hover,
input[type='number']:hover,
input[type='email']:hover,
input[type='url']:hover,
input[type='search']:hover,
input[type='tel']:hover,
input[type='color']:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px var(--maincolor);
}

textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'] {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: solid 2px #dbe3df;
}

textarea {
    border: solid 2px #dbe3df;
    width: 100%;
    padding: 10px 15px;
    height: 200;
}

input[type='checkbox'] {
    display: inline;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder {
    color: #374874;
    opacity: 1;
}

input:-ms-input-placeholder {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--secondcolor);
    opacity: 1;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat;
	font-size: 24px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #9FC649;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	cursor: pointer;
}

a:hover,
a:focus {
    color: var(--maincolor);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sppb-btn.active, .sppb-btn:active {
  background-image: inherit !important;
}

.sppb-btn.focus, 
 .sppb-btn:active:focus, 
 .sppb-btn:active:hover, 
 .sppb-btn:focus, 
 .sppb-btn:hover {
  outline: 0;
}

.sppb-btn.circle {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.sppb-btn.active, .sppb-btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

.sppb-optin-form .sppb-btn i:first-child {display: none;}

#sp-footer {
	font-size: inherit;
}

#sp-footer #sp-footer2 {
	text-align: inherit;
}

.sp-scroll-up {
	background: var(--maincolor);
}

.overflow-hidden {overflow: hidden;}

.z-index2 {z-index: 2 !important;}
.z-index0 {z-index: 0 !important;}

.sppb-media-heading {
	margin: 0;
}

.sppb-media {
display: flex;
  align-items: center;
}

.column-static .sppb-row > div,
.column-static .sppb-row .sppb-column,
.column-static .sppb-row .sppb-column-addons  {position: static;}


body .sppb-btn,
body .sppb-sp-slider-button .sp-slider-btn-text {
	font-weight: 500;
font-size: 18px;
padding: 16px 36px 16px 36px;
border-radius: 12px;
line-height: 1.42857143;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

body .sppb-btn.sppb-btn-primary,
body .sppb-sp-slider-button .sp-slider-btn-text {
color: #ffff;
border: solid 2px var(--maincolor);
background-color: var(--maincolor);
}

body .sppb-btn.sppb-btn-primary:hover,
body .sppb-sp-slider-button .sp-slider-btn-text:hover {
  color: var(--maincolor);
  border: solid 2px var(--maincolor);
  background-color: #0f422900;
}

body .sppb-btn.sppb-btn-dark {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}

body .sppb-btn.sppb-btn-dark:hover {
	background-color: var(--maincolor);
	border: 1px solid var(--maincolor);
	color: #fff !important;
}

body .sppb-btn span,
body .sppb-sp-slider-button .sp-slider-btn-text span,
.article-list .article .readmore a span {
    position: relative;
}

.sppb-carousel-extended-list, .bx-wrapper {direction: ltr;}

.input-group > .form-control:focus, .input-group > .form-select:focus {
	z-index: 0;
}

.finder .word input {
margin-bottom: 0;
border: 1px solid #F6F6F6;
padding-right: 75px;
color: var(--secondcolor);
}

.finder .fas.fa-search.icon-white {font-family: "Font Awesome 5 Free" !important;}

#search-results > * {margin-bottom: 10px;}

#search-result-empty h2 {margin-bottom: 7px;}

.sppb-carousel-extended-list .sppb-carousel-extended-outer-stage {
	height: auto !important;
}

.sppb-addon-optin-forms {
	padding: 0px !important;
}

.sppb-addon-optin-forms .sppb-optin-form-details-wrap:not(:empty) {
	padding: 0;
}

div.sppb-carousel-extended-dots {
	bottom: -70px;
}

.com-finder .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
	display: flex;
	align-items: center;
}

.com-finder .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) span {
margin-right: 5px;	
}

.center-section > .sppb-container-inner > .sppb-row,
.center-section  > .sppb-row {
	justify-content: center;
}

.even-section > .sppb-container-inner > .sppb-row,
.even-section  > .sppb-row {
	justify-content: space-between !important;
}

#sp-top {
	position: relative;
	z-index: 9999;
}

#sp-top > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}

#sp-top > .container > .container-inner > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}

#sp-header > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}

#sp-header > .container > .container-inner > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}

#sp-logo-section > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}

#sp-logo-section > .container > .container-inner > .row {
	-ms-flex-align: center !important;
	align-items: center !important;
}


/* HEADER */

#sp-header {
box-shadow: none;
height: 80px;
	padding: 5px 40px 0px 0px;
	background-color: #ffffff;
}

#sp-header.header-sticky {
box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 20%);
	background-color: #ffffff;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
border: 0px;
}

#sp-header > .container {
background-color: #ffffff;
border-radius: 5px;
}

#sp-header .logo {
	height: auto;
	display: flex;
	margin: 8px 0 0 0;
	align-items: center;
	justify-content: flex-start;
}

#sp-header .logo-slogan {
	font-size: 12px;
        color: #93612f;
}

#sp-header .logo img {
	height: auto;
	max-width: 250px;
}

.sp-megamenu-parent {
	margin: 0;
}

.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span,
.sp-megamenu-parent > li:last-child > a {
position: relative;
line-height: 100px;
display: inline-block;
margin: 0 18px;
font-size: 18px;
font-weight: 300;
color: #ffffff;
padding: 0;
}

@media (min-width: 1200px) and (max-width: 1400px) {
	.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span, .sp-megamenu-parent > li:last-child > a {
	margin: 0 10px;
}
}

.sp-megamenu-parent > li > a:before {
content: "";
position: absolute;
bottom: 20px;
left: 0;
width: 0%;
height: 3px;
background-color: #9F1960;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.sp-megamenu-parent > li > a:hover:before,
.sp-megamenu-parent > li.active > a:before {
opacity: 1;
visibility: visible;
width: 100%;
}

.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active > a:hover,
.sp-megamenu-parent > li.active:hover > a {
	color: #F69323;
}

.sp-megamenu-parent > li:first-child > a {
  padding-left: 0;
}

.sp-megamenu-parent > li:last-child > a {
  padding-right: 0;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
padding: 0;
background-color: #ffff;
box-shadow: -2px 6px 23px #b4b4b44f;
border-radius: 0;
  position: relative;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
  position: relative;
  border-top: 1px solid #e1e1e157;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:first-child {
  border-top: none;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
padding: 0px 0px 0px 15px;
line-height: 45px;
color: var(--secondcolor);
font-size: 18px;
font-weight: 500;
display: block;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a {
background-color: #8bb55a;
color: #ffff !important;
}

body #offcanvas-toggler.offcanvas-toggler-right {
	margin-left: 0px;
	margin-right: 40px;
}

#offcanvas-toggler {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	font-size: 20px;
	position: relative;
	z-index: 22;
	height: 80px;
}

.burger-icon > span {
	background-color: var(--secondcolor);
}

#sp-header.header-sticky .burger-icon > span {
	background-color: var(--secondcolor);
}

.offcanvas-active .burger-icon > span, #modal-menu-toggler.active .burger-icon > span {
	background-color: #fff;
}


@media (max-width: 992px) {
.offcanvas-menu {
	background-color: #9F1960;
	color: #fff;
display:none;
}
.offcanvas-menu .offcanvas-inner a {
	color: #fff;
font-weight: normal;
}

.offcanvas-menu .offcanvas-inner a:hover, .offcanvas-menu .offcanvas-inner a:focus, .offcanvas-menu .offcanvas-inner a:active {
	color: #fff;
}

.offcanvas-menu .p-3 {
	padding: 0 !important;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li span,
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler, .offcanvas-menu .offcanvas-inner .sp-module ul > li ul li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li a:hover, .offcanvas-menu .offcanvas-inner .sp-module ul > li a:focus, .offcanvas-menu .offcanvas-inner .sp-module ul > li span:hover, .offcanvas-menu .offcanvas-inner .sp-module ul > li span:focus {
	color: #fff;
}

.offcanvas-menu .logo {display: none;}

.offcanvas-menu .offcanvas-inner {
	padding: 50px 25px;
}

.offcanvas-menu .offcanvas-inner ul.menu > li > a, .offcanvas-menu .offcanvas-inner ul.menu > li > span {
	opacity: 1;
}
}

@media (min-width: 992px) {
.offcanvas-menu {
	background-color: #fff;
}

.offcanvas-menu .p-3 {
	padding: 0 !important;
}

.offcanvas-menu .logo {display: none;}

.offcanvas-menu .menu {display: none !important;}

.offcanvas-active .burger-icon > span, #modal-menu-toggler.active .burger-icon > span {
	background-color: #fff;
}

body.ltr.offcanvs-position-right .offcanvas-menu {
	right: -400px;
display:none;
}

body.rtl.offcanvs-position-right .offcanvas-menu {
	left: -400px;
}

.offcanvas-menu {
	width: 400px;
}

}

/* */

/* PAGE TITLE */

#sp-title {
	position: relative;
	overflow: hidden;
}

.sp-page-title {
padding: 110px 0;
background-size: cover;
background-repeat: no-repeat;
position: relative;
background-position: center;
text-align: center;
}

.sp-page-title:after {
  background-color: var(--secondcolor);
	opacity: 0.7;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
}

.sp-page-title > .container {
	position: relative;
	z-index: 2;
}

.sp-page-title .sp-page-title-heading {
line-height: 68.66px;
font-family: 'Jost', sans-serif;
font-weight: 700;
font-size: 36.97px;
}

.sp-page-title .breadcrumb {
font-size: 18px;
font-weight: 400;
line-height: 51.66px;
color: #ffffffb8;
  position: relative;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.sp-page-title .breadcrumb > li.float-start {display: none;}

.sp-page-title .breadcrumb > li {
position: relative;
text-transform: capitalize;
display: inline-block;
font-size: 18px;
font-weight: 400;
}

.sp-page-title .breadcrumb > li > a {
font-size: 18px;
font-weight: 400;
	color: #ffffffb8;
}

.sp-page-title .breadcrumb > li > a:hover {
  color: #fff;
}

.sp-page-title .breadcrumb-item + .breadcrumb-item {
	padding-left: 15px;
}

.sp-page-title .breadcrumb-item + .breadcrumb-item::before {
	padding-right: 15px;
}

.sp-page-title .breadcrumb > span, .sp-page-title .breadcrumb > li, .sp-page-title .breadcrumb > li + li::before, .sp-page-title .breadcrumb > li > a {
	color: #ffffffb8;
}

.sp-page-title .breadcrumb > .active span {
font-size: 18px;
font-weight: 400;
	color: #ffffffb8;
}

/* */

/* PORTFOLIO CASES */

.sp-simpleportfolio-overlay-wrapper {
	width: 100%;
	border-radius: 8px;
}

.sp-simpleportfolio-overlay-wrapper img {width: 100%;}

.profolio-show {
  position: absolute;
  overflow: hidden;
  bottom: -100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.profolio-info {
  background-color: #ffff;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  border-radius: 10px;
  margin: 0 6%;
  padding-left: 31px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.profolio-info .section-heading-jost-size20 {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.profolio-info .desc-box {
  margin-top: 4px;
  color: var(--fourthcolor);
}

.profolio-info .button-next {
  position: absolute;
  right: 5.8%;
  top: 50%;
  transform: translate(0, -50%);
}

.profolio-info .profolio-btn {
	padding: 23px 24px 22px 24px;
	background: var(--thirdcolor);
	border-radius: 8px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.profolio-info .profolio-btn:hover {
  background: var(--maincolor);
  color: #ffff;
}

.sp-simpleportfolio-item:hover .profolio-show {
  bottom: 30px;
}

@media (max-width: 1200px) {
.profolio-info .profolio-btn {display: none;}
}


/* */

#sp-header.header-sticky ~ section#sp-main-body {
	padding-top: 0;
}
.com-content #sp-main-body,
.com-j2store #sp-main-body,
.com-tags #sp-main-body,
.com-spsimpleportfolio #sp-main-body,
.com-search #sp-main-body,
.com-finder #sp-main-body  {
	padding: 120px 0;
}

.com-spsimpleportfolio #sp-main-body {
	z-index: 2;
	position: relative;
}


.com-content #sp-header.header-sticky ~ section#sp-main-body,
.com-j2store #sp-header.header-sticky ~ section#sp-main-body,
.com-tags #sp-header.header-sticky ~ section#sp-main-body,
.com-spsimpleportfolio #sp-header.header-sticky ~ section#sp-main-body,
.com-search #sp-header.header-sticky ~ section#sp-main-body,
.com-finder #sp-header.header-sticky ~ section#sp-main-body {
	padding-top: 120px;
}


/* SIDEBAR */

.sidebar-class  .sppb-row-container {width: 100% !important; }
.sidebar-class.com-sppagebuilder #sp-main-body {margin: 0 auto;}
@media (min-width: 768px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 750px;}
}
@media (min-width: 992px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 970px;}
}
@media (min-width: 1200px) {
.sidebar-class.com-sppagebuilder #sp-main-body {max-width: 1170px;}
}

.com-sppagebuilder #sp-right, .com-sppagebuilder #sp-left {
	padding-top: 168px;
	padding-bottom: 20px;
	position: relative;
}

#sp-left .sp-module, #sp-right .sp-module {
	border: 0px solid #f3f3f3;
	padding: 0;
	border-radius: 0px;
}

#sp-left .sp-module ul > li, #sp-right .sp-module ul > li {
	display: block;
	border-bottom: 0px solid #f3f3f3;
}

/* */


#sp-footer, #sp-bottom {
	background: transparent;
}

/* BLOG */

.article-list .article {
	border: 0px solid #f5f5f5;
	position: relative;
	transition: all 0.3s ease-out;
	border-radius: 0;
	padding: 0;
}

.article-list .article .article-intro-image, .article-list .article .article-featured-video, .article-list .article .article-featured-audio, .article-list .article .article-feature-gallery {
	margin: 0px;
	border-bottom: 0px solid #f5f5f5;
	overflow: hidden;
	position: relative;
	display: block;
	border-radius: 8px;
	width: 100%;
}

.article-list .article > div > a {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: block;
}

.article-list .article .article-intro-image img, .article-list .article .article-featured-video img, .article-list .article .article-featured-audio img, .article-list .article .article-feature-gallery img {
	border-radius: 8px;
	width: 100%;
	transition: all 0.5s ease-in-out;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.article-body {
border-radius: 5px;
background-color: #f8f8f8;
padding: 13px 27px 8px 27px;
}

.article-list .article .article-header h2 {
font-size: 28px;
line-height: 40px;
letter-spacing: -0.6px;
font-family: 'Jost', sans-serif;
font-weight: 700;
color: var(--secondcolor);
margin-top: 17px;
}

.article-list .article .article-header h2 a {
color: inherit;
transition: all 500ms ease;
}

.article-list .article .article-header h2 a:hover,
.article-info > span a:hover {
color: var(--maincolor);
}

.article-info {
display: flex;
align-items: center;
justify-content: flex-start;
padding-top: 11px;
margin-bottom: 0;
}

.article-info > span {
font-size: 16px;
font-weight: 400;
line-height: 30px;
letter-spacing: 0.2px;
color: var(--secondcolor);
}

.article-info > span a {
color: var(--secondcolor);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.article-introtext p {
font-size: 16px;
font-weight: 400;
line-height: 30px;	
color: #525368;
margin-top: 12px;
padding-right: 3px;
}

.article-list .article .readmore a {
font-size: 15px;
font-weight: 700;
line-height: 66px;
margin-top: 10px;
color: var(--maincolor);
text-transform: capitalize;
}

.article-list .article .readmore a:hover {
	color: var(--secondcolor);
}

.pagination-counter {margin-top: 40px;}

.article iframe {z-index: 9 !important;}

/* SINGLE ARTICLE */

.article-details {
	border-radius: 0px;
	overflow: hidden;
	position: relative;
}

.article-details .sppb-row-container {padding: 0; max-width: 100%;}

.article-details .article-can-edit {
	position: relative;
	margin-bottom: 0px;
}

.article-details .article-full-image {
	margin-bottom: 15px;
}

.article-details .article-full-image img {
	display: inline-block;
	border-radius: 8px;
	width: 100%;
}

.article-details .article-header h1, .article-details .article-header h2 {
font-size: 28px;
font-weight: 700;
letter-spacing: -0.4px;
line-height: 42px;
color: var(--secondcolor);
margin-bottom: 10px;
}

.article-details .article-info {
	margin-bottom: 0;
}

.article-details .article-info > span {
font-size: 12px;
line-height: 53px;
text-transform: uppercase;
}

.article-details .article-info > span + span::before {
	display: none;
}

.article-details .article-info > span + span {
  padding-left: 26px;
}

.article-details .article-info > span.published:after {border-top-color: var(--maincolor);}

.article-details .article-author-information {
background: #4526b1;
border-radius: 20px;
margin-bottom: 70px;
display: flex;
padding: 50px 48px 43px 49px;
border-top: none;
margin-top: 70px;
}

.article-details .article-author-information img {
min-width: 90px;
width: 90px;
height: 90px;
border-radius: 10px;
object-fit: cover;
margin-right: 29px;
}

.article-details .article-author-information h5 {
font-size: 24px;
font-weight: bold;
line-height: 1.2;
}

.article-details .article-author-information .author-bio {
font-size: 18px;
line-height: 1.7;
margin-top: 19px;
margin-bottom: 1rem;
}

.author-website, .author-website a {
	color: #fff; margin-left: 4px;
	font-size: 16px;
	margin-top: 9px;
}

.author-website a:hover {color: var(--maincolor);}

#article-comments {
	padding-top: 0;
	margin-top: 35px;
	border-top: 0px solid #f5f5f5;
}

.article-details .article-ratings-social-share {
	padding: 1rem 0;
	border-top: 0;
	border-bottom: 0;
	margin-bottom: 0;
	margin-top: 39px;
	padding-top: 36px;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
	border-top: 2px solid var(--thirdcolor);
}

.article-social-share {float: none;}

.article-social-share .social-share-icon ul li a {
	border: none;
	text-align: center;
	margin-left: 10px;
	display: inline-block;
	line-height: 45px;
	text-align: center;
	font-size: 14px;
	line-height: 29px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--maincolor);
	background: none;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: auto;
	height: auto;
}

.article-social-share .social-share-icon ul li a:hover {
	color: var(--fourthcolor); 
}

ul.pagination {
	display: flex;
justify-content: space-between;
margin-top: 30px;
}

ul.pagination li {
  display: inline-block;
}

.pagination > li > a,
.page-item.disabled .page-link,
.page-item.active .page-link {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  margin-right: 6px;
  transition: all 0.3 ease-in-out;
  font-size: 18px;
font-family: "Roboto";
color: #fff;
border: none;
}

.page-item.active .page-link {background: var(--maincolor);}

.page-link:hover {
	z-index: 2;
	color: #fff !important;
	background: var(--maincolor);
}

.page-item:last-child .page-link {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.page-item:first-child .page-link {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

/* */

/* IMPORT ICOMOON */

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?rxj9r8');
  src:  url('../fonts/icomoon.eot?rxj9r8#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?rxj9r8') format('truetype'),
    url('../fonts/icomoon.woff?rxj9r8') format('woff'),
    url('../fonts/icomoon.svg?rxj9r8#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-hanging-bot:before {
  content: "\e922";
  color: var(--maincolor);
}
.icon-admin-sys:before {
  content: "\e923";
  color: var(--maincolor);
}
.icon-spray:before {
  content: "\e924";
  color: var(--maincolor);
}
.icon-tele-sale:before {
  content: "\e925";
  color: var(--maincolor);
}
.icon-Group-7526 .path1:before {
  content: "\e911";
  color: rgb(101, 225, 130);
}
.icon-Group-7526 .path2:before {
  content: "\e912";
  margin-left: -1.1474609375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7526 .path3:before {
  content: "\e913";
  margin-left: -1.1474609375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7526 .path4:before {
  content: "\e914";
  margin-left: -1.1474609375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7526 .path5:before {
  content: "\e915";
  margin-left: -1.1474609375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7526 .path6:before {
  content: "\e916";
  margin-left: -1.1474609375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7527 .path1:before {
  content: "\e917";
  color: rgb(101, 225, 130);
}
.icon-Group-7527 .path2:before {
  content: "\e918";
  margin-left: -0.873046875em;
  color: rgb(15, 66, 41);
}
.icon-Group-7527 .path3:before {
  content: "\e919";
  margin-left: -0.873046875em;
  color: rgb(15, 66, 41);
}
.icon-Group-7528 .path1:before {
  content: "\e91a";
  color: rgb(101, 225, 130);
}
.icon-Group-7528 .path2:before {
  content: "\e91b";
  margin-left: -1.02734375em;
  color: rgb(15, 66, 41);
}
.icon-Group-7528 .path3:before {
  content: "\e91c";
  margin-left: -1.02734375em;
  color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path1:before {
  content: "\e91d";
  color: rgb(101, 225, 130);
}
.icon-icon-farming-layer .path2:before {
  content: "\e91e";
  margin-left: -1.009765625em;
  color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path3:before {
  content: "\e91f";
  margin-left: -1.009765625em;
  color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path4:before {
  content: "\e920";
  margin-left: -1.009765625em;
  color: rgb(15, 66, 41);
}
.icon-icon-farming-layer .path5:before {
  content: "\e921";
  margin-left: -1.009765625em;
  color: rgb(15, 66, 41);
}
.icon-greenhouse1:before {
  content: "\e907";
  color: #0f4229;
}
.icon-seeding1:before {
  content: "\e90c";
  color: #0f4229;
}
.icon-watering-can1:before {
  content: "\e90d";
  color: #0f4229;
}
.icon-icon1:before {
  content: "\e90e";
  color: #fff;
}
.icon-icon21:before {
  content: "\e90f";
  color: #fff;
}
.icon-icon31:before {
  content: "\e910";
  color: #fff;
}
.icon-seed:before {
  content: "\e900";
  color: var(--maincolor);
}
.icon-farming:before {
  content: "\e901";
  color: var(--maincolor);
}
.icon-hand-gloves:before {
  content: "\e902";
  color: var(--maincolor);
}
.icon-fruit-box:before {
  content: "\e903";
  color: var(--maincolor);
}
.icon-Group-660:before {
  content: "\e904";
  color: var(--maincolor);
}
.icon-Group-661:before {
  content: "\e905";
  color: var(--maincolor);
}
/* */

/* ANIMATION */

@-webkit-keyframes ripple {
  70% {
      box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
      box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* */

@media (min-width: 320px) {#sp-top1 .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 576px) {#sp-top1 .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 768px) {#sp-top1 .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 992px) {#sp-top1 .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-top1 .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;}}


@media (min-width: 320px) {#sp-top3 .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 576px) {#sp-top3 .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 768px) {#sp-top3 .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 992px) {#sp-top3 .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-top3 .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;}}

@media (min-width: 320px) {#sp-bottom1  .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 576px) {#sp-bottom1  .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 768px) {#sp-bottom1  .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 992px) {#sp-bottom1 .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-bottom1  .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;}}


@media (min-width: 320px) {#sp-footer  .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 576px) {#sp-footer  .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 768px) {#sp-footer  .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 992px) {#sp-footer .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-footer  .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}


@media (min-width: 320px) {#sp-banner  .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 576px) {#sp-banner  .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 768px) {#sp-banner  .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}
@media (min-width: 992px) {#sp-banner .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {#sp-banner  .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}


@media (min-width: 320px) {.contained-row  .sppb-container-inner {max-width: 400px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 576px) {.contained-row  .sppb-container-inner {max-width: 540px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 768px) {.contained-row  .sppb-container-inner {max-width: 720px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 992px) {.contained-row .sppb-container-inner {max-width: 960px;width: 100%;
margin-right: auto;
margin-left: auto;}}
@media (min-width: 1200px) {.contained-row  .sppb-container-inner {max-width: 1140px;width: 100%;
margin-right: auto;
margin-left: auto;}}



/* J4 Optimization */

.sp-megamenu-wrapper, #sp-header > .container > .container-inner > .row > div > .sp-column,
#sp-header > .row > div > .sp-column  {display: block !important;}

#sp-header .sp-module {
	margin-left: 0px !important; 
}

@media (min-width: 1400px) {#sp-footer  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-banner  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-bottom1  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-top1  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {#sp-top3  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.contained-row  .sppb-container-inner {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.sppb-row-container {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}

@media (min-width: 1400px) {.sp-slider .sppb-container {max-width: 1320px;width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;}}




:root {
    --maincolor: #374874 !important;
    --secondcolor: #0f4229 !important;
    --thirdcolor: #e8f5e9 !important;
    --fourthcolor: #525368 !important;
    --fifthcolor: #181818 !important;
}

/* RTL OPTIMIZE 

.sppb-text-left {
	text-align: right;
}

.sppb-text-right {
	text-align: left;
}

.sp-megamenu-parent > li + li > a {
	margin-right: 38px;
	margin-left: 0;
}

.sppb-panel-heading .sppb-toggle-direction {
	left: 15px;
	right: auto;
}

.article-info > span i {
	margin-left: 8px;
}



@media (max-width:767px){
#modal-menu {
left: 0;
}
}

*/