@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
  --primary: #1D5D87;
  --secondary: #1E293B;
  --text-color: #464646;
  --white:#ffffff;
  --black:#060D11;
  --darkblue:#0F2330;
  --dark-gray:#5F5F5F;
  --light-gray:#F7F7F7;
  --light-blue:#EEF8FF;
  --success:#0ac70a;
  --darksuccess:#08a508;
  --border-color:#D0D5DE;
  --border-light:#EBF1F4;
  --button-color:#57BDB3;
  --heading-1: 40px;
  --heading-2: 28px;
  --heading-3: 24px;
  --heading-4: 22px;
  --heading-5: 18px;
  --heading-6: 16px;
  --body-font-size: 14px;
  --font: "DM Sans", sans-serif;
}

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--body-font-size);
  line-height: 1.1;
  color: var(--secondary);
}

a {
  text-decoration: none;
  transition: all 350ms ease-in-out;
}

a:focus,
a:focus-visible{
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}
img{
  max-width: 100%;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

h2 {
  font-size: var(--heading-2);
  line-height: 1.1;
}

h3 {
  font-size: var(--heading-3);
  line-height: 1.3;
}

h4 {
  font-size: var(--heading-4);
  line-height: 1.3;
}

h5 {
  font-size: var(--heading-5);
  line-height: 1.3;
}

h6 {
  font-size: var(--heading-6);
  line-height: 1.3;
}

button:focus{
  box-shadow: none !important;
}

.btnprimary{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    padding: 17px 20px;
    background: var(--button-color);
    color: var(--white);
    border: 1px solid var(--button-color);
    border-radius: 0;
    text-transform: uppercase;
}

.btnprimary:hover{
  background-color: var(--primary);
  border-color: var(--primary);
}

.success-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
    border-radius: 5px;
}

.btn-secondary{
    padding: 12px 20px;
}

.py-120{
  padding: 120px 0;
}

.lg-container{
  margin-left: calc(50% - 812px);
  padding-right: 12px;
}

.dec-text{
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  margin: 0;
}

.ds-title{
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.container{
  max-width: 1660px;
}

.md-container{
  max-width: calc(1170px + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

/* header  */
header nav{
  padding: 20px 0;
  min-height: 102px;
}

header .brandlogo img{
  max-width: 182px;
}

header nav .nav-item .nav-link{
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-color);
  padding: 0 !important;
}

header nav .nav-item .nav-link:hover{
  color: var(--primary);
}

header .navbar-nav{
  column-gap: 73px;
}

header nav .navbar-nav .nav-link.active{
  font-weight: 600;
  color: var(--primary);
}

.country-dropdown .dropdown-menu {
  display: none;
}

.country-dropdown .dropdown-menu.show {
  display: block;
}

.search-btn{
  background-color: transparent;
  border: none;
}

.navbar-nav .dropdown-toggle::after{
  position: absolute;
  top: 8px !important;
  right: -22px;
  border: none;
  width: 15px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0441 1.45833L8.15406 6.89167C7.57656 7.53333 6.63156 7.53333 6.05406 6.89167L1.16406 1.45833' stroke='%23464646' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  margin: 0 0;
  transition: all .5s ease-in-out;
}

.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown-toggle.active::after{
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0441 1.45801L8.15406 6.89134C7.57656 7.53301 6.63156 7.53301 6.05406 6.89134L1.16406 1.45801' stroke='%231D5D87' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.navbar-nav .dropdown-menu {
  padding: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  margin-top: 20px !important;
  min-width: 220px;
  border-radius: 0;
  border-color: 0px solid #EBF1F4;
  border: 0px !important;
}

.navbar-nav .dropdown-menu .dropdown-item{
  padding: 8px 20px 8px 5px;
  color: var(--text-color);
}

.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown-menu .dropdown-item:hover{
  background-color: var(--light-blue);
  color: var(--primary);
}

.navbar-nav .nav-link.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.country-dropdown .dropdown {
  position: relative;
  display: inline-block;
}
.country-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--darkblue);
  padding-right: 22px;
}

.country-dropdown .dropdown-toggle:focus{
  outline: none;
}

.country-dropdown .dropdown-toggle img {
  width: 24px !important;
  height: 17px;
  margin-right: 5px;
}
.country-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background: var(--white);
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 10px 0 0;
  width: 100px;
  min-width: auto;
}
.country-dropdown .dropdown-menu li {
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.country-dropdown .dropdown-menu li:hover {
  background: #f0f0f0;
}
.country-dropdown .dropdown-menu img {
  width: 20px !important;
  height: 14px !important;
  margin-right: 5px;
}

.country-dropdown .dropdown-toggle::after{
  position: absolute;
  top: 5px !important;
  right: 0;
  border: none;
  width: 15px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0441 1.45833L8.15406 6.89167C7.57656 7.53333 6.63156 7.53333 6.05406 6.89167L1.16406 1.45833' stroke='%23464646' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  margin: 0 0;
  transition: all .5s ease-in-out;
}

.navbar-nav .dropdown-menu .dropdown-menu-list{
  position: relative;
}

.sub-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 10px;
  left: 205px;
  z-index: 1;
  padding: 5px;
  border: none;
  min-width: 220px;
  background-color: var(--white);
  border-radius:0;
  display: none;
  border: 1px solid #EBF1F4;
}

.navbar-nav .dropdown-menu .dropdown-menu-list:hover .sub-dropdown-menu{
  display: block;
}

.subdropdown-item{
  position: relative;
}

.navbar-nav .dropdown-menu .subdropdown-item::after{
  content: '';
  position: absolute;
  right: 9px;
  border: none;
  width: 9px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='15' viewBox='0 0 9 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.33203 1.47547L6.76537 6.36547C7.40703 6.94297 7.40703 7.88797 6.76537 8.46547L1.33203 13.3555' stroke='%23464646' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 7px;
  margin: 0;
  transition: all .5s ease-in-out;
  top: 10px !important;
}

.navbar-nav .dropdown-menu .dropdown-menu-list:hover .subdropdown-item::after{
  transform: rotate(90deg);
}

.navbar-nav .dropdown-menu .sub-dropdown-menu{
  margin-top: 0 !important;
  top: 0px;
  left: 100%;
}

.navbar-nav .dropdown-menu .dropdown-menu-list .subdropdown-item.show {
  background-color: var(--light-blue);
  color: var(--primary);
}

.navbar-nav .dropdown-menu .dropdown-menu-list .subdropdown-item.show:after {
  transform: rotate(90deg);
}

/* end  */

