@import url(helper.css);
@font-face {
  font-family: "Somar-Bold";
  src: url(../fonts/somar/Somar-Bold.otf);
}.product-det table td
@font-face {
  font-family: "Somar-Medium";
  src: url(../fonts/somar/Somar-Medium.otf);
}
@font-face {
  font-family: "Somar-Light";
  src: url(../fonts/somar/Somar-Light.otf);
}
@font-face {
  font-family: "Azer-light";
  src: url(../fonts/azer/Azer-light.otf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #106836;
  --sub-color: #0C2646;
  /* --subColor2: #77643d; */
}

.main-color {
  color: var(--main-color) !important;
}

.main-back {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.sub-color {
  color: var(--sub-color) !important;
}

.sub-back {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-color) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Azer-light";
  text-decoration: none;
  font-size: 21px;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  color: #0C2646;
}

.somar-light {
  font-family: "Somar-Light";
}

.somar-font {
  font-family: "Somar-Light";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Somar-Bold";
  margin: 0;
  line-height: 1.4;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

.dir_ltr {
  direction: ltr;
  display: inline-block;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 21px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.bg_light {
  background-color: #F0F2F6;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  padding: 15px 35px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  border: 0;
  background: var(--main-color);
  color: #fff;
  font-family: "Somar-Light";
}

.butn:hover {
  color: #fff;
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
}

.butn.butn-white {
  background: #fff;
  color: var(--main-color);
}

.butn.butn-white:hover {
  background-color: var(--main-color);
  color: #fff;
}

.butn.butn-border {
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.butn.butn-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.butn.md-butn {
  padding: 12px 25px;
  font-size: 13px;
}

.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.butn.hvr-scale:hover {
  transform: scale(1.1);
}

.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}

.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}

.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
}

.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}

.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 20px 0;
  z-index: 999;
}

.navbar.nav-scroll {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
  transform: translateY(100px);
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 24px;
  margin-inline-end: 20px;
}

.navbar .navbar-nav .nav-item.has_dropdown {
  position: relative;
  padding-inline-end: 0px;
}

.navbar .navbar-nav .nav-item.has_dropdown::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  inset-inline-end: 10px;
  top: 20px;
  color: #888;
  transition: all 0.3s linear;
  font-size: 12px;
  /*transform: rotate(180deg);*/
}

.navbar .navbar-nav .nav-item.has_dropdown .drop_down {
  position: absolute;
  top: 65px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  min-width: 200px;
  transition: all 0.3s linear;
  box-shadow: 3px 6px 15px 0 rgba(0, 0, 0, 0.0666666667);
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}

.navbar .navbar-nav .nav-item.has_dropdown:hover .drop_down {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.navbar .navbar-nav .nav-item.has_dropdown .drop_down a {
  display: block;
  padding: 0.5rem 1rem;
  /*text-align: center;*/
  color: #888;
  border-radius: 5px;
  transition: all 0.3s linear;
  position: relative;
}

.navbar .navbar-nav .nav-item.has_dropdown .drop_down a i {
  font-size: 14px;
  margin-inline-start: 5px;
}

.navbar .navbar-nav .nav-item.has_dropdown .drop_down a:hover {
  background: #f8f8f8;
  color: var(--main-color);
}

/* --------------- header --------------- */
.header {
  position: relative;
  z-index: 10;
}

.header .video,
.header .video-card {
  position: relative;
}

.header .video-card:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}

.header .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 150px 0;
  z-index: 20;
  color: #fff;
}

.header .info h1 {
  position: relative;
  font-size: 115px;
  font-weight: bolder;
  line-height: 1;
  text-shadow: 0 0 4px rgba(37, 36, 38, 0.9);
}

.header .info .sub-title {
  position: relative;
  font-size: 85px;
  font-weight: 100;
  text-shadow: 0 0 4px rgba(37, 36, 38, 0.9);
}

.header .shap {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 50%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 0;
  opacity: 0.2;
}

