@import url("../css/bootstrap-icons.css");
:root {
    --primary-site: #0C694A;
    --secondary-site: #ED9B60;
    --green-site: #086D50;
    --red-site: #EC0D35;
    --gray-site: #595959;
    --brown-site: #C39D73;
    --light-site: #ECA463;
    --border-site: #8A8A8A;
    --greenborder-site: #208A66;
    --greenhover-site: #006A4B;
    --text-site: #465551;
    --textdark-site: #727272;
    --textdarker-site: #4A4A4A;
    --textlight-site: #827D7D;
    --textlighter-site: #A5A5A5;
    --textp-site: #465551;
    --textinner-site: #AFABAB;
    --back-site: #F5F5F5;
    --backdark-site: #988B8B;
    --backbtn-site: #E8EFED;
    --backitem-site: #F6F6F6;
    --backmenu-site: #D9D9D9;
    --black-site: #000;
    --white-site: #fff;
    --radius-20: 20px;
    --radius-15: 15px;
    --radius-10: 10px;
    --radius-5: 5px;
    --radius-2: 2px;
    --font-sx: 12px;   
    --font-s: 14px;
    --font-xs: 15px;
    --font-m: 16px;
    --font-l: 17px;
    --font-xl: 18px;
    --font-xxl: 20px;
}
@media (max-width:992px){
    :root {
        --font-sx: 10px;
        --font-s: 12px;
        --font-xs: 13px;
        --font-m: 14px;
        --font-l: 15px;
        --font-xl: 16px;
        --font-xxl: 18px;
    }
}
/*-------------------------------Reset-------------------------------*/
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 100;
    src: url("../fonts/static/Inter-Thin.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 200;
    src: url("../fonts/static/Inter-ExtraLight.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 300;
    src: url("../fonts/static/Inter-Light.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 400;
    src: url("../fonts/static/Inter-Regular.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 500;
    src: url("../fonts/static/Inter-Medium.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 600;
    src: url("../fonts/static/Inter-SemiBold.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 700;
    src: url("../fonts/static/Inter-Bold.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 800;
    src: url("../fonts/static/Inter-ExtraBold.ttf");
}
@font-face {
    font-family: 'SiteFont';
    font-style: normal;
	font-weight: 900;
    src: url("../fonts/static/Inter-Black.ttf");
}
@font-face {
    font-family: 'Helvatica';
    font-style: normal;
	font-weight: 900;
    src: url("../fonts/static/Inter-Black.ttf");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-align: justify;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	direction: ltr;
	font-family: 'SiteFont' !important;
    font-size: normal !important;
    background-color: var(--back-site);
    overflow-x: hidden;
}
a,
a:hover {
    text-decoration: none;
    color: inherit;
}
p {
    font-weight: normal;
    text-align: justify;
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-weight: bold;
}
label,
button,
select {
    font-weight: normal;
}
strong {
    font-weight: bold !important;
}
span,
b,
label,
p,
a,
tr,
figcaption {
    font-weight: normal;
}
ul {
    list-style-type: none;
    margin: unset;
    padding: 0;
}
input {
    background-color: transparent !important;
}
input:focus {
    box-shadow: unset !important;
}
input[type="text"]{
    min-height: 45px;
}
.textarea:focus {
    box-shadow: unset !important;
}
.select:focus {
    box-shadow: unset !important;
}
.bi {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.btn:hover {
    color: inherit;
    transition: 0.5s;
}
.btn:focus{
    box-shadow: unset;
}
.central {
    display: flex;
    align-items: center;
    justify-content: center;
}
.justify {
    display: flex;
    justify-content: center;
}
.align {
    display: flex;
    align-items: center;
}
.page-padding {
    padding: 50px 0;
}
.section-padding {
    padding: 30px 0;
}
.linkbox {
    position: relative;
}
.linkbox a {
    position: absolute;
    inset: 0 0 0 0;
    z-index: 10;
}
.linkitem {
    position: relative;
}
.linkitem a::after {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    z-index: 10;
}
::placeholder {
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
::-webkit-select-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
:-ms-select-placeholder {
    /* IE 10+ */
    font-family: 'SiteFont' !important;
    font-size: 16px !important;
    color: #8C8C8C !important;
}
span.H1 {
    font-size: 2.25rem;
    font-weight: bold;
}
span.H2 {
    font-size: 2rem;
    font-weight: bold;
}
span.H3 {
    font-size: 1.75rem;
    font-weight: bold;
}
span.H4 {
    font-size: 1.5rem;
    font-weight: bold;
}
span.H5 {
    font-size: 1.25rem;
    font-weight: bold;
}
span.H6 {
    font-size: 1rem;
    font-weight: bold;
}
.container {
    width: 90%;
    max-width: 90%;
    padding: 0;
}
.rote180 {
    transition: 0.5s;
    transform: rotate(180deg);
}
.row {
    margin: 0;
    padding: 0;
}
.primary-btn {
    content: 'Read More...';
    width: 100%;
    height: 50px;
    border: 1px solid var(--primary-site);
    background-color: transparent;
    color: var(--primary-site);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-2);
    font-size: var(--font-xl);
    transition: 0.5s;
}
.primary-btn:hover {
    color: var(--white-site);
    border-color: var(--light-site);
    background-color: var(--light-site);
}
.secondary-btn {
    width: 100%;
    height: 65px;
    border: 2px solid var(--primary-site);
    background-color: var(--primary-site);
    color: var(--white-site);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-2);
    font-size: 28px;
    transition: 0.5s;
}
.secondary-btn:hover {
    background-color: transparent;
    color: var(--white-site);
}
.default-btn {
    width: 100%;
    height: 65px;
    border: 2px solid var(--white-site);
    background-color: transparent;
    color: var(--white-site);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-2);
    font-size: 28px;
    transition: 0.5s;
}
.default-btn:hover {
    background-color: var(--white-site);
    color: var(--primary-site);
}
/*---------------------------------------------------------Home-----------------------------------------------------------*/
/*---------------------------------------header-----------------------------------------*/
/*------------------------desktop-menu--------------------------*/
header {
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-top {
    background-color: var(--primary-site);
    color: var(--white-site);
}
.header-top-inner {
    justify-content: space-between;
}
.header-contact {
    height: 50px;
    padding: 10px 70px;
    background-color: rgba(255,255,255,20%);
    font-size: var(--font-m);
}
.header-contact:hover {
    color: var(--black-site);
    transition: 0.5s;
}
.header-register,
.header-login {
    height: 50px;
    border-bottom: 5px solid transparent;
    margin-left: 20px;
    padding: 10px;
    transition: 0.5s;
}
.header-register span,
.header-login span {
    font-weight: 200;
    font-size: var(--font-s);
}
.header-register:hover,
.header-login:hover {
    border-color: var(--secondary-site);
}
.header-bottom {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(7.5px);
    height: 100px;
    position: relative;
}
.navbar-brand {
    margin: 0;
    padding: 0;
    height: 100px;
}
.navbar-brand img {
    width: 220px;
    height: auto;
}
.header-bottom-right {
    border-left: 1px solid var(--green-site);
}
.header-bottom-right > div {
    margin-left: 20px;
    padding: 5px 0;
}
.header-bottom-right > div span {
    color: var(--primary-site);
    font-size: var(--font-s);
    margin-right: 5px;
    white-space: nowrap;
}
.desktop-menu .navbar {
    position: unset;
}
.desktop-menu .nav-item {
    height: 100px;
}
.desktop-menu .nav-item .nav-link {
    height: 100%;
    width: 100%;
    padding: 5px;
    transition: 0.2s;
    color: var(--black-site);
}
.desktop-menu .nav-item:hover .nav-link {
    color: var(--primary-site);
}
.desktop-menu .nav-item:not(.megamenu-item) {
    position: relative;
}
.desktop-menu .nav-item:not(.megamenu-item)::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: var(--white-site);
    /*box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);*/
    border-radius: 0 0 50px 50px;
    position: absolute;
    bottom: 0px;
    transition: 0.2s;
    opacity: 0;
}
.desktop-menu .nav-item:not(.megamenu-item):hover:after {
    bottom: -3.5px;
    opacity: 1;
}
/*------------------------mega-menu--------------------------*/
.megamenu-box {
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    /*box-shadow: 0 13px 12px -11px #747474;*/
    display: none;
}
.megamenu-box.show {
    display: block;
}
.megamenu-title {
    height: fit-content;
    min-height: 100%;
    background: radial-gradient(100% 363.85% at 0% 50%, #0C694A 0%, #047E56 100%);
}
.megamenu-title-item {
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--greenborder-site);
}
.megamenu-title-item:last-child {
    border-bottom-color: transparent;
}
.megamenu-title-name {
    font-size: var(--font-m);
    color: var(--white-site);
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.25);
}
.megamenu-btn {
    padding: 0;
}
.megamenu-title-item:hover .megamenu-title-name,
.megamenu-title-item.active .megamenu-title-name {
    transition: 0.3s;
    color: var(--brown-site);
}
.megamenu-title-item:hover .megamenu-btn svg path,
.megamenu-title-item.active .megamenu-btn svg path {
    transition: 0.3s;
    stroke: var(--brown-site);
}
.megamenu-content-default {
    background-color: var(--backmenu-site);
    height: fit-content;
    min-height: 100%;
}
.megamenu-content-default.unshow {
    display: none;
}
.megamenu-content-default-inner {
    flex-direction: column;
}
.megamenu-content-default-text1 {
    color: var(--black-site);
    font-size: 1.75rem;
    margin-bottom: 5px;
}
.megamenu-content-default-text2 {
    text-align: center;
    font-weight: 500;
    font-size: var(--font-xxl);
    color: var(--primary-site);
    margin-bottom: 5px;
}
.megamenu-content-default-text3 {
    color: var(--brown-site);
    font-weight: 800;
    font-size: 2rem;
}
.megamenu-content-item {
    background-color: var(--brown-site);
    height: fit-content;
    min-height: 100%;
    max-height: 80vh;
    overflow: auto;
    display: none;
}
.megamenu-content-item.show {
    display: flex;
}
.megamenu-content-link {
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--greenborder-site);
}
/*.megamenu-content-link:last-child {
    border-bottom-color: transparent;
}*/
.megamenu-content-name {
    font-size: var(--font-m);
    font-weight: 600;
    color: var(--white-site);
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.25);
}
.megamenu-content-link:hover .megamenu-content-name {
    transition: 0.3s;
    color: var(--greenhover-site);
}
.megamenu-content-link:hover .megamenu-btn svg path {
    transition: 0.3s;
    stroke: var(--greenhover-site);
}
.megamenu-item:nth-child(4) .megamenu-content-default {
    display: flex !important;
}
/*------------------------mobile-menu--------------------------*/
.mobile-menu {
	height: 100vh;
	width: 0;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	top: -40px;
	left: 100%;
	transition: 0.5s;
	z-index: 100;
	background-color: #0f6240;
}
.mobile-menu.show {
    left: 0;
    width: 100%;
}
.mobile-menu-close {
	margin-bottom: 0;
	justify-content: flex-start;
	position: absolute;
	left: 10px;
	top: 29px;
}

.mobile-menu-dropdown-item-title svg path{
    fill: #fff;
}
.mobile-menu-close-btn {
    font-size: 0.75rem;
    /* border: 1px solid var(--border-site); */
    border-radius: var(--radius-10);
    padding: 0;
    width: 30px;
    height: 30px;
}
.mobile-menu-img img {
    width: auto;
    height: auto;
}
/* .mobile-menu-dropdowns {
    margin: 20px 0;
} */
.mobile-menu-dropdown-item1 {
    padding: 10px;
    border-bottom: 1px solid #E4E4E4;
    font-size: var(--font-xxl);
}
.mobile-menu-links a {
	padding: 10px !important;
	border-bottom: 1px solid #E4E4E4;
	font-size: var(--font-xxl);
	color: #fff !important;
}
.mobile-menu-dropdown-item-title {
	cursor: pointer;
	color: #fff;
}
.mobile-menu-dropdown-item-title svg {
    transition: 0.5s;
}
.mobile-menu-dropdown-content1 {
    padding: 10px;
    font-size: var(--font-xl);
    display: none;
}

.mobile-menu-dropdown-content1 .mobile-menu-dropdown-item-title span {
    color: #0f6240;
}
.mobile-menu-dropdown-content1  .mobile-menu-dropdown-item-title svg path {
	fill: #0f6240;
}
.mobile-menu-dropdown-item2 {
    margin-top: 5px;
}
.mobile-menu-dropdown-content2 {
    padding: 10px;
    font-size: var(--font-l);
    display: none;
}
.mobile-menu-dropdown-item3 {
    margin-top: 5px;
}
.mobile-menu-links a {
    width: 100%;
    padding: 5px 0;
    font-size: var(--font-xxl);
    color: var(--black-site);
    transition: 0.5s;
}
.mobile-menu-links a:hover {
    color: var(--primary-site);
}

.header-contact a {
    z-index: unset;
}
/*---------------------------------------main-slider-----------------------------------------*/
.main-slider {
    position: relative;
}
.main-slider img {
	height: auto;
	min-height: 200px;
	object-position: right;
}
.slider-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 10;
}
.slider-text p {
    color: var(--white-site);
    font-weight: 900;
    font-size: 3rem;
    text-align: left;
}
/*---------------------------------------home-products-----------------------------------------*/
.product-caption {
    padding: 20px;
    height: 208px;
    background-color: var(--backitem-site);
    transition: 0.5s;
}
.product-caption p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    font-size: var(--font-m);
    transition: 0.3s;
}
.product-item:hover .product-caption {
    background-color: var(--backbtn-site);
}
.product-item:hover .product-caption p {
    color: var(--textp-site);
}
.product-btn {
    height: 80px;
}
.product-item:hover .primary-btn {
    color: var(--white-site);
    border-color: var(--light-site);
    background-color: var(--light-site);
    height: 80px;
}
/*---------------------------------------home-banner-----------------------------------------*/
.home-banner {
    position: relative;
}
.home-banner > img {
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.home-banner-text {
    color: var(--white-site);
}
.home-banner-text > span {
    font-weight: 900;
    font-size: 2rem;
}
.home-banner-text p {
    font-size: var(--font-xxl);
    margin: 30px 0;
}
/*---------------------------------------home-highlights-----------------------------------------*/
.home-highlights-topinner {
    flex-wrap: wrap;
}
.home-highlights-topinner img {
    width: auto;
    height: auto;
    margin-right: 20px;
}
.home-highlights-topinner span {
    font-weight: 200;
    color: var(--textlight-site);
    font-size: 2rem;
}
.home-highlights-bottom {
    background: linear-gradient(180deg, #F1F1F1 0%, rgba(255, 255, 255, 0) 100%);
}
.highlight-item {
    height: 280px;
}
.highlight-item-parent {
    height: 160px;
    overflow: hidden;
    transition: 0.5s;
}
.highlight-item:hover .highlight-item-parent {
    background-color: rgba(175,175,175,10%);
    height: 278px;
}
.highlight-item-inner {
    padding: 20px;
}
.highlight-title img {
	width: 80px !important;
	height: 50px;
	margin-right: 10px;
	border-radius: 5px;
}
.highlight-title span {
    color: var(--textdark-site);
    font-size: var(--font-xl);
    white-space: nowrap;
}
.highlight-amount {
    margin: 5px 0;
}
.highlight-amount span:first-child {
    font-weight: 200;
    font-size: 2rem;
    margin-right: 15px;
}
.highlight-amount span:last-child {
    font-weight: 500;
    font-size: var(--font-xxl);
}
.highlight-change {
    background-color: var(--green-site);
    box-shadow: 0px 7px 10px -4px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-5);
    padding: 5px;
    margin-right: 10px;
}
.highlight-details.decrease .highlight-change {
    background-color: #EC0D35;
}
.highlight-change span {
    color: var(--white-site);
    text-shadow: 0px 1px 0px #620616;
    margin-right: 5px;
}
.highlight-text {
    color: var(--textlighter-site);
    margin: 20px 0 10px 0;
    font-size: var(--font-sx);
    text-align: left;
}
.highlight-btn {
    padding: 5px;
    background-color: var(--backbtn-site);
}
/*---------------------------------------footer-----------------------------------------*/
.footer-top {
    background-color: var(--gray-site);
}
.footer-item {
    margin: 0 20%;
}
.footer-item:hover .footer-item-text svg {
    transition: 0.5s;
    transform: translateX(5px);
}
.footer-item-text {
    margin-left: 10px;
    color: var(--white-site);
}
.footer-item-text span {
    font-size: var(--font-xl);
    margin-bottom: 10px;
    display: block;
}
.footer-item-text p {
    color: var(--textlighter-site);
    text-align: left;
}
.footer-item-text svg {
    margin-left: 10px;
}
.footer-bottom {
    background-color: var(--black-site);
    color: var(--white-site);
}
.footer-download-btn {
    padding: 5px;
    width: fit-content;
    border: 1px solid transparent;
    border-radius: var(--radius-2);
    font-size: var(--font-s);
    transition: 0.5s;
}
.footer-download-btn span:last-child {
    color: var(--textdarker-site);
    margin-left: 5px;
    font-size: 11px;
}
.footer-download-btn:hover {
    border-color: var(--border-site);
}
.footer-link {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}
.footer-link a {
    padding: 5px;
    font-size: var(--font-s);
    transition: 0.3s;
}
.footer-link a:hover {
    color: var(--primary-site);
}
.footer-right {
    font-size: var(--font-s);
}
.footer-img {
    margin-bottom: -10px;
}
.footer-img img {
    width: auto;
    height: auto;
}
.footer-copyright-borderedtext {
    border-bottom: 1px solid var(--primary-site);
    color: var(--primary-site);
    flex: 1;
}
.footer-copyright-text {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--white-site);
}
.signature {
    color: var(--white-site);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 40px;
}
/*---------------------------------------------------------Image-----------------------------------------------------------*/
/*---------------------------------------page-banner-----------------------------------------*/
.page-banner {
    height: 50px;
}
.page-banner img {
    height: 100%;
}
/*---------------------------------------page-content-----------------------------------------*/
.page-content-item {
    margin-bottom: 30px;
}
.page-content-item:last-child {
    margin-bottom: 0;
}
.page-content-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.page-content-text p:nth-child(1) {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 10px;
}
.page-content-text p:nth-child(2) {
    font-size: var(--font-m);
    margin-bottom: 10px;
}
.page-content-text p:nth-child(3) {
    font-size: var(--font-m);
    color: var(--textinner-site);
    margin-bottom: 10px;
}
.page-content-text p span {
    color: var(--primary-site);
}
.page-content-text .primary-btn {
    margin-top: auto;
}
.page-content-img img {
    border-radius: var(--radius-10);
}
.page-content-img video {
    width: 100%;
    height: 100px;
    border-radius: var(--radius-10);
}
/*---------------------------------------page-footer-----------------------------------------*/
.page-footer {
    position: relative;
}
.page-footer > img {
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
}
.page-footer-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.page-footer-text img {
    width: auto;
    height: auto;
    margin-bottom: 20px;
}
.page-footer-text p {
    color: var(--white-site);
    font-weight: 800;
    font-size: var(--font-xxl);
}
.page-footer-btn .secondary-btn {
    height: 50px;
    font-size: 22px;
}
/*---------------------------------------------------------Media-----------------------------------------------------------*/
@media (max-width:1399px) {
    .slider-text p {
        font-size: 2.5rem;
    }
    .footer-item {
        margin: 0;
    }
}
@media (max-width:991px) {
    .header-contact {
        height: 40px;
        padding: 10px;
    }
    .header-register,
    .header-login {
        height: 40px;
        margin-left: 10px;
    }
    .header-bottom {
        height: fit-content;
    }
    .slider-caption .row > div {
        height: fit-content !important;
    }
    .navbar-brand {
        height: 60px;
    }
    .header-menu {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-item {
        margin-bottom: 35px;
    }
    .footer-top .col-lg-3:last-of-type .footer-item {
        margin-bottom: 0;
    }
    .header-bottom-right {
        border-left-color: transparent;
    }
    .slider-caption {
        padding: 0;
    }
    .slider-caption .row.h-100 {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .footer-right {
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-site);
    }
    .page-content-item.odd .row {
        flex-direction: column-reverse;
    }
    .page-content-text {
        margin-top: 5px;
    }
    .page-content-item {
        border: 1px solid var(--textinner-site);
        border-radius: var(--radius-10);
        padding: 10px;
    }
}
@media (max-width:575px) {
    .slider-text p {
        font-size: 15px;
    }
    .slider-btns .btn {
        font-size: 14px;
        height: 35px;
    }
    .product-caption {
        height: 136px;
    }
    .product-caption p {
        -webkit-line-clamp: 4;
    }
    .home-banner-text > span {
        font-size: 16px;
    }

    .home-banner-text > p {
        font-size: 14px;
    }

    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-copyright-borderedtext {
        width: 100%;
        margin-bottom: 5px;
    }
    .footer-copyright-text {
        margin-left: 0;
    }
    .footer-link a {
        width: 50%;
    }
    .signature {
        margin-top: 30px;
    }
    .page-footer-btn {
        margin-top: 10px;
    }
    .page-content-text p:nth-child(1) {
        font-size: 1.5rem;
    }
}
/*========================edit in 1401/07/20===========================*/
#infinity-content .col-lg-6 {
  margin-top: 10px;
}
.lastBlog {
  margin-bottom: 30px;
}
.titleText {
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
  font-size: var(--font-xxl);
}
.related_card p {
  padding: 10px 10px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.blog-item-div {
  padding: 10px;
}
.blog-item-description {
  margin-top: 10px;
}
.blog-item-description1 p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.blog-item-title1 p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: left;
  font-weight: bold;
}
.blog-item1 {
  margin-bottom: 10px;
}
.home-banner-text > span {
	text-align: left !important;
	display: inherit;
}
.home-banner-text p {
  text-align: left;
}
.main-slider {
  margin-top: -25px;
}
.contact-item * {
  margin-bottom: 5px;
  margin-right: 5px;
  display: inline;
}
.megamenu-content-link {
  border-bottom: 1px solid var(--greenborder-site);
}
.megamenu-content-inner:last-child a {
  border-bottom-color: transparent;
}
/*commented line 565*/
@media (max-width: 575px) {
	.signature {
	  font-size: 15px;
	}
}
/*====================1401/07/23====================*/
.product-caption p {
  text-align: left;
}
.home-highlights-topinner span {
  font-weight: bold;
  font-size: var(--font-xl);
}
.home-highlights-topinner span p {
  font-weight: normal;
  font-size: var(--font-m);
}
.home-highlights-top.page-padding {
  background-color: var(--white-site);
}
.related_card p {
  text-align: left;
}
.blog-item-description1 p {
  text-align: left;
}
.service-content img {
  width: auto;
  height: auto;
  object-fit: cover;
  margin: 10px auto;
  display: block;
}
.second-title {
    display: block;
    margin-top: 5px;
}
/*=======================1401/07/24======================*/
.signature {
  display: none;
}
.home-banner-text p {
  margin: 0;
}
.mobile-menu-dropdown-item2 {
  margin-top: 10px;
}
.mobile-menu-dropdown-content1 {
	color: var(--primary-site);
	background: #ebebeb;
	border-radius: 5px;
}
.mobile-menu-dropdown-content2 {
	color: var(--secondary-site);
	background: #fff;
	border-radius: 5px;
}
.mobile-menu-dropdown-all {
  margin-bottom: 5px;
}

/*================sina=================*/
.mobile-menu-img  {
	border-bottom: 2px solid #333;
	background: white;
	padding: 15px;
}

.career-mobile{
    display: none;
}


@media(max-width: 991px){
    .navbar-brand img {
        width: 110px;
        height: auto;
    }

    .header-bottom {
        background: linear-gradient(white 59px,#dfdfdf 60px);
        backdrop-filter: blur(7.5px);
        height: 100px;
        position: relative;
    }
    .page-padding {
        padding: 10px 0;
    }
    .highlight-item:hover .highlight-item-parent {
        height: 160px;
    }
    
.career-mobile{
    display: block;
}

.mobile-menu-links a:first-child{
    display: none;
}
}