:root {
  --theme_color: #00781e;
  --subtheme_color: #000;
  --hover_color: #000;
  --title_color: #161616;
  --content_color: #000;
  --bg_color: linear-gradient(to right, #000, #000);
}
ul {
  list-style: none;
}
a {
  color: var(--title_color);
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: inherit;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  color: var(--title_color);
  font-family: "Poppins", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
.arrow_btn {
  padding: 13px 30px;
  font-size: 18px;
  background-color: #00781e;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  width: max-content;
}
.arrow_btn:after {
  content: "";
  width: 7px;
  height: 13px;
  transform: translateY(0px);
  transition: all 0.3s;
  background: url("../img/right-white.svg") no-repeat center/contain;
}
.arrow_btn:hover {
  filter: brightness(110%);
}
.arrow_btn:hover:after {
  transform: translate(5px, 0px);
}
.head h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  color: var(--title_color);
}
.head h2 span {
  color: var(--theme_color);
}
.head p {
  font-size: 20px;
  line-height: 31px;
  color: var(--title_color);
}
.swiper_dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #161616;
  opacity: 1;
  position: relative;
  transition: all 0.3s;
}
.swiper_dots span:after {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  border: 1px solid var(--theme_color);
  border-radius: 50%;
  left: 50%;
  transition: all 0.3s;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.swiper_dots span.swiper-pagination-bullet-active {
  background-color: var(--theme_color);
}
.swiper_dots span.swiper-pagination-bullet-active:after {
  opacity: 1;
}

.swiper_dots {
  gap: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.squre_btns {
  width: 91.3%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  height: 0;
  z-index: 15;
}

.squre_btns > div {
  width: 71px;
  height: 71px;
  border-radius: 6px;
  border: 1px solid transparent;
  background-color: var(--theme_color);
  position: relative;
  transform: translateY(-100%);
  transition: all 0.3s;
  cursor: pointer;
}
.squre_btns > div:hover {
  filter: brightness(110%);
}
.squre_btns > div:after {
  content: "";
  width: 10px;
  height: 19px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/right-white2.svg") no-repeat center/contain;
}
.squre_btns > div.prev:after {
  background-image: url("../img/left-white.svg");
}
.squre_btns > div.swiper-button-disabled {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: white;
}
.squre_btns > div.swiper-button-disabled:after {
  filter: brightness(0);
}
header {
  padding-top: 13px;
  padding-bottom: 13px;
  z-index: 150;
  position: sticky;
  top: -120px;
  transition: all 0.5s;
}
header.sticky {
  top: -30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky {
  background-color: white;
}
header .header_top li a {
  width: 17px;
  transition: all 0.4s;
  height: 17px;
  text-indent: -9999px;
  display: block;
  background: url("../img/facebook.svg") no-repeat center/contain;
}
header .header_top li:hover a{
  transform: scale(1.1);
}
header .header_top ul {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
header .header_top li.twitter a {
  background-image: url("../img/twitter.svg");
}
header .header_top li.youtube a {
  background-image: url("../img/youtube.svg");
}
header .header_top li.linkedin a {
  background-image: url("../img/linkedin.svg");
}
header .header_top li.whatsapp a {
  background-image: url("../img/whatsapp.svg");
}
header .header_top li.skype a {
  background-image: url("../img/skype.svg");
}
header .header_top .right {
  display: flex;
  justify-content: right;
  align-items: center;
}
header .header_top .right > a {
  color: white;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-left: 23px;
  font-weight: 300;
}
header .header_top .right > a + a {
  margin-left: 34px;
}
header .header_top .right > a:before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url("../img/email.svg") no-repeat center/contain;
  margin-right: 12px;
}
header .header_top .right > a.phone:before {
  background-image: url("../img/phone.svg");
  width: 15px;
  height: 15px;
}
.header_main {
  margin-top: 13px;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  width: 262px;
  height: auto;
  display: block;
}
header .header_main .right {
  display: flex;
  align-items: center;
}
header .header_main .right nav li + li {
  margin-left: 27px;
}
header .header_main .right nav li a {
  font-size: 17px;
  font-weight: 400;
  transition: all 0.3s;
  color: white;
  padding: 2rem 0;
}
header .header_main .right nav li a:hover {
  color: var(--theme_color);
}
header.sticky .header_main .right nav li a {
  color: #161616;
}
header.sticky2 .header_main .right nav li a {
  color: #161616;
}
header .header_main .right nav ul {
  display: flex;
}
header .header_main .right .icon {
  width: 19px;
  height: 19px;
  margin: 0 30px;
  display: inline-block;
  cursor: pointer;
  background: url("../img/search.svg") no-repeat center/contain;
}
header.sticky .header_main .right .icon{
  filter: brightness(0);
}

footer {
  background-color: #161616;
  color: white;
}
footer .footer_contact {
  background: url("../img/contact_bg.jpg") no-repeat center/cover;
  padding: 50px 0 70px;
}
footer .footer_contact .social {
  display: flex;
  align-items: center;
}
footer .footer_contact h2 {
  font-size: 38px;
  font-weight: 600;
  color: #161616;
  margin-bottom: 0;
}
footer .footer_contact .right h2 {
  color: white;
}
footer .footer_contact p {
  color: #383838;
  margin-bottom: 23px;
  font-size: 17px;
}
footer .footer_contact .left form {
  display: flex;
  width: 544px;
  justify-content: space-between;
  position: relative;
}
form#sytech-newsletter-subscription p.failed, form#sytech-newsletter-subscription p.success{
  margin-bottom: 0;
}
footer .footer_contact .left form input[type="email"] {
  background-color: white;
  padding: 17px 37px;
  border-radius: 6px;
  width: 86%;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
footer .footer_contact .left form input[type="email"]::placeholder {
  color: #161616;
}
footer .footer_contact .left form input[type="submit"] {
  width: 11%;
  aspect-ratio: 1/1;
  background: url("../img/fly.svg") no-repeat center/23px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  border-radius: 6px;
  text-indent: -9999px;
}
footer .footer_contact .left form input[type="submit"]:hover {
  background-color: #333;
}
footer .footer_contact .right {
  color: white;
  padding-right: 62px;
}
footer .footer_contact .right p {
  color: white;
  opacity: 0.85;
  font-weight: 300;
}
footer .footer_contact .right .social {
  gap: 11px;
}
footer .footer_contact .right .social a {
  width: 62px;
  height: 62px;
  display: inline-block;
  border-radius: 10px;
  text-indent: -9999px;
  background-color: rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.3s;
}
footer .footer_contact .right .social a:hover {
  background-color: var(--theme_color);
}
footer .footer_contact .right .social a:hover:after {
  filter: contrast(0) brightness(110);
}
footer .footer_contact .right .social a:after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  background: url("../img/facebook.svg") no-repeat center/contain;
}
footer .footer_contact .right .social .facebook a:after {
  background-size: 85% 85%;
}
footer .footer_contact .right .social .twitter a:after {
  background-image: url("../img/twitter.svg");
  background-size: 92% 92%;
}
footer .footer_contact .right .social .youtube a:after {
  background-image: url("../img/youtube.svg");
}
footer .footer_contact .right .social .youtube a:after {
  background-image: url("../img/youtube.svg");
}
footer .footer_contact .right .social .linkedin a:after {
  background-image: url("../img/linkedin.svg");
  background-size: 88% 88%;
}
footer .footer_contact .right .social .whatsapp a:after {
  background-image: url("../img/whatsapp.svg");
  background-size: 95% 95%;
}
footer .footer_contact .right .social .skype a:after {
  background-image: url("../img/skype.svg");
}
footer .footer_main {
  padding-top: 113px;
  padding-bottom: 170px;
}
footer .footer_main .logo img {
  width: 298px;
  height: auto;
}
footer .footer_main .main > .flex .col {
  flex: 1;
}
footer .footer_main .main > .flex .col.links {
  margin-right: 12%;
}
footer .footer_main .logo {
  margin-bottom: 50px;
}
footer .footer_main .main > .flex .col.links p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
footer .footer_main .main > .flex .col.links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  display: flex;
  align-items: baseline;
  color: white;
  font-size: 18px;
  padding: 17px 27px;
  margin-top: 20px;
  justify-content: space-between;
}
footer .footer_main .main > .flex .col.links a:after {
  content: "";
  width: 8px;
  height: 13px;
  display: inline-block;
  background: url("../img/dayu-green.svg") no-repeat center/contain;
}
footer .footer_main .main > .flex .col:not(.links) {
  padding-top: 38px;
}
footer .footer_main .main > .flex .col strong {
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-bottom: 30px;
}
footer .footer_main .main > .flex .col li a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  transition: all 0.3s;
}
footer .footer_main .main > .flex .col li a:hover {
  color: var(--theme_color);
}
footer .footer_main .main > .flex .col li {
  margin-bottom: 0.7rem;
}
footer .footer_main .main > .flex .col.contact_col li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 34px;
}
footer .footer_main .main > .flex .col.contact_col li p {
  font-weight: 400;
  font-size: 18px;
}
footer .footer_main .main > .flex .col.contact_col li span {
  opacity: 0.85;
}
footer .footer_main .main > .flex .col.contact_col li:before {
  content: "";
  display: inline-block;
  margin-right: 1.1rem;
  min-width: 52px;
  width: 52px;
  transition: all 0.3s;
  height: 52px;
  border-radius: 50%;
  background: url("../img/circle-phone.svg") no-repeat center/contain;
}
footer .footer_main .main > .flex .col.contact_col li:hover::before {
  transform: translateY(-5px);
}
footer .footer_main .main > .flex .col.contact_col li.email:before {
  background-image: url("../img/circle-email.svg");
}
footer .footer_main .main > .flex .col.contact_col li.address:before {
  background-image: url("../img/circle-address.svg");
}

footer .copyright .flex {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .copyright .flex p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.85;
}
footer .copyright .flex ul {
  display: flex;
  gap: 33px;
}
footer .copyright .flex ul a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.7;
}
.home_secrect {
  overflow: hidden;
  position: relative;
}
.swiper_tools {
  position: absolute;
  width: 100%;
  z-index: 9;
  left: 0;
  bottom: 95px;
}
.home_secrect .swiper-slide {
  height: 900px;
  padding: 293px 0 80px;
  background: url("../img/secrect_bg.jpg") no-repeat center/cover;
  color: white;
}
.home_secrect .swiper-slide h2 {
  font-size: 48px;
  line-height: 60px;
  max-width: 520px;
  margin-bottom: 35px;
}
.home_secrect .swiper-slide li {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.home_secrect .swiper-slide li:hover:after {
  transform: rotate(45deg);
}
.home_secrect .swiper-slide li:after {
  content: "";
  width: 11px;
  height: 11px;
  transition: all 0.3s;
  background: url("../img/jiantou-rt.svg") no-repeat center/contain;
  display: inline-block;
  margin-left: 8px;
}
.home_secrect .swiper-slide ul {
  margin-bottom: 33px;
}
.home_secrect .dots {
  display: flex;
  gap: 1rem;
}
.home_secrect .dots span {
  width: 105px;
  transition: all 0.3s;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.home_secrect .dots span.swiper-pagination-bullet-active {
  background-color: var(--theme_color);
}
.home_secrect .swiper_btns i {
  display: flex;
  gap: 31px;
}
.home_secrect .swiper_btns i > div {
  width: 72px;
  transition: all 0.3s;
  height: 72px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  background: url("../img/right-white2.svg") no-repeat center/10px;
  background-color: var(--theme_color);
  transition: all 0.3s;
}
.home_secrect .swiper_btns i > div.prev {
  background-image: url("../img/left-white.svg");
}
.home_secrect .swiper_btns i > div.swiper-button-disabled {
  opacity: 0.5;
  background-color: transparent;
}
.home_secrect .swiper_btns div.next{
  transform: rotate(180deg);
  margin-left: 1rem;
}
.home_video {
  padding: 130px 0 77px;
}
.home_video .head {
  margin-bottom: 30px;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

.home_banner .over:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.3s;
  z-index: 1;
  animation: opacity 0.4s linear forwards;
}




.loading{
  position: relative;
}

.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}


div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}


body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}

.breadcrumb_last{
  color: white;
}
.breadcrumbs a{
  transition: all 0.3s;
}
.breadcrumbs a:hover{
  color: var(--theme_color) !important;
}




div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}


.empty_img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}








.modal{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  visibility: hidden;
  /* transition: all 0.3s; */
}
.modal-q .modal{
  visibility: visible;
}
.modal .modalcontent{
  width: 1000px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: -150%;
  transition: all 0.4s;
}
.modal-q .modal .modalcontent{
  top: 50%;
}
.modal .overlay{
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  /* display: none; */
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.modal-q .modal .overlay{
  display: block;
  opacity: 1;
}
.quote-content .form form{
  gap: 0;
}
.quote-content>.flex{
  align-items:stretch;
}
.quote-content .left{
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 3.5rem;
  background: url(../img/home_banner.jpg) no-repeat 62% center/cover; 
}
.quote-content .left .logo{
  width: 200px;
  display: inline-block;
  height: 70px;
  position: absolute;
  bottom: 2rem;
  filter: contrast(0) brightness(100);
  left: 1.5rem;
  background: url('../img/logo.svg') no-repeat center/contain;
}
.quote-content .left strong{
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}
.quote-content .right{
  width: 52%;
  padding: 4rem 3rem 4rem 0rem;
  padding-left: 4%;
  position: relative;
  max-height: 670px;
  overflow: auto;
}
.quote-content form label, .quote-content form>p{
  width: 100%;
  display: block;
}
.quote-content form label{
  font-size: 15px;
  display: flex;
  flex-flow: wrap;
}
.quote-content form .wpcf7-form-control-wrap{
  display: block;
  width: 100%;
  margin-bottom: .5rem;
}
/* form.wpcf7-form.submitting{
  position: relative;
}
form.wpcf7-form.submitting:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center/45px;
  background-color: #f2ede783;
} */
.quote-content form input:not([type="checkbox"]){
  border: 1px solid rgba(0,0,0,.1);
}
.quote-content form input:not([type="checkbox"]), .quote-content form select{
  width: 100%;
  font-size: 0.875rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.3125rem;
  font-size: 15px;
  margin-bottom: 0.6rem;
}
.quote-content form .wpcf7-not-valid-tip{
    margin-top: 0rem;
    margin-bottom: .6rem;
    font-size: 13px;
}


.quote-content form select{
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  color: #777;
}

.quote-content form textarea{
  width: 100%;
  font-size: 15px;
  padding: 0.8rem 1.25rem;
  height: 130px;
  border: 1px solid rgba(0,0,0,.1);

  border-radius: 0.3125rem;
}
.quote-content form .flex2{
  display: flex;
  gap: 1rem;
  align-items: center;
}
.quote-content form input[type="submit"]{
  background-color: var(--theme_color);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0rem;
  transition: all 0.3s;
}
.quote-content form input[type="submit"]:hover{
  filter: brightness(1.1);
}
.quote-content p.tip{
  font-size: 12px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.quote-content .wpcf7-spinner{
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
body .quote-content .wpcf7 form.invalid .wpcf7-response-output, body .quote-content .wpcf7 form.unaccepted .wpcf7-response-output, body .quote-content .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
}
body .quote-content .wpcf7 form .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
  margin: 0;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: scale(0);
  text-align: center;
  z-index: 9;
}




#fullscreen-loader {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 2000000;
  top: 0;
  left: 0;
}
#fullscreen-loader-overlay {
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #fff;
}
#fullscreen-loader-overlay img {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#fullscreen-loader-overlay .loader_item{
  width: 40px;
  height: 40px;
  --c:no-repeat linear-gradient(var(--theme_color) 0 0);
  background: var(--c),var(--c),var(--c),var(--c);
  background-size: 21px 21px;
  animation: l5 1.5s infinite cubic-bezier(0.3,1,0,1);

  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}
#fullscreen-loader.close-loader{
  display: none!important;
}
.video_sales .right li{
  margin-bottom: 5px !important;
}


@keyframes l5 {
 0%   {background-position: 0    0,100% 0   ,100% 100%,0 100%}
 33%  {background-position: 0    0,100% 0   ,100% 100%,0 100%;width:60px;height: 60px}
 66%  {background-position: 100% 0,100% 100%,0    100%,0 0   ;width:60px;height: 60px}
 100% {background-position: 100% 0,100% 100%,0    100%,0 0   }
}




.default_page_head{
  
  margin-bottom: 3rem;
  margin-top: -120px;
  
}
.default_page_head h1{
  font-size: 40px;
  font-weight: 700;
  color: white;
}
.default_page_head .flex{
  flex-direction: column;
  padding: 5rem 0;
  justify-content: center;
  padding-top: 15rem;
}


.default_page_main h2{
  font-size: 25px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.default_page_main h3{
  font-size: 20px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.default_page_main{
  padding: 2rem 0 5rem;
}
.default_page_main p{
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--content_color);
  margin-bottom: 0.5rem;
}
.default_page_main strong{
  color: var(--title_color);
}
.default_page_main p a{
  color: var(--theme_color);
}

.about_procurement .right .img{
  transition: all 2s;
}
.about_procurement .right .img:hover img{
  transform: scale(1.1);
}

.sustainability_Classification .card .left {
  padding-bottom: 2rem !important;
}



.header_cols{
  display: flex;
  justify-content: center;
}
.header_cols .header_col{
  padding: 0 2rem;
  width: 25%;
  border-right: 1px solid #eee;
} 
.header_cols .header_col:last-of-type{
  border-right: none;
}


.header_menu::-webkit-scrollbar {
  width: 15px;
  height: 2px;
}
.header_menu::-webkit-scrollbar-track,
.header_menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}
.header_menu::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset;
}
.header_menu::-webkit-scrollbar-thumb {
  min-height: 15px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #eee inset;
}
.header_menu::-webkit-scrollbar-corner {
  background: transparent;
}
.header_menu{
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  padding: 3rem 0;
  background-color: white;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 2 ;
  max-height: calc(100vh - 117px);
  overflow: auto;
}

.overlay_menu{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_menu.active{
  pointer-events: all;
  opacity: 1;
}

.header_col strong{
  font-size: 17px;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}
.menu_con{
  margin-bottom: 1rem;
}
.header_con li a{
  font-size: 17px;
  margin-bottom: 0.3rem;
  transition: all 0.3s;
  display: block;
}
.header_col li a:hover{
  color: var(--theme_color);
}


header .header_main .right nav .product_menu .sub-menu{
  display: none;
}

.about_history .leftimg{
  transform: scale(0.8);
}
.about_service .right .rightimgcon{
  transform: scale(0.8);
}
.about_saving .right .imgcon, .about_order .left .imgcon, .about_procurement .right .imgcon, .about_Diverse .leftimg .imgcon{
  transform: scale(0.8);
}