/* Hero-wrapper  */
  .hero-wrapper{
    background: linear-gradient(to bottom, #246692, #16547d);
    position: relative;
  }

  .hero-wrapper::before{
    content: '';
    width: 391px;
    height: 646px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(/images/herobg.svg);
    background-position: center;
  }

  .hero-content{
    background-color: var(--white);
    padding: 98px 65px 85px 38px;
    position: relative;
    z-index: 1;
  }

  .hero-content::before{
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 96px;
    height: 79px;
    background-image: url(/images/shaphero.svg);
    background-repeat: no-repeat;
  }

  .hero-content::after{
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 104px;
    height: 85px;
    background-image: url(/images/shaphero2.svg);
    background-repeat: no-repeat;
  }

  .heroslider-wrapper {
    margin-right: -12px;
  }
  
  .hero-content .hero-heading h1{
    font-size: 60px;
    font-weight: 900;
    line-height: 75px;
    color: var(--primary);
    text-transform: capitalize;
  }

  .hero-content .favicon {
    max-width: 98px;
      margin-top: -50px;
  }

  .hero-text{
    margin-top: 25px;
  }

  .hero-text p{
    font-size: 24px;
    line-height: 30px;
    color: var(--text-color);
    margin: 0;
  }

  .hero-btn{
    margin-top: 63px;
    display: flex;
    gap: 20px;
  }

  .playbtn .playbtn-link{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--primary);
    text-transform: capitalize;
  }

  .playbtn .playbtn-link .play-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }

  .heroslider-wrapper .sliderimg img {
      width: 100%;
      height: 600px;
      object-fit: cover;
  }

  .heroslider-wrapper .owl-dots{
    display: none;
  }

  .heroslider-slidearrows {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 40px;
  }

  .heroslider-slidearrows>div{
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
  }

  .heroslider-left-arrow,
  .heroslider-right-arrow{
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }

  .heroslider-slidearrows .line-box {
    min-width: 465px;
    height: 1px;
    background-color: #8babbf;
}
/* end  */

/* About us */

.about-wrapper{
  background-image: url(/images/aboutbg-shap.webp);
  background-position: top right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.subbox-data-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
}

.section-second .subbox-data-content{
  padding-right: 10px;
}

.subbox-data-content .primary-btn{
  margin-top: 30px;
}

.subbox-data-content .dim-text {
  font-size: 100px;
  font-weight: 900;
  color: var(--primary);
  opacity: .06;
  position: absolute;
  top: -70px;
  left: -65px;
  z-index: 0;
}

.girdimges{
  position: relative;
  z-index: 1;
}

.girdimges img {
  width: 100%;
}

.girdimges .aboutshap-01 {
  padding-right: 152px;
  border-radius: 10px;
}

.girdimges .aboutshap-01 img{
  border-radius: 10px;
  width: 100% !important;
}

.girdimges .aboutshap-02,
.girdimges .aboutshap-03{
  position: absolute;
  border: 9px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.girdimges .aboutshap-02 img,
.girdimges .aboutshap-03 img{
  border-radius: 0;
  width: 100% !important;
  background-color: var(--white);
}

.girdimges .aboutshap-02{
  top: -5px;
  right: 0;
  width: 100%;
  max-width: 272px;
}

.girdimges .aboutshap-03{
  bottom: -5px;
  right: 0;
  width: 100%;
  max-width: 406px;
}

.animation-right{
  position: absolute;
  right: 30px;
  bottom: 0;
}

.about-wrapper.active .animation-right{
  animation: slideRightToLeft 2s ease-out forwards;
}

@keyframes slideRightToLeft {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

/* end */

/* what we do  */
.what-wedo-wrapper .section-first,
.what-wedo-wrapper .section-second{
  background-color: var(--light-gray);
}

.what-wedo-wrapper .section-first{
  background-image: url(/images/whatwedo-shap01.webp);
  background-repeat: no-repeat;
  background-position: top left;
}

.gridimg-inner {
  position: relative;
}

.gridimg-inner .shap01 img {
  width: 100% !important;
  border-radius: 10px;
}

.gridimg-inner .shap01{
  padding: 0 110px 100px 0;
}

.gridimg-inner .shap02,
.gridimg-inner .shap03,
.gridimg-inner .shap04 {
  position: absolute;
}

.gridimg-inner .shap02{
  overflow: hidden;
  border-radius: 10px;
  border: 9px solid var(--white);
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 322px;
}

.gridimg-inner .shap02 img{
  width: 100% !important;
  height: 100% !important;
}

.gridimg-inner .shap03 {
  position: absolute;
  top: 157px;
  right: 0;
  width: 100%;
  max-width: 91px;
}

.gridimg-inner .shap03 img,
.gridimg-inner .shap04 img{
  width: 100%;
}

.gridimg-inner .shap04 {
  position: absolute;
  bottom: 15px;
  left: 150px;
}

.leftsection-data{
  position: relative;
  z-index: 1;
}

.what-wedo-wrapper .subbox-data-content .dim-text {
  font-size: 100px;
  font-weight: 900;
  color: var(--primary);
  opacity: .06;
  position: absolute;
  top: -80px;
  left: -225px;
  z-index: 0;
}

.section-second{
  background-image: url(/images/whatwedo-shap04.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
}

.section-second::before{
  content: '';
  width: 98px;
  height: 163px;
  background-image: url(/images/whatwedo-bgshap.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 98px;
  position: absolute;
  right: 0;
  top: 0;
}

.section-second .producshap-icon{
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.section-second .producshap-icon img{
  max-width: 230px;
}

.up-down {
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down{
  0% {
    transform:  translate(1px,20px)  ;
  }
  24% {
    transform:  translate(1px,30px)  ;
  }
  50% {
    transform:  translate(1px,12px)  ;
  }
  74% {
    transform:  translate(1px,22px)  ;
  }
  100% {
    transform:  translate(1px,22px)  ;
  }
}
  
@-moz-keyframes up-down{
  0% {
    -moz-transform:  translate(1px,20px)  ;
  }
  24% {
    -moz-transform:  translate(1px,30px)  ;
  }
  50% {
    -moz-transform:  translate(1px,12px)  ;
  }
  74% {
    -moz-transform:  translate(1px,22px)  ;
  }
  100% {
    -moz-transform:  translate(1px,22px)  ;
  }
}
  
@-webkit-keyframes up-down {
  0% {
    -webkit-transform:  translate(1px,20px)  ;
  }
  24% {
    -webkit-transform:  translate(1px,30px)  ;
  }
  50% {
    -webkit-transform:  translate(1px,12px)  ;
  }
  74% {
    -webkit-transform:  translate(1px,22px)  ;
  }
  100% {
    -webkit-transform:  translate(1px,22px)  ;
  }
}
  
@-o-keyframes up-down {
  0% {
    -o-transform:  translate(1px,20px)  ;
  }
  24% {
    -o-transform:  translate(1px,30px)  ;
  }
  50% {
    -o-transform:  translate(1px,12px)  ;
  }
  74% {
    -o-transform:  translate(1px,22px)  ;
  }
  100% {
    -o-transform:  translate(1px,22px)  ;
  }
}
  
@-ms-keyframes up-down {
  0% {
    -ms-transform:  translate(1px,20px)  ;
  }
  24% {
    -ms-transform:  translate(1px,30px)  ;
  }
  50% {
    -ms-transform:  translate(1px,12px)  ;
  }
  74% {
    -ms-transform:  translate(1px,22px)  ;
  }
  100% {
    -ms-transform:  translate(1px,22px)  ;
  }
}

/* end  */

/* footer */

.footer-wrapper{
  overflow: hidden;
}

.footer-wrapper .dc-footer{
  padding: 60px 0 24px;
  background-color: var(--darkblue);
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg width='373' height='333' viewBox='0 0 373 333' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.2886 0L39.2886 333M207.133 0L207.133 333M123.211 0L123.211 333M291.055 0V333M81.2496 0L81.2496 333M249.094 0V333M165.172 0L165.172 333M333.015 0V333M-0.999991 305.514H373M-1 146.641H373M-0.999991 226.077H373M-1 67.2044H373M-0.999991 265.796H373M-1 106.923H373M-1 186.359H373M-1 27.4861H373' stroke='url(%23paint0_radial_98_1798)' stroke-opacity='0.15'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_98_1798' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(186 166.5) rotate(90) scale(264.266 296.803)'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F2F2F2' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.footer-wrapper .dc-footer::after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 373px;
  height: 374px;
  background-image: url("data:image/svg+xml,%3Csvg width='374' height='333' viewBox='0 0 374 333' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40.2886 0L40.2886 333M208.133 0L208.133 333M124.211 0L124.211 333M292.055 0V333M82.2496 0L82.2496 333M250.094 0V333M166.172 0L166.172 333M334.015 0V333M9.27933e-06 305.514H374M0 146.641H374M9.27933e-06 226.077H374M0 67.2044H374M9.27933e-06 265.796H374M0 106.923H374M0 186.359H374M0 27.4861H374' stroke='url(%23paint0_radial_98_1799)' stroke-opacity='0.15'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_98_1799' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(187 166.5) rotate(90) scale(264.266 296.803)'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F2F2F2' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: left top;
  background-repeat: no-repeat;
  z-index: -1;
}

.social-media-inner .social-media-inner-list{
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.social-media-inner .social-media-inner-list .s-link{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--darkblue);
}

.social-media-inner .social-media-inner-list .s-link:hover{
  background-color: var(--button-color);
  color: var(--white);
}

.subfooter{
  padding: 16px 0;
  text-align: center;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.subfooter span{
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: var(--white);
}

.footer-nav{
  margin: 30px 0 40px;
}

.footer-nav .footer-nav-list{
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.footer-nav .footer-nav-list .f-link{
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.footer-nav .footer-nav-list .f-link:hover{
  color: var(--button-color);
}

.addressing-list{
  display: flex;
  gap: 120px;
}

.f-addressing{
  display: flex;
  gap: 120px;
  color: var(--white);
  justify-content: center;
  margin: 10px 0;
}

.addressing-list-item{
  display: flex;
  align-items: center;
  gap: 13px;
}

.addressing-list-item:hover .iconbox{
  background-color: var(--button-color);
  border-color: var(--button-color);
  color: var(--white);
}


.addressing-list-item:hover .iconbox svg{
  transition: all 0.65s;
  transform: rotateY(360deg);
}

.addressing-list-item p,
.addressing-list-item a{
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  margin: 0;
}

.addressing-list-item a:hover{
  color: var(--button-color);
}

.addressing-list-item span{
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  width: 100%;
}

.addressing-list-item .fd-content{
  text-align: left;
}

.addressing-list-item .iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 50%;
}

/* end */

/* Our Product */

.our-product-wrapper{
  /* background-image: url(/images/ourproduct-shap.webp);
  background-repeat: no-repeat;
  background-position: bottom left; */
  background-image: url("/images/ourproduct-shap.webp"), url("/images/ourproduct-shap2.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 100%, 100% 50px;
  position: relative;
  overflow: hidden;
}

.ourproduct-shap {
  position: absolute;
  right: 82px;
  bottom: 0;
}

.swiper-cards .swiper-slide{
  overflow: initial;
}

.ourproduct-shap img{
  max-width: 157px;
}

.our-product-wrapper .left-ourproduct .dim-text{
  font-size: 100px;
  font-weight: 900;
  line-height: 100px;
  opacity: .06;
  margin-bottom: 20px;
}

.our-productslider-slidearrows,
.productslider-slidearrows {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  margin-top: 55px;
  max-width: fit-content;
  overflow: hidden;
}

.our-productslider-slidearrows .our-productslider-left-arrow,
.our-productslider-slidearrows .our-productslider-right-arrow,
.productslider-slidearrows .productslider-left-arrow,
.productslider-slidearrows .productslider-right-arrow{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--button-color);
  border: 1px solid var(--button-color);
  cursor: pointer;
  transition: all .3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.our-productslider-slidearrows .our-productslider-left-arrow:hover,
.our-productslider-slidearrows .our-productslider-right-arrow:hover,
.productslider-slidearrows .productslider-left-arrow:hover,
.productslider-slidearrows .productslider-right-arrow:hover{
  background-color: var(--button-color);
  color: var(--white);
} 

.our-product-slider .swiper-slide .product-box{
  max-width: 470px;
}

.our-product-slider .swiper-slide.swiper-slide-active .product-box {
  margin: 0 auto;
}

.our-product-slider .swiper-slide .product-box .product-img{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 46px;
  border-radius: 5px;
  background: #CDCDCD;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.our-product-slider .swiper-slide .product-box .product-img{
  max-width: 350px;
  margin-left: auto;
}

.our-product-slider .swiper-slide:nth-child(3n) .product-box .product-img{
  background-color: #E2E2E2;
}

.our-product-slider .swiper-slide:nth-child(4n) .product-box .product-img{
  background-color: #F6F6F6;
  box-shadow: none;
}

.our-product-slider .swiper-slide.swiper-slide-active .product-box .product-img{
  background: linear-gradient(to bottom, #ffffff 0%, #236192 100%);
  max-width: 100%;
}

.product-name {
  margin-top: 20px;
  text-align: center;
}

.our-product-slider .swiper-slide .product-box .product-name{
  display: none;
}

.our-product-slider .swiper-slide.swiper-slide-active .product-box .product-name{
  display: block;
}

.our-product-slider .swiper-slide.swiper-slide-active .product-box .product-name .dec-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: var(--primary);
}

.left-ourproduct {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.our-product-slider{
  max-width: 700px;
  margin: 70px auto 0;
}

/* end */

/* sub hero */
.subhero-wrapper{
  background-image: url(/images/services-hero.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 104px 0;
  position: relative;
}

.subhero-wrapper::before{
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000, #55555594);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.product-subhero{
  background-image: url(/images/subhero-product.webp);
}

.product-subhero::before{
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000, #55555594);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.services-subhero{
  background-image: url(/images/services-hero.webp);
}

.services-subhero::before{
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000b0, #000000b0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.subhero-content{
  position: relative;
  z-index: 1;
  text-align: center;
}

.subhero-title{
  color: var(--button-color);
}

.subhero-content .breadcrumb{
  justify-content: center;
}

.subhero-content .breadcrumb .breadcrumb-item,
.subhero-content .breadcrumb .breadcrumb-link{
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding-left: 10px;
}

.breadcrumb-item+.breadcrumb-item::before{
  content: '>';
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding-right: 10px;
}

.subhero-content .breadcrumb .breadcrumb-item.active{
  color: var(--button-color);
  font-weight: 600;
}

/* end */

/* product list */
.product-listing-wrapper{
  background-image: url(/images/aboutbg-shap.webp), url(/images/ourproduct-shap.webp);
  background-position: right top, left bottom; /* Customize positions */
  background-repeat: no-repeat, no-repeat; 
  position: relative;
}

.product-listing-wrapper .ourproduct-shap{
  bottom: -5px;
}

.listing-sidebar .sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.listing-sidebar .sidebar-title .icon-pl {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
}

.listing-sidebar .sidebar-title span{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.sidebar-list .sidebar-list-item{
  padding: 14px 18px 14px 18px;
}

.sidebar-list .sidebar-list-item .siderbar-list-link{
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--text-color);
  padding-left: 20px;
  position: relative;
}

.sidebar-list .sidebar-list-item .siderbar-list-link:hover{
  color: var(--primary);
  font-weight: 600;
}

.sidebar-list .sidebar-list-item .siderbar-list-link::before{
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 9.07458L3.7559 5.78166C4.08137 5.39277 4.08137 4.7564 3.7559 4.36751L1 1.07458' stroke='%231E293B' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}

.sidebar-list .sidebar-list-item .siderbar-list-link.active{
  font-weight: 600;
  color: var(--primary);
}

.sidebar-list .sidebar-list-item .siderbar-list-link.active::before,
.sidebar-list .sidebar-list-item .siderbar-list-link:hover::before{
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 9.07458L3.7559 5.78166C4.08137 5.39277 4.08137 4.7564 3.7559 4.36751L1 1.07458' stroke='%230A4973' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.sidebar-list .sidebar-list-item .sidebar-list-inner {
  list-style: none;
  margin-left: 20px;
  margin-top: 10px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-list .sidebar-list-item .inner-list-item{
  margin-bottom: 15px;
}

.sidebar-list .sidebar-list-item .inner-list-item .inner-list-link{
  font-size: 12px;
  font-weight: 300;
  color: var(--text-color);
}

.sidebar-list .sidebar-list-item .inner-list-item .inner-list-link:hover{
  color: var(--primary);
}
ul.sidebar-list-inner li a.active{
color: var(--primary) !important;
}
.sidebar-list .sidebar-list-item .siderbar-list-link[aria-expanded="true"]:before{
  transform: rotate(90deg);
}

.product-list-count{
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.product-loader-spinner{
    margin-left: 15px;
    width: 20px;
    height: 20px;
}

.product-list{
  padding-left: 15px;
}

.product-list-count span{
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.product-list ul{
  list-style: none;
}

.product-list .product-list-pl {
  padding-bottom: 70px;
}

.product-list-pl{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
}

.product-list-box{
  padding: 10px 15px 60px;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  height: 100%;
  position: relative;
}

.product-list-box .view-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
  margin: 0;
}

.product-list-box:hover{
  border-color: var(--primary);
  box-shadow: rgb(29 93 135 / 16%) 0px 7px 29px 0px;
}

.product-list-img{
  padding: 15px 10px;
  margin-bottom: 15px;
  background-color: var(--light-blue);
  text-align: center;
  height: 300px;
}

.product-list-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.no-product-available{
  text-align: center;
}
.no-product-available img {
  max-width: 200px;
}
.no-product-available .comingsoon-text{
  font-size: 15px;
  margin-top: 15px;
}

.product-list-img img{
  /* max-width: 250px; */
  margin: 0 auto;
}

.product-list-content {
  text-align: center;
}

.product-list-content h4{
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  color: var(--primary);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.product-description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description p span{
  display: block;
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color) !important;
}

.product-list-content p{
  font-size: 14px !important;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-list-content p span{
  font-size: 14px !important;
}

.view-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  min-width: 90px;
  min-height: 35px;
  padding: 9px 15px;
  margin: 0 auto 10px;
  color: var(--button-color);
  border: 1px solid var(--button-color);
}

.view-btn:hover{
  background-color: var(--button-color);
  color: var(--white);
}

.loard-more-btn{
  width: fit-content;
  margin:30px auto 0;
}

/* end */

/* service  */
.service-wrapper{
  background-image: url(/images/aboutbg-shap.webp);
  background-position: top right;
  background-repeat: no-repeat;
}

.service-content{
  padding: 0 0 35px 15px;
  position: relative;
}

.service-img{
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 92px;
}

.service-img img{
  width: 100% !important;
  border-radius: 10px;
  height: 100% !important;
  object-fit: cover;
}

.service-content .dim-text{
  font-size: 80px;
  font-weight: 900;
  line-height: 90%;
  color: var(--primary);
  opacity: .06;
  margin-bottom: 20px;
}

.distribution-network-list{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  background-image: url(/images/bg-line.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.distribution-network-list .network-itemt{
  padding: 16px 29px 40px;
  border: 1px solid var(--border-light);
  text-align: center;
  background-color: var(--white);
  min-width: 210px;
  min-height: 220px;
  position: relative;
}

.distribution-network-list .network-itemt .icon{
  margin-bottom: 20px;
  width: 100%;
}

.distribution-network-list .network-itemt .icon img {
  width: 100% !important;
  max-width: 150px;
}

.distribution-network-list .network-itemt h5{
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%);
}

.title-distribution h2{
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
}

.our-distribution-wrapper{
  background-image: url(/images/ourproduct-shap.webp);
  background-position: left bottom;
  background-repeat:  no-repeat; 
  position: relative;
}

.distribution-place{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 120px;
}

.distribution-place .distribution-itemt{
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.distribution-place .distribution-itemt:hover img{
  transform: scale(1.1);
}

.distribution-place .distribution-itemt img{
  width: 100% !important;
  border-radius: 20px;
  transition: all .4s ease-in-out;
}

.our-product-slider .swiper-slide .product-box .product-img img{
  width: 100% !important;
  height: auto;
  max-width: 194px;
  max-height: 370px;
}

/* end */

/* Product details */
.product-details-wrapper{
  background-image: url(/images/aboutbg-shap.webp);
  background-position: top right;
  background-repeat: no-repeat;
}

.product-details-wrapper .detail-sidebar .product-img{
  text-align: center;
  padding: 31px 10px;
  background-color: var(--light-blue);
}

.product-detail-content .title h2{
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
  color: var(--primary);
  margin-bottom: 30px;
}

.advantages-list{
  list-style: none;
}

.advantages-item{
  font-size: 16px;
  line-height: 27px;
  padding-left: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='17' viewBox='0 0 14 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.392 0.605126C11.6528 0.510887 11.9321 0.479191 12.2073 0.512591C12.4826 0.545991 12.7462 0.643553 12.9769 0.797425C13.2076 0.951296 13.399 1.15718 13.5356 1.3985C13.6722 1.63983 13.7502 1.90985 13.7634 2.18684C13.8617 3.47827 13.9348 5.48513 13.704 7.5617C13.4754 9.62798 12.9383 11.8371 11.7634 13.4737C10.5463 15.2383 8.80798 16.0223 7.19198 16.3286C5.58741 16.6314 4.0697 16.4726 3.2057 16.324C2.96671 16.2861 2.73526 16.2105 2.51998 16.1C3.81027 12.6463 6.23198 8.84741 9.8137 5.54798C9.95312 5.41962 10.0358 5.24112 10.0437 5.05177C10.0515 4.86241 9.98377 4.6777 9.85541 4.53827C9.72705 4.39884 9.54855 4.31612 9.35919 4.30829C9.16983 4.30047 8.98512 4.36819 8.8457 4.49655C5.33484 7.73084 2.87084 11.4406 1.44798 14.9194C1.02398 14.1366 0.493696 12.9571 0.261697 11.5983C-0.013732 9.98684 0.124554 8.09541 1.37827 6.33084C2.53598 4.69656 4.45598 3.44284 6.34055 2.51827C8.22741 1.59255 10.1463 0.963983 11.392 0.605126Z' fill='%2323618A'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 20px;
}

.advantages-item p{
  color: var(--text-color);
}

.advantages-item span{
  color: var(--secondary);
}

.advantages-item:last-child{
  margin-bottom: 0;
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.product-details-wrapper .title-pd{
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}

.product-detail-content {
  padding-left: 30px;
}

.application-grid .application-list {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.application-grid .application-list span{
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--text-color);
  min-width: 170px;
}

.application-grid .application-list strong{
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: var(--secondary);
}

.composition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.composition-list .composition-item {
  min-width: 70px;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--light-blue);
}

.composition-list .rightdata p{
  margin: 0;
}

.composition-list .leftdata {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.composition-list .leftdata span{
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--text-color);
  margin-bottom: 5px;
}

.composition-list .leftdata strong{
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
}

.composition-list .rightdata {
  max-width: 110px;
  display: flex;
  align-items: flex-end;
}

.crops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 16px;
}

.crop-item .icon {
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-blue);
  margin-bottom: 20px;
}

.name-cp {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--text-color);
  text-align: center;
}

.our-product-slide{
  background-image: url(/images/ourproduct-shap.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 120px;
}

.our-product-slide .dim-text{
  font-size: 80px;
  font-weight: 900;
  line-height: 100px;
  color: var(--primary);
  opacity: .06;
}

.our-product-slide .our-productslider-slidearrows{
  margin: auto;
}

.product-slide-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.product-slide-left .productslider-slidearrows{
  margin-left: 0;
}

.our-product-slide .product-list-box{
  margin-left: 1px;
}

.our-product-slide .swiper-slide{
  height: auto;
}


/* end */

/* contact */
.contact-wrapper .addressing-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 30px 20px;
  border: solid 1px var(--border-color);
  border-radius: 20px;
  height: 100%;
  background: var(--color-white);
  transition: all 0.35s ease-in-out;
}

.contact-wrapper .addressing-list{
  gap: 20px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 30px auto;
}

.contact-wrapper .addressing-list-item p,
.contact-wrapper .addressing-list-item a{
  font-weight: 600;
  font-size: 22px;
  color: var(--secondary);
  word-break: break-word;
}

.contact-wrapper .addressing-list-item a:hover{
  color: var(--button-color);
}

.contact-wrapper .addressing-list-item:hover .iconbox{
  border-color: var(--button-color);
}

.contact-wrapper .addressing-list-item .iconbox{ 
  border-color: var(--secondary);
}

.contact-wrapper .section-head {
  max-width: 800px;
  margin: 0 auto;
}

.contact-wrapper .section-head h2{
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-wrapper .section-head p{
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
}

.contact-wrapper .addressing-list-item span{
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.inner-contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  border: solid 1px #D0D0D0;
  border-radius: 20px;
  background: var(--color-white);
  transition: all 0.35s ease-in-out;
}

.inner-contact-form .title h3{
  font-size: 30px;
  margin-bottom: 20px;
}

.inner-contact-form .form-control{
  width: 100%;
  padding: 10px 30px 10px 15px;
  min-height: 50px;
  border: 1px solid var(--border-color);
}


.inner-contact-form .form-control:focus{
  box-shadow: none;
  border-color: var(--button-color);
}

.inner-contact-form .form-group{
  width: 100%;
  display: flex;
  column-gap: 20px;
}

.inner-contact-form .form-group>div{
  width: 100%;
}

.inner-contact-form .btnprimary{
  margin-top: 30px;
}

.map-wrapper{
  height: 100%;
  margin-bottom: -4px;
}

.gap-80{
  row-gap: 80px;
}

.top-80{
  margin-top: 80px;
}
/* end  */


/* landing page */
.landing-wrapper{
  position: relative;
}

.landing-wrapper .land-head {
  position: absolute;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #ffffff70);
  text-align: center;
  padding: 23px 10px;
}

.land-logo img{
  max-width: 184px;
  height: 50px;
}

.land-hero img,
.land-hero video{
  width: 100%;
}

.our-industries-wrapper{
  padding: 60px 0;
  background-image: url('/images/our-industries-wrapper-bg.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  position: relative;
}

.smd-container{
  padding: 0 15px;
  max-width: calc(1170px + 30px);
  margin: 0 auto;
}

.our-industries-wrapper h2{
  font-size: 100px;
  font-weight: 900;
  line-height: 90%;
  opacity: .06;
  margin-bottom: 50px;
  text-align: center;
}

.our-industries-card{
  position: relative;
  overflow: hidden;
}

.animation-gif {
  position: absolute;
  right: calc(100px + 20px);
  bottom: 0;
  z-index: 91;
}

.animation-gif img{
  max-width: 120px;
}

.our-industries-card .img-sm-box{
  overflow: hidden;
}

.our-industries-card .img-sm-box::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #00000069, #ffffff00);
  z-index: 1;
}

.our-industries-card:hover .img-sm-box img{
  transform: scale(1.1);
}

.our-industries-card .img-sm-box img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  transition: all .5s ease-in-out;
}

.our-industries-card .our-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 32px;
  z-index: 9;
  text-align: center;
}

.our-industries-card .our-content::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.our-industries-card .our-content h5{
  font-size: 40px;
  line-height: 50px;
  color: var(--white);
  margin-bottom: 16px;
}

.our-content span{
  transition: all .4s ease-in-out;
}

.our-industries-card:hover .our-content span{
  transform: translate(10px);
}

.our-content span svg {
  width: 29px;
  height: 26px;
}

/* end */

/* petrochemicals-products-wrapper */
.py-80{
  padding: 80px 0;
}

.petrochemicals-products-wrapper{
  background-image: url(/images/petrochemicals-shap.webp);
  background-position: 100% 0;
  background-repeat: no-repeat;
  position: relative;
}

.products-dec-text{
  font-size: 20px;
  line-height: 30px;
  color: var(--secondary);
}

.petrochemicals-wedoBox .section-first{
  padding-bottom: 150px !important;
}

.petrochemicals-wedoBox .ourproduct-shap img{
  max-width: 374px;
}

.petrochemicals-products-wrapper::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 581px;
  background-image: url(/images/sources-imges-shap-top.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}

.supplyChain-efficiency-wrapper{
  position: relative;
}

.supplyChain-efficiency-wrapper::before{
  content: '';
  position: absolute;
  top: -60px;
  left: -50px;
  width: 260px;
  height: 581px;
  background-image: url(/images/sources-imges-shap-bottom.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}

.supplyChain-efficiency-wrapper .girdimges .aboutshap-02 img, 
.supplyChain-efficiency-wrapper .girdimges .aboutshap-03 img{
  border-radius: 0;
  background-color: var(--white);
}

.supplyChain-efficiency-wrapper .girdimges .aboutshap-01{
  padding-right: 0;
}

.supplyChain-efficiency-wrapper .girdimges .aboutshap-03{
  bottom: auto;
  top: -1px;
  max-height: 472px;
}

.supplyChain-content {
    padding-right: 100px;
}

.supplyChain-content .dim-text {
    font-size: 80px;
    line-height: 100%;
    font-weight: 900;
    color: var(--primary);
    opacity: .06;
    margin-bottom: 30px;
}

.transport-wrapper{
    background-image: url(/images/our-industries-wrapper-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    position: relative;
}

.transport-row-map{
  padding-bottom: 20px;
}
/* end */

.operationProcedures-wrapper{
  background-image: url(/images/petrochemicals-shap.webp);
  background-position: 100% 0;
  background-repeat: no-repeat;
  position: relative;
}

.editData-inbox .ourproduct-shap{
  right: auto;
  left: 80px;
}

.editData-inbox .ourproduct-shap img{
  max-width: 200px;
}

.operationProcedures-wrapper{
  min-height: 400px;
}

.mb-device-img{
  display: none;
}

.comingsoon-text {
  font-size: 100px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: var(--button-color);
  opacity: .4;
  margin: 0;
}

.comingsoon-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responcive */

.navbar-nav .dropdown-menu .subdropdown-item  {
    pointer-events: none;
}

@media(max-width:1680px){
  .container {
      max-width: 1320px;
  }

  .lg-container {
    margin-left: calc(50% - 645px);
  }

  .hero-content{
    padding: 98px 35px 85px 38px;
  }

  .hero-content .hero-heading h1{
    font-size: 45px;
    line-height: 55px;
  }
  .hero-content::before{
    left: -1px;
  }

  .product-list-pl{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .product-details-wrapper{
    background-size: 130px;
  }

  .our-product-slide .dim-text{
    font-size: 70px;
    line-height: 70px;
  }

  .ourproduct-shap img {
    max-width: 130px;
    height: auto;
  }

  .girdimges .aboutshap-02 img, .girdimges .aboutshap-03 img{
    height: 100%;
  }

  .girdimges .aboutshap-02{
    max-width: 250px;
  }
  
  .girdimges .aboutshap-03{
    max-width: 350px;
  }

  .girdimges .aboutshap-01{
    padding-right: 80px;
  }

  .gridimg-inner .shap03{
    top: 140px;
  }

  .gridimg-inner .shap02{
    max-width: 230px;
  }

  .gridimg-inner .shap04{
    left: 120px;
  }

  .our-industries-wrapper{
    padding-bottom: 100px !important;
  }

  .animation-gif {
    right: 30px;
  }

  .animation-gif img {
    max-width: 70px;
  }

  .supplyChain-efficiency-wrapper .girdimges .aboutshap-03 {
    bottom: auto;
    top: -1px;
    max-width: 260px;
    right: -3px;
  }

  .supplyChain-content{
    padding-right: 0;
  }

  .sources-imges {
    max-width: 1026px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .supplyChain-content .dim-text{
    font-size: 60px;
  }
}

@media(max-width:1310px){
  .lg-container{
    margin-left: 0;
    padding-left: 15px;
  }
  .petrochemicals-wedoBox .ourproduct-shap img{
    max-width: 250px;
  }

  .supplyChain-efficiency-wrapper:before,
  .petrochemicals-products-wrapper:before{
    display: none;;
  }

  .about-wrapper{
    background-size: 150px;
  }

  .subbox-data-content .dim-text,
  .what-wedo-wrapper .subbox-data-content .dim-text{
    font-size: 60px;
    position: initial;
  }

  .what-wedo-wrapper .section-first,
  .section-second{
    background-size: 250px;
  }

  .section-second .producshap-icon{
    left: auto;
    right: 0;
  }

  .about-wrapper {
    padding-bottom: 120px !important;
  }

  .animation-right img {
    max-width: 190px;
  }

  .supplyChain-efficiency-wrapper .girdimges .aboutshap-03{
    max-width: 200px;
  }

}

@media(max-width:1200px){
  .addressing-list{
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
  }

  .lg-container {
    margin-left: 0;
    padding: 0 15px;
  }

  .hero-wrapper .col-12.col-md-6 {
    width: 100%;
  }

  .hero-content{
    margin-bottom: 20px;
  }

  .hero-content .hero-heading h1{
    font-size: 40px;
    font-weight: 900;
    line-height: 55px;
  }

  .hero-text p{
    font-size: 20px;
  }

  .product-list-pl{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .ourproduct-shap img {
    max-width: 100px;
}

.distribution-network-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.distribution-place{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.application-grid{
  grid-template-columns: 1fr;
}

.our-product-slide .dim-text{
  font-size: 50px;
  line-height: 50px;
}

.product-slide-left{
  justify-content: flex-start;
}

.top-80 {
  margin-top: 50px;
}

.gap-80 {
  row-gap: 50px;
}

.editData-inbox .ourproduct-shap{
  left: 30px;
}

.editData-inbox .ourproduct-shap img{
  max-width: 150px;
}

}

@media(max-width:1024px){
  .hero-content .favicon{
    max-width: 78px;
  }

  .lg-container {
    margin-left: 0;
    padding: 0 15px;
  }

  .hero-wrapper .col-12.col-md-6 {
    width: 100%;
  }

  .hero-content{
    margin-bottom: 20px;
  }

  .hero-content .hero-heading h1{
    font-size: 40px;
    font-weight: 900;
    line-height: 55px;
  }

  .hero-wrapper::before{
    display: none;
  }

  .heroslider-slidearrows .line-box{
    min-width: 260px;
  }

  .hero-content::before{
    left: -1px;
  }

  .py-120 {
      padding: 70px 0;
  }


  .heroslider-wrapper .sliderimg img{
    height: 420px;
  }

  .distribution-network-list{
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-wrapper,
  .our-distribution-wrapper,
  .product-listing-wrapper{
    background-size: 120px;
  }

  .product-details-wrapper .detail-sidebar .product-img img {
    max-width: 130px;
    height: auto;
  }

  .product-detail-content {
    padding-left: 10px;
  }

  .product-detail-content .title h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .distribution-place{
    margin-top: 70px;
  }
}

@media(max-width:991px){

  .sources-imges{
    padding-top: 50px;
  }

  .products-dec-text{
    font-size: 16px;
    line-height: 27px;
  }

  .supplyChain-content{
    padding-right: 0;
  }

  .composition-list{
    gap: 15px;
  }
  
  button.navbar-toggler{
    padding: 0;
    border: none;
  }

  button.navbar-toggler:focus{
    outline: none;
  }

  div#navbarSupportedContent {
    width: 100%;
    background-color: var(--white);
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99;
    padding: 20px 5px 25px;
    transition: all .2s ease-in-out;
  }

  header nav {
    padding: 20px 0;
    min-height: 60px;
  }

  header .brandlogo img {
    max-width: 150px;
  }

  header nav .navbar-nav .nav-link,
  .country-dropdown{
    padding: 10px !important;
  }

  .navbar-nav .dropdown-toggle::after{
    right: 10px;
  }

  header nav{
    padding-right: 30px !important;
  }

  button.navbar-toggler{
    position: absolute;
    right: 15px;
  }

  .navbar-nav .dropdown-menu{
    margin-top: 0px !important;
    min-width: 180px;
    box-shadow: rgb(100 100 111 / 13%) 0px 7px 29px 0px;
  }

  header nav .nav-item .nav-link{
    font-size: 16px;
    line-height: 18px;
  }

  .hero-content .favicon {
      max-width: 68px;
  }

  .about-wrapper .col-12.col-md-6.col-lg-5 {
    width: 70%;
    margin: 0 auto 80px;
}

  .about-wrapper .col-12.col-md-6.col-lg-7 {
    width: 100%;
}

.subbox-data-content .dim-text{
  font-size: 70px;
  top: -60px;
  left: 0;
}

.animation-right img {
  max-width: 190px;
}

.about-wrapper{
  background-size: 150px;
}

.what-wedo-wrapper .section-first .col-12.col-md-6.col-lg-7 {
  width: 100%;
}

.what-wedo-wrapper .section-first .col-12.col-md-6.col-lg-5 {
  width: 70%;
  margin: 0 auto 80px;
}

.what-wedo-wrapper .subbox-data-content .dim-text{
  font-size: 70px;
  top: -65px;
  left: 0;
}

.what-wedo-wrapper .section-second .row{
  flex-direction: column-reverse;
}

.what-wedo-wrapper .section-second .col-12.col-md-6.col-lg-7 {
  width: 100%;
}

.what-wedo-wrapper .section-second .col-12.col-md-6.col-lg-5 {
  width: 70%;
  margin: 0 auto 50px;
}

.what-wedo-wrapper .section-second,
.what-wedo-wrapper .section-first{
  background-size: 190px;
}

.gridimg-inner .shap03 {
  top: 37px;
}

.gridimg-inner .shap04{
  left: 30px;
}

.section-second .producshap-icon {
  left: auto;
  bottom: 30px;
  right: 20px;
}

.section-second .producshap-icon img {
  max-width: 140px;
}

.our-product-wrapper .left-ourproduct .dim-text{
  font-size: 70px;
  line-height: 70px;
}

.our-product-wrapper{
  background-position: 0 100%, 100% 10px;
  background-size: 140px, 100px;
}

.ourproduct-shap img {
  max-width: 100px;
}

.ourproduct-shap {
  right: 50px;
}

.our-product-slider .swiper-slide .product-box .product-img img {
  max-width: 130px;
  height: 220px;
}

.our-product-slider .swiper-slide .product-box {
  max-width: 430px;
}

.our-product-slider .swiper-slide .product-box .product-img {
  max-width: 250px;
}

.section-second::before{
  background-size: 50px;
}

.hero-content{
  padding: 98px 18px 55px 18px;
}

.hero-btn{
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-wrapper .col-12.col-md-6 {
  width: 100%;
  margin: 0 auto;
}

.service-wrapper .dim-text {
  margin-top: 60px;
  font-size: 70px;
}

.distribution-place {
  grid-template-columns: 1fr 1fr;
}

.service-img{
  display: block;
  padding: 0;
}

.our-industries-card .our-content h5{
  font-size: 30px;
  line-height: 40px;
}

.supplyChain-efficiency-wrapper .col-12.col-md-6.col-lg-7 {
    width: 100%;
}

.supplyChain-efficiency-wrapper .col-12.col-md-6.col-lg-5 {
  width: 70%;
  margin: 0 auto 80px;
}

.supplyChain-content .dim-text{
  font-size: 50px;
  margin-bottom: 9px;
}

.petrochemicals-products-wrapper{
  background-size: 250px;
}

.section-second .subbox-data-content{
  padding-right: 0;
}

.comingsoon-text{
  font-size: 50px;
  line-height: 60px;
}

}

@media(max-width:767px){

  .comingsoon-text{
    font-size: 40px;
    line-height: 60px;
  }

  .py-120 {
    padding: 60px 0;
  }

  section.supplyChain-efficiency-wrapper.py-120{
    padding-bottom: 0;
  }

  .desk-device-img{
    display:none;
  }

  .mb-device-img{
    display: block;
  }

  .our-industries-card .our-content h5{
    font-size: 20px;
    line-height: 30px;
  }

  .our-content span svg {
      width: 20px;
      height: 23px;
  }

  .distribution-network-list{
    grid-template-columns: 1fr 1fr ;
  }

  .product-detail-content {
    padding-left: 0;
  }

  .hero-content .hero-heading h1{
    font-size: 30px;
    line-height: 40px;
  }

  .heroslider-wrapper .sliderimg img{
    height: 380px;
  }

  .gridimg-inner .shap02 {
    border: 4px solid var(--white);
    right: -20px;
    bottom: -30px;
    max-width: 140px;
  }

  .gridimg-inner .shap01{
    padding: 0;
  }

  .gridimg-inner .shap03,
  .gridimg-inner .shap04{
    display: none;
  }

  .girdimges .aboutshap-01 {
    padding-right: 0;
    border-radius: 10px;
  }

  .girdimges .aboutshap-02 {
    top: -20px;
    right: -20px;
    max-width: 200px;
  }

  .girdimges .aboutshap-03 {
    bottom: -10px;
    right: -20px;
    max-width: 250px;
  }

  .about-wrapper .col-12.col-md-6.col-lg-5{
    width: 85%;
  }

  .animation-right img {
    max-width: 130px;
  }

  .section-second .producshap-icon img {
    max-width: 110px;
  }

  .ourproduct-shap {
    right: 20px;
  }

  .ourproduct-shap img {
    max-width: 80px;
  }

  .our-productslider-slidearrows .our-productslider-left-arrow, .our-productslider-slidearrows .our-productslider-right-arrow{
    width: 40px;
    height: 40px;
  }

  .our-productslider-slidearrows{
    gap: 10px;
  }

  .our-product-wrapper .left-ourproduct .dim-text {
    font-size: 50px;
    line-height: 50px;
  }

  .what-wedo-wrapper .subbox-data-content .dim-text,
  .subbox-data-content .dim-text {
    font-size: 50px;
    top: -45px;
    left: 0;
  }

  .addressing-list{
    padding: 0 15px;
    justify-content: left;
    row-gap: 20px;
  }

  .our-product-slider .swiper-slide .product-box .product-img {
    max-width: 170px;
  }

  .service-content {
    padding: 10px 0;
    position: relative;
  }

  .product-slide-left .productslider-slidearrows{
    margin-bottom: 25px;
  }

  .composition-list,
  .crops-list{
    gap: 15px;
  }

  .crops-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    row-gap: 20px;
  }

  .crop-item .icon img {
    max-width: 60px;
    height: auto;
  }

  .crop-item .icon{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .name-cp{
    font-size: 14px;
    line-height: 25px;
  }

  .our-product-slide .dim-text {
    font-size: 40px;
    line-height: 50px;
  }

  .product-slide-left .productslider-slidearrows{
    margin-top: 30px;
  }

  .our-productslider-slidearrows .our-productslider-left-arrow, 
  .our-productslider-slidearrows .our-productslider-right-arrow, 
  .productslider-slidearrows .productslider-left-arrow, 
  .productslider-slidearrows .productslider-right-arrow{
    width: 40px;
    height: 40px;
    background-color: var(--white);
  }

  .our-productslider-slidearrows .our-productslider-left-arrow svg, 
  .our-productslider-slidearrows .our-productslider-right-arrow svg, 
  .productslider-slidearrows .productslider-left-arrow svg, 
  .productslider-slidearrows .productslider-right-arrow svg{
    max-width: 15px;
  }

  .product-detail-content .title h2{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .advantages-item{
    background-position: left 5px;
    font-size: 14px;
    line-height: 25px;
  }

  .application-grid .application-list strong,
  .application-grid .application-list span{
    font-size: 14px;
    line-height: 25px;
  }

  .navbar-nav .dropdown-menu .dropdown-item{
    word-break: break-all;
    white-space: normal;
  }

  .navbar-nav .dropdown-menu .sub-dropdown-menu .dropdown-item{
    font-size: 14px;
  }

 
  .our-industries-wrapper {
    padding: 30px 0 40px;
  }
  
  .our-industries-wrapper h2{
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  
  .our-industries-wrapper .our-industries-card{
    display: block;
    margin-bottom: 20px;
  }
  
  .land-hero video{
    min-height: 450px;
  }
  
  .landing-wrapper .land-head{
    padding: 10px 5px;
    z-index: 9;
  }
  
  .petrochemicals-wedoBox .ourproduct-shap img{
    max-width: 150px;
  }

  .about-wrapper {
    padding-bottom: 100px !important;
  }

  .supplyChain-efficiency-wrapper .col-12.col-md-6.col-lg-5{
    width: 80%;
  }

  .supplyChain-efficiency-wrapper .girdimges .aboutshap-03{
    max-width: 180px;
  }

  .our-product-wrapper{
    background-size: 120px, 0;
  }

  .about-wrapper .col-12.col-md-6.col-lg-5{
    margin-bottom: 30px;
  }

  .what-wedo-wrapper .section-first .col-12.col-md-6.col-lg-5{
    margin-bottom: 50px;
  }
  
  .about-wrapper{
    background-size: 100px;
  }

  .operationProcedures-wrapper{
    background-size: 350px;
  }
}

@media(max-width:575px){

  .footer-nav .footer-nav-list .f-link{
    font-size: 14px;
  }

  .gap-80{
    row-gap: 30px;
  }

  .top-80{
    margin-top: 20px;
  }

  .product-detail-content{
    margin-top: 20px;
  }

  .product-details-wrapper .title-pd{
    margin-bottom: 10px;
  }

  .footer-wrapper .dc-footer::after{
    display: none;
  }

  .footer-wrapper .dc-footer{
    background-size: 150px;
  }

  .addressing-list-item p, .addressing-list-item a{
    font-size: 14px;
    line-height: 16px;
  }

  .our-product-slider .swiper-slide .product-box .product-img img {
    max-width: 100px;
}

.our-product-slider .swiper-slide .product-box {
  max-width: 320px;
}

.ds-title{
  font-size: 24px;
}

.what-wedo-wrapper .subbox-data-content .dim-text, .subbox-data-content .dim-text {
  font-size: 40px;
  top: -35px;
}

.product-list-pl{
  grid-template-columns: 1fr;
}

.distribution-network-list{
  grid-template-columns: 1fr;
}

.distribution-place {
  grid-template-columns: 1fr;
}

.service-wrapper .dim-text {
  font-size: 40px;
  margin-top: 20px;
}

.title-distribution h2{
  font-size: 24px;
  margin-bottom: 30px;
}

.product-detail-content .title h2{
  font-size: 24px;
  line-height: 36px;
}

.sub-dropdown-menu{
  top: 33px;
  left: 0;
  right: 0;
  min-width: auto;
  min-height: 90px;
  width: 100%;
  box-shadow: 0 7px 29px #64646f21;
}

.product-details-wrapper .detail-sidebar .product-img img {
  max-width: 130px;
  height: auto;
}

.inner-contact-form .title h3{
  font-size: 24px;
}

.contact-wrapper .section-head h2{
  font-size: 30px;
}

.inner-contact-form .form-group{
  flex-direction: column;
}

.contact-wrapper .addressing-list-item p, 
.contact-wrapper .addressing-list-item a{
  font-size: 18px;
}

.addressing-list-item .iconbox{
  width: 40px;
  height: 40px;
}

.footer-nav .footer-nav-list{
  flex-wrap: wrap;
}

.inner-contact-form .form-control{
  font-size: 14px;
}

.btnprimary{
  padding: 12px 10px;
  font-size: 14px;
}

.crops-list{
  grid-template-columns: 1fr 1fr 1fr;
}

.crop-item .icon{
  width: 80px;
  height: 80px;
}

.crop-item .icon img{
  max-width: 50px;
}

.subhero-content .breadcrumb .breadcrumb-item, .subhero-content .breadcrumb .breadcrumb-link{
  padding-left: 5px;
}

.breadcrumb-item + .breadcrumb-item:before{
  padding-right: 0;
}

.supplyChain-content .dim-text {
    font-size: 40px;
}

.supplyChain-efficiency-wrapper .col-12.col-md-6.col-lg-5{
  width: 100%;
  margin-bottom: 40px;
}

}

@media(max-width:360px){
  .crops-list{
    grid-template-columns: 1fr 1fr;
  }

  .section-second .producshap-icon img {
    max-width: 90px;
  }
}