/* --------------- shapes-sec --------------- */
.shapes-sec {
  position: relative;
}

.shapes-sec::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-image: url(../images/shap-top.png);
  background-position: top;
  background-repeat: repeat-x;
  z-index: 10;
}

.shapes-sec::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-image: url(../images/shap-btm.png);
  background-position: bottom;
  background-repeat: repeat-x;
  z-index: 10;
}

/* --------------- about --------------- */
.about {
  position: relative;
}

.about .content {
  position: relative;
  z-index: 20;
}

.about .content .shap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  max-height: 610px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- vision --------------- */
.vision {
  position: relative;
  background-image: url(../images/vision-bg.jpg);
  background-size: cover;
  color: #fff;
}

.vision .imgs {
  position: relative;
  clip-path: polygon(92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%, 0 0);
}

.vision .imgs .img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

/* --------------- categs_sec --------------- */
.categs_sec {
  overflow: hidden;
}

.categs_sec a {
  display: block;
}

.categs_sec .categ_box .img_box {
  overflow: hidden;
  border-radius: 15px;
}

.categs_sec .categ_box .img_box img {
  border-radius: 15px;
  height: 200px;
  transition: all 0.3s linear;
}

.categs_sec .categ_box .title {
  margin-top: 15px;
  text-align: center;
  transition: all 0.3s linear;
}

.categs_sec .categ_box:hover .title {
  color: var(--main-color);
}

.categs_sec .categ_box:hover .img_box img {
  transform: scale(1.1) rotate(3deg);
}

/* --------------- values --------------- */
.values {
  position: relative;
}

.values .cards {
  display: flex;
  padding-top: 30px;
}

.values .cards .item {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  z-index: 10;
  padding: 20px 30px;
  text-align: center;
  margin-top: 30px;
}

.values .cards .item h6 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.values .cards .item .txt {
  max-height: 63px !important;
  overflow: hidden;
}

.values .cards .item .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.values .cards .item .arrow {
  position: absolute;
  top: 75px;
  right: -40px;
  width: 100%;
  transform: rotate(180deg);
}

.values .cards .item .check {
  position: absolute;
  top: 55px;
  right: -40px;
  width: 100px;
}

.values .cards .item .num {
  position: absolute;
  left: calc(50% - 20px);
  bottom: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  padding-top: 5px;
}

.values .cards .item:nth-of-type(even) .line {
  transform: rotate(180deg);
}

.values .cards .item:nth-of-type(even) .num {
  bottom: auto;
  top: -20px;
}

/* --------------- story --------------- */
.story {
  position: relative;
  background-color: #F0F2F6;
}

.story .cards {
  position: relative;
  z-index: 20;
}

.story .cards::after {
  position: absolute;
  content: "";
  left: 0;
  top: 252px;
  height: 1px;
  width: 100%;
  background-color: #000;
  z-index: -1;
}

.story .cards .row .col-lg-3:nth-of-type(even) .story-item {
  margin-top: 240px;
  flex-direction: column-reverse;
}

.story .story-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.story .story-item .txt {
  max-height: 90px;
  overflow: hidden;
}

.story .story-item .circle {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  outline: 5px solid rgba(16, 104, 54, 0.1333333333);
}

/* --------------- investments --------------- */
.investments {
  position: relative;
  overflow: hidden;
}

.investments .invest-slider {
  position: relative;
}

.investments .invest-slider .swiper-slide {
  height: auto;
}

.investments .invest-card {
  position: relative;
  padding: 30px;
  height: 100%;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
}

.investments .invest-card .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: bottom;
  z-index: -1;
  opacity: 0.5;
}

.swiper-arrows {
  position: relative;
  width: 130px;
  height: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  transition: all 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--main-color);
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-color: var(--sub-color);
  color: #fff;
  z-index: 20;
}

.footer .shap {
  position: absolute;
  top: 0;
  left: 30%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.footer .social-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.footer .social-wrapper .social-icons a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-inline-end: 3px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer .foot-title {
  position: relative;
  font-size: 30px;
  color: #1DA872;
  margin-bottom: 15px;
}

.footer .main-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.footer .main-links li {
  position: relative;
  width: 33%;
}

.footer .main-links li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}

.footer .foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1333333333);
}

/* --------------- about_cards_sec  --------------- */
.about_cards_sec {
  padding-bottom: 80px;
}

.about_cards_sec .about_card {
  padding: 35px;
  padding-bottom: 45px;
  background-color: #fff;
  border: 1px solid rgba(101, 115, 153, 0.1647058824);
  border-radius: 23px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  position: relative;
}

.about_cards_sec .about_card .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-bottom: 35px;
}

.about_cards_sec .about_card .title {
  font-size: 38px;
  margin-bottom: 15px;
}

.about_cards_sec .about_card .p {
  color: #0C2646;
  line-height: 1.6;
}

.mt_lg_80 {
  margin-top: -80px;
  position: relative;
  z-index: 99;
}

/* --------------- team_sec  --------------- */
.team_sec .team_card {
  position: relative;
  margin-bottom: 25px;
}

.team_sec .team_card .img_box {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;
}

.team_sec .team_card .img_box .img {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team_sec .team_card .img_box .social_link {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.team_sec .team_card .img_box::before {
  content: "";
  background: url(../images/team_border.svg) no-repeat center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.team_sec .team_card .card-body {
  text-align: center;
}

.team_sec .team_card .card-body .name {
  color: #0C2646;
  font-size: 38px;
}

.team_sec .team_card .card-body .job {
  color: var(--main-color);
  font-size: 20px;
}

.team_sec .team_card .card-body .text {
  color: #657399;
}

/* --------------- pg_header  --------------- */
.pg_header {
  position: relative;
}

.pg_header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 600px;
  background: url(../images/pg_header.svg) no-repeat center;
  background-size: cover;
}

.pg_header .container {
  position: relative;
  z-index: 9;
}

/* --------------- partners_pg  --------------- */
.partners_pg {
  padding: 80px 0;
}

.partners_pg .partner_card {
  position: relative;
  margin-bottom: 45px;
}

.partners_pg .partner_card .title {
  margin-bottom: 15px;
  line-height: 1;
}

.partners_pg .partner_card .img_box {
  height: 340px;
  border-radius: 23px;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners_pg .partner_card .img_box .logo {
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners_pg .partner_card .card-body {
  padding-inline-start: 2vw;
  position: relative;
}

.partners_pg .partner_card .card-body::before {
  content: "";
  width: 6px;
  height: calc(100% - 2rem);
  background-image: linear-gradient(to bottom, #106836, rgba(16, 104, 54, 0.168627451), transparent);
  position: absolute;
  inset-inline-start: 0;
  top: 2rem;
}

/* --------------- blog_pg  --------------- */
.blog_pg {
  padding: 80px 0;
}

.blog_pg .blog_card {
  position: relative;
  margin-bottom: 30px;
  padding: 5px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.blog_pg .swiper-slide {
  height: auto;
}

.blog_pg .blog_card .img {
  border-radius: 8px;
  height: 280px;
}

.blog_pg .blog_card .card-body {
  text-align: center;
  padding: 0.7rem 1rem;
}

.blog_pg .blog_card .card-body .title {
  line-height: 1;
}

.blog_pg .blog_card .card-body .text {
  height: 162px;
  overflow: hidden;
}

.blog_pg .blog_card .card-body .butn {
  border-radius: 25px;
  border: 1px solid var(--main-color);
  background-color: transparent;
}

.blog_pg .blog_card .card-body .butn .fa-arrow-down-left {
  position: relative;
  top: 3px;
}

.coloGray {
  color: #657399;
}

/* --------------- gallery_pg  --------------- */
.gallery_pg {
  padding: 80px 0;
}

.gallery_pg .img_card {
  height: 600px;
  position: relative;
  background-color: #fff;
  padding: 3px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.gallery_pg .img_card .img {
  border-radius: 5px;
}

.gallery_pg .img_card .img_butn {
  width: 65px;
  height: 65px;
  background-color: rgba(16, 26, 36, 0.3019607843);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  z-index: 9;
  transition: all 0.3s linear;
}

.gallery_pg .img_card .img_butn:hover {
  background-color: #000;
}

.gallery_pg .img_card .txt_cont {
  font-size: 38px;
  padding: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  pointer-events: none;
}

.gallery_pg .img_card::after,
.gallery_pg .img_card::before {
  content: "";
  background-image: linear-gradient(to bottom, transparent, transparent, rgba(0, 0, 0, 0.5333333333));
  z-index: 1;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  z-index: 5;
  pointer-events: none;
  transition: all 0.3s linear;
}

.gallery_pg .img_card::after {
  opacity: 0;
  z-index: 6;
  background-image: linear-gradient(to bottom, transparent, rgba(16, 104, 54, 0.5490196078));
}

.gallery_pg .img_card:hover::after {
  opacity: 1;
}

.gallery_pg .vid_card {
  position: relative;
  margin-bottom: 30px;
  padding: 5px;
  background-color: #fff;
  border-radius: 8px;
}

.gallery_pg .vid_card .img_box {
  height: 280px;
  position: relative;
}

.gallery_pg .vid_card .img_box .img {
  border-radius: 8px;
  height: 280px;
}

.gallery_pg .vid_card .img_box .vid_butn {
  width: 65px;
  height: 65px;
  background-color: rgba(16, 26, 36, 0.3019607843);
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  z-index: 9;
  transition: all 0.3s linear;
}

.gallery_pg .vid_card .img_box .vid_butn:hover {
  background-color: #000;
}

.gallery_pg .vid_card .card-body {
  text-align: center;
  padding: 1rem 1rem;
}

.gallery_pg .vid_card .card-body .date {
  margin-bottom: 10px !important;
}

.gallery_pg .vid_card .card-body .date i {
  margin-inline-end: 5px;
}

.gallery_pg .vid_card .card-body .title {
  line-height: 1;
}

/* --------------- job_pg  --------------- */
.job_pg {
  padding: 80px 0;
}

.job_pg .inner {
  background-color: #fff;
  border-radius: 25px;
  padding: 35px 2vw;
}

.job_pg .inner .form-group {
  position: relative;
  margin-bottom: 15px;
}

.job_pg .inner .form-group .label {
  font-size: 20px;
  color: #657399;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Somar-Light";
}

.job_pg .inner .form-group .form-control {
  border-radius: 16px;
  background-color: #F5F8F6;
  border-color: #F5F8F6;
  box-shadow: none !important;
  font-weight: bold;
}

.job_pg .inner .form-group .form-control::-moz-placeholder {
  color: #c6ced3;
}

.job_pg .inner .form-group .form-control::placeholder {
  color: #c6ced3;
}

.job_pg .inner .form-group input,
.job_pg .inner .form-group select {
  height: 52px;
}

.job_pg .inner .form-group textarea {
  resize: none;
}

.job_pg .inner .phone_group {
  direction: ltr;
}

.job_pg .inner .phone_group .label {
  text-align: right;
}

.job_pg .inner .phone_group .form-control {
  text-align: left;
  padding-left: 120px;
}

.job_pg .inner .phone_group .flag {
  width: 20px;
  height: 13px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.job_pg .inner .phone_group .phone_select {
  width: 70px;
  padding: 0;
  position: absolute;
  left: 50px;
  bottom: 0;
  border: none;
  background-color: transparent;
  box-shadow: none !important;
  background-position: right 0.75rem center;
}

.job_pg .inner .uploading_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px dashed var(--main-color);
  border-radius: 16px;
  position: relative;
  padding: 25px;
}

.job_pg .inner .uploading_box .fileName {
  text-align: center;
  border: none;
  height: 45px !important;
  background: transparent;
  width: 100%;
  color: var(--sub-color);
}

.job_pg .inner .uploading_box i {
  font-size: 30px;
  color: var(--sub-color);
  display: block;
  margin-bottom: 5px;
}

.job_pg .inner .uploading_box .browse {
  background-color: transparent;
  border: none;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.job_pg .inner .uploading_box .file {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
}

/* --------------- contact_pg  --------------- */
.contact_pg .follow_box {
  margin-top: 70px;
}

.contact_pg .follow_box .link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--sub-color);
  font-size: 20px;
}

.contact_pg .follow_box .link .icon {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  border-radius: 50%;
  margin-inline-end: 15px;
}

/* --------------- address_sec   --------------- */
.address_sec {
  position: relative;
  padding: 80px 0;
  background-color: #F0F2F6;
}

.address_sec .mapImg {
  -o-object-position: top;
  object-position: top;
  margin: 15px 0;
}

.address_sec .branch_item {
  direction: ltr;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  margin-bottom: 5px;
}

.address_sec .branch_item .icon {
  color: var(--main-color);
  font-size: 20px;
  margin-inline-end: 15px;
  position: relative;
  top: 10px;
}

.address_sec .branch_item .txt_content {
  width: calc(100% - 35px);
}

.address_sec .branch_item .txt_content .title {
  margin-bottom: 0px !important;
}

.address_sec .map_box iframe {
  margin-bottom: -12px;
}

.address_sec::before {
  content: "";
  width: 100%;
  height: 28px;
  background: url(../images/dividar-top.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.products {
  position: relative;
  overflow: hidden;
}

.product-card {
  position: relative;
  margin-top: 24px;
  min-height: calc(100% - 24px);
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.product-card .img {
  position: relative;
  display: block;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-card .info {
  position: relative;
  padding: 10px;
}
.product-card .info .card-title {
  position: relative;
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .info .text {
  position: relative;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card:hover {
  border-color: transparent;
  background-color: rgba(16, 104, 54, 0.0666666667);
}

.product-det {
  position: relative;
  overflow: hidden;
}
.product-det .img {
  position: relative;
  display: block;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  outline: 1px solid rgba(16, 104, 54, 0.2);
  outline-offset: -10px;
}
.product-det .img.main-img {
  height: 500px;
}
.product-det .img.sub-img:nth-of-type(2) {
  height: 150px;
}
.product-det .qt-cards {
  position: relative;
  display: flex;
}
.product-det .qt-cards .item {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  /*transform-origin: left;*/
  margin-inline-end: 30px;
}
/*.product-det .qt-cards .item:nth-of-type(2) {*/
/*    margin-inline-start: 30px;*/
/*}*/
/*.product-det .qt-cards .item:nth-of-type(3) {*/
/*    margin-inline-start: 10px;*/
/*}*/
/*.product-det .qt-cards .item:nth-of-type(4) {*/
    
/*}*/
/*.product-det .qt-cards .item:nth-of-type(5) {*/
    
/*}*/
/*.product-det .qt-cards .item:nth-of-type(6) {*/
    
/*}*/
/*.product-det .qt-cards .item:nth-of-type(7) {*/
    
/*}*/
.product-det .qt-cards .liter:nth-of-type(2),
.product-det .qt-cards .kilogram:nth-of-type(2),
.product-det .qt-cards .box:nth-of-type(2),
.product-det .qt-cards .gallon:nth-of-type(2) {
  transform: scale(0.8);
  /*margin-inline-start: 30px;*/
}
.product-det .qt-cards .liter:nth-of-type(3),
.product-det .qt-cards .kilogram:nth-of-type(3),
.product-det .qt-cards .box:nth-of-type(3),
.product-det .qt-cards .gallon:nth-of-type(3) {
  transform: scale(0.6);
  /*margin-inline-start: 10px;*/
}
.product-det .qt-cards .liter:nth-of-type(4),
.product-det .qt-cards .kilogram:nth-of-type(4),
.product-det .qt-cards .box:nth-of-type(4),
.product-det .qt-cards .gallon:nth-of-type(4) {
  transform: scale(0.4);
}
.product-det .qt-cards .item .icon {
    height: 120px;
    width: 80px;
  opacity: 0.5;
}
.product-det .qt-cards .item .txt {
  position: relative;
  z-index: 5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: block;
}
.product-det .usage-table-wrap {
  margin-top: 50px;
  overflow-x: auto;
  border-radius: 10px;
}
.product-det table {
  width: 100% !important;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
}
.product-det table th,.product-det table thead tr td {
  background: #009e4f;
  /* Brand Green */
  color: #fff;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #008f47;
  padding: 15px 30px;
}
.product-det table td {
  padding: 15px;
  font-size: 15px;
  border: 1px solid #eee;
  color: #333;
  padding: 15px 30px;
}
.product-det table tr:nth-child(even) {
  background-color: #f8fcf9;
}
.product-det table tr:hover {
  background-color: #f1f1f1;
}
.product-det table .crop-name {
  font-weight: 700;
  color: #1a4d2e;
}
.product-det .inf-card {
  position: relative;
  margin-top: 15px;
  text-align: center;
}
.product-det .inf-card .circ {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 143, 71, 0.0666666667);
  outline: 5px solid rgba(0, 143, 71, 0.0274509804);
  outline-offset: -15px;
}

.inner-header {
  position: relative;
  background-color: rgba(16, 104, 54, 0.0666666667);
  padding: 50px 0;
}

.pagination {
  position: relative;
  justify-content: center;
  margin-top: 50px;
}
.pagination .page-link {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px !important;
  margin: 0 10px;
  width: 50px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
}
.pagination .page-link.active {
  background-color: var(--main-color);
  color: #fff;
  border: 0;
}

.search-wrapper {
  position: relative;
}
.search-wrapper .form-control {
  position: relative;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background-color: transparent;
  box-shadow: none;
}
.search-wrapper button {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-color: var(--main-color);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

/* ======== */
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item.has_dropdown .drop_down {
    position: relative;
    top: 0;
    transform: none;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    padding-left: 15px;
  }
  .navbar .navbar-nav .nav-item.has_dropdown.open .drop_down {
    display: block;
    width: 100%;
    padding: 0;
  }
  .navbar .navbar-nav .nav-item.has_dropdown::after {
    top: 12px;
    cursor: pointer;
  }
  .navbar .navbar-nav .nav-item.has_dropdown:hover .drop_down {
    transform: none;
    visibility: visible;
    opacity: 1;
  }
  .footer {
    overflow: hidden;
  }
  .values .cards {
    flex-wrap: wrap;
  }
  .values .cards .item {
    margin: 30px auto;
  }
  .values .cards .item .line {
    transform: rotate(180deg);
  }
  .values .cards .item .num {
    bottom: auto;
    top: -20px;
  }
  .values .cards .item .arrow,
  .values .cards .item .check {
    display: none;
  }
  .story .cards::after {
    display: none;
  }
  .story .cards .row .col-lg-3:nth-of-type(even) .story-item {
    margin-top: 30px;
    flex-direction: column;
  }
  .story .cards .row .col-lg-3 .story-item {
    margin-top: 30px;
    flex-direction: column;
  }
  .story .cards .row .col-lg-3 .story-item .circle {
    display: none;
  }
  .footer .foot-title {
    margin-top: 20px;
  }
  .about .content .shap {
    display: none;
  }
  .vision .info {
    margin-bottom: 30px;
  }
  .fsz-65 {
    font-size: 35px !important;
  }
  .header video {
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .header .info h1 {
    font-size: 50px;
  }
  .header .info .sub-title {
    font-size: 40px;
  }
  .mt_lg_80 {
    margin-top: 25px;
    position: relative;
    z-index: 5;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */