@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0px;
  margin: 0px;
}

html,
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 14px;
  color: #ccc;
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
}

li,
ol {
  list-style: none;
}

.no-pad {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.container-fluid {
  padding: 0 50px;
  max-width: 1920px;
}

/**************  GLOBAL CSS *****************/
header.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  padding: 20px 0;
}

header.header .mailid a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #ffffff;
}

header.header .mailid a span {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50px;
  margin-right: 6px;
  padding: 6px;
}

header.header .menu {
  margin-left: 30px;
}

header.header .menu .hambergur {
  width: 1.6rem;
}

header.header .menu .hambergur div {
  width: 1.6rem;
  height: 2px;
  margin-bottom: 6px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
}

header.header .menu .fullscreen {
  -webkit-clip-path: circle(0% at 96.5% 4%);
          clip-path: circle(0% at 96.5% 4%);
  position: absolute;
  background: #1e1f25;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

header.header .menu .fullscreen ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  width: 100%;
}

header.header .menu .fullscreen ul li {
  padding: 0.5rem 1rem;
}

header.header .menu .fullscreen ul li a {
  font-size: 30px;
  background: -webkit-linear-gradient(45deg, #ff5722 0%, rgba(255, 174, 174, 0.685312) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header.header .menu .fullscreen .close {
  position: absolute;
  top: 1.3rem;
  right: 2.355rem;
  width: 2rem;
  height: 2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header.header .menu .fullscreen .close div {
  width: 32px;
  height: 32px;
  overflow: hidden;
}

header.header .menu .fullscreen .close div:before, header.header .menu .fullscreen .close div:after {
  content: "";
  width: 2rem;
  height: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  position: absolute;
  border-radius: 5px;
}

header.header .menu .fullscreen .close div:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
}

header.header .menu .fullscreen.active {
  -webkit-clip-path: circle(140% at 96.5% 4%);
          clip-path: circle(140% at 96.5% 4%);
  -webkit-transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

header.header .menu .fullscreen.active ul > li {
  -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
          animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}

header.header .menu .fullscreen.reverse_anim {
  -webkit-clip-path: circle(0% at 96.5% 4%);
          clip-path: circle(0% at 96.5% 4%);
  opacity: 0.6;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

@-webkit-keyframes animateIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px) rotate(2deg);
            transform: translateX(10px) rotate(2deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes animateIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px) rotate(2deg);
            transform: translateX(10px) rotate(2deg);
  }
  100% {
    opacity: 1;
  }
}

header.header.fixed-header {
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

header.header.fixed-header .logo img {
  height: 40px;
}

.banner {
  position: relative;
}

.banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner video#myVideo {
  width: 100%;
}

.banner .ban-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9;
}

.banner .ban-text img {
  width: auto;
}

.banner .ban-text h1 {
  font-weight: 300;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

.banner .ban-text h1 span {
  display: block;
}

.banner .social {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  right: 50px;
}

.banner .social ul li {
  display: inline-block;
  margin-left: 17px;
}

.banner .social ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  line-height: 33px;
  border-radius: 50%;
}

.banner .social ul li a img {
  width: auto;
}

.banner .social ul li a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  border: 1px solid transparent;
}

.banner:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(39.08%, #31364a38), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a38 39.08%, #13181e 100%);
  mix-blend-mode: multiply;
  left: 0;
  top: 0;
}

section.sec-1 {
  background: #24262e;
  padding: 30px 0;
  margin-top: -10px;
}

section.sec-1 h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 75px;
  text-align: center;
  color: #ffffff;
}

section.sec-1 h2 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.sec-1 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #87929d;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 70px;
}

section.sec-1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  -ms-flex: 0 0 32%;
      flex: 0 0 32%;
}

section.sec-1 .global {
  display: block;
  -webkit-box-shadow: 0px 0px 0px 10px transparent;
          box-shadow: 0px 0px 0px 10px transparent;
  position: relative;
  max-height: 288px;
  margin: 20px 0;
  border-radius: 20px;
}

section.sec-1 .global img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.sec-1 .global .g_details {
  position: absolute;
  left: 30px;
  bottom: 20px;
  z-index: 9;
}

section.sec-1 .global .g_details img {
  width: auto;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

section.sec-1 .global .g_details h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
  margin: 10px 0px 6px 0px;
}

section.sec-1 .global .g_details h5 {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}

section.sec-1 .global:hover h3 {
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  -webkit-background-clip: text;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
}

section.sec-1 .global:hover {
  -webkit-box-shadow: 0px 0px 15px 4px #f05c24;
          box-shadow: 0px 0px 15px 4px #f05c24;
}

section.sec-1 .global:hover .g_details img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

section.sec-1 .global:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #1c1e25b8;
  position: absolute;
  border-radius: 20px;
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

section.sec-1 .global:hover::after {
  content: "";
  background-color: #1c1e2557;
}

section.sec-2 {
  padding: 0px 0;
  padding-top: 160px;
  position: relative;
  background: #292929;
}

section.sec-2 h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 75px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

section.sec-2 h2 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

section.sec-2 .map_sec {
  width: 1000px;
  position: relative;
  margin: 40px 180px;
}

section.sec-2 .map_sec .dlogo {
  left: -238px;
  height: 250px;
  position: absolute;
  /* right: 0; */
  top: 218px;
  visibility: visible;
  opacity: 1;
  width: 250px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

section.sec-2 .map_sec .dlogo img {
  border: none;
  border-radius: 0px;
}

section.sec-2 .map_sec .dlogo .coin-face {
  position: absolute;
  width: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

section.sec-2 .map_sec .dlogo .coin-number {
  width: 100%;
  z-index: 9;
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0);
            transform: rotate3d(0, 1, 0, 0);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0);
            transform: rotate3d(0, 1, 0, 0);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

section.sec-2 .map_sec a {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
}

section.sec-2 .map_sec a img {
  border-radius: 6px;
}

section.sec-2 .map_sec a .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f05c24;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 rgba(240, 92, 36, 0.9);
          box-shadow: 0 0 0 rgba(240, 92, 36, 0.9);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  position: absolute;
  left: 17px;
  top: 54px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(240, 92, 36, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(240, 92, 36, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(240, 92, 36, 0);
  }
}

section.sec-2 .map_sec a .line_details {
  height: 177px;
  left: auto;
  width: 338px;
  position: absolute;
  bottom: auto;
  /* width: 100%; */
  top: -187px;
  right: 20px;
  display: block;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
}

section.sec-2 .map_sec a .line_details .line1 {
  right: 0;
  background: #1e1e1e00;
  height: 0;
  position: absolute;
  left: auto;
  bottom: -20px;
  width: 1px;
  border-right: 2px dotted #dcd194;
}

section.sec-2 .map_sec a .line_details .line2 {
  border-top: 2px dotted #dcd194;
  height: 1px;
  right: 0;
  position: absolute;
  top: 20px;
  width: 0;
}

section.sec-2 .map_sec a .line_details .line3 {
  left: 0;
  background: #1e1e1e00;
  height: 0;
  position: absolute;
  right: auto;
  top: 20px;
  width: 1px;
  border-right: 2px dotted #dcd194;
}

section.sec-2 .map_sec a .line_details .progress_bars {
  visibility: hidden;
  opacity: 0;
  /* Progress bar CSS */
}

section.sec-2 .map_sec a .line_details .progress_bars .progress *:not([data-progress]) {
  margin: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}

section.sec-2 .map_sec a .line_details .progress_bars .progress {
  width: 100%;
  max-width: 200px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: auto;
  background: transparent;
}

section.sec-2 .map_sec a .line_details .progress_bars .progress [data-progress] {
  height: 4px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25) inset;
  border-radius: 2px;
  margin: 5px 0 10px 0;
  overflow: hidden;
  background: #ffffff;
}

section.sec-2 .map_sec a .line_details .progress_bars [data-progress]::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  width: 0;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
  color: white;
  padding: 0 3px;
  -webkit-transition: 2s;
  transition: 2s;
}

section.sec-2 .map_sec a .line_details .progress_bars [data-progress].animate-progress::after {
  width: var(--animate-progress);
}

section.sec-2 .map_sec a.usa {
  left: 200px;
  top: 170px;
}

section.sec-2 .map_sec a.spain {
  left: 435px;
  top: 150px;
}

section.sec-2 .map_sec a.spain .line_details {
  width: 558px;
}

section.sec-2 .map_sec a.turkey {
  left: 533px;
  top: 170px;
}

section.sec-2 .map_sec a.turkey .line_details {
  width: 666px;
}

section.sec-2 .map_sec a.china {
  left: 691px;
  top: 170px;
}

section.sec-2 .map_sec a.china .line_details {
  width: 824px;
}

section.sec-2 .map_sec a.india {
  left: 620px;
  top: 200px;
}

section.sec-2 .map_sec a.india .line_details {
  width: 754px;
}

section.sec-2 .map_sec a.bangladesh {
  left: 658px;
  top: 185px;
}

section.sec-2 .map_sec a.bangladesh .line_details {
  width: 792px;
}

section.sec-2 .map_sec a.srilanka {
  left: 633px;
  top: 245px;
}

section.sec-2 .map_sec a.srilanka .line_details {
  width: 766px;
}

section.sec-2 .map_sec a.thailand {
  left: 683px;
  top: 206px;
}

section.sec-2 .map_sec a.thailand .line_details {
  width: 816px;
}

section.sec-2 .map_sec a.portugal {
  left: 406px;
  top: 162px;
}

section.sec-2 .map_sec a.portugal .line_details {
  width: 539px;
}

.factorysetup {
  background: #292929;
}

.factorysetup ul {
  text-align: center;
  font-size: 0;
}

.factorysetup ul li {
  display: inline-block;
  position: relative;
  width: 25%;
  border-radius: 11px;
  /* overflow: hidden; */
  /* height: 120px; */
  margin: 0;
}

.factorysetup ul li img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 280px;
  /* border-radius: 12px; */
  margin-bottom: 0px;
  width: 100%;
}

.factorysetup ul li span {
  font-size: 18px;
  display: block;
  color: #fff;
  margin-bottom: 10px;
  position: absolute;
  bottom: 10px;
  z-index: 1;
  left: 20px;
}

.factorysetup ul li:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #1c1e25b8;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.factorysetup ul li:hover:after {
  content: "";
  background-color: #1c1e2557;
}

.recycle_sec {
  position: relative;
  background-image: url(../images/recyclebg.jpg);
}

.recycle_sec img {
  width: auto;
}

.recycle_sec h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  /* text-transform: uppercase; */
  color: #fff;
  position: relative;
  margin-bottom: 0px;
  position: relative;
  /* left: 0; */
  /* right: 0; */
  /* margin: 0 auto; */
  width: 100%;
  text-align: center;
  /* top: 50px; */
  padding: 13px 0;
}

section.sec-2.fix-it .map_sec a.usa {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.usa:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.usa:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.usa:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.usa:hover .line_details .line3 {
  height: 202px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.usa:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.spain {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

section.sec-2.fix-it .map_sec a.spain:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.spain:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.spain:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.spain:hover .line_details .line3 {
  height: 232px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.spain:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.turkey {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

section.sec-2.fix-it .map_sec a.turkey:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.turkey:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.turkey:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.turkey:hover .line_details .line3 {
  height: 212px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.turkey:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.china {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

section.sec-2.fix-it .map_sec a.china:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.china:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.china:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.china:hover .line_details .line3 {
  height: 220px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.china:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.india {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.india:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.india:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.india:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.india:hover .line_details .line3 {
  height: 192px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.india:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.srilanka {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

section.sec-2.fix-it .map_sec a.srilanka:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.srilanka:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.srilanka:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.srilanka:hover .line_details .line3 {
  height: 202px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.srilanka:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.thailand {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

section.sec-2.fix-it .map_sec a.thailand:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.thailand:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.thailand:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.thailand:hover .line_details .line3 {
  height: 202px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.thailand:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.portugal {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

section.sec-2.fix-it .map_sec a.portugal:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.portugal:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.portugal:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.portugal:hover .line_details .line3 {
  height: 202px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.portugal:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.bangladesh {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

section.sec-2.fix-it .map_sec a.bangladesh:hover .line_details {
  visibility: visible;
  opacity: 1;
}

section.sec-2.fix-it .map_sec a.bangladesh:hover .line_details .line1 {
  height: 100% !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

section.sec-2.fix-it .map_sec a.bangladesh:hover .line_details .line2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100% !important;
}

section.sec-2.fix-it .map_sec a.bangladesh:hover .line_details .line3 {
  height: 202px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

section.sec-2.fix-it .map_sec a.bangladesh:hover .line_details .progress_bars {
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: visible;
  opacity: 1;
}

section.sec-3 {
  padding: 100px 0;
  background: #f0f0fa;
}

section.sec-3 h3 {
  font-weight: 300;
  font-size: 37px;
  line-height: 75px;
  /* text-transform: uppercase; */
  color: #000000;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}

section.sec-3 h2 {
  font-weight: 300;
  font-size: 50px;
  line-height: 75px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  margin-bottom: 50px;
}

section.sec-3 h2 span {
  display: block;
}

section.sec-3 h2:after {
  content: "";
  bottom: -21px;
  left: 0;
  position: absolute;
  width: 164px;
  height: 1px;
  background: #f6911e;
}

section.sec-3 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #31364a;
}

section.sec-3 .typograph {
  position: relative;
  margin-top: 50px;
}

section.sec-3 .typograph .pipe {
  max-width: 1352px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

section.sec-3 .typograph .pipe path {
  stroke-dasharray: 9000;
  stroke-dashoffset: 9000;
}

section.sec-3 .typograph ul {
  text-align: center;
  position: relative;
  /* padding-top: 30px; */
  /* padding: 23px 0; */
  /* margin-bottom: 20px; */
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.sec-3 .typograph ul li {
  display: inline-block;
  width: 20%;
  padding: 0 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
}

section.sec-3 .typograph ul li img {
  border-radius: 14px;
}

section.sec-3 .typograph ul li .flip-card {
  background-color: transparent;
  width: 100%;
  height: 135px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  display: table;
  margin: 0 auto 8px;
}

section.sec-3 .typograph ul li .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

section.sec-3 .typograph ul li .flip-card:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

section.sec-3 .typograph ul li .flip-card-front,
section.sec-3 .typograph ul li .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

section.sec-3 .typograph ul li .flip-card-front {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a 32.08%, #13181e 100%);
  border-bottom: 6px solid #f16b23;
}

section.sec-3 .typograph ul li .flip-card-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

section.sec-3 .typograph ul li .flip-card-back img {
  width: 100%;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.sec-3 .typograph ul li h3 {
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #171c25;
  margin: 8px 0 2px;
}

section.sec-3 .typograph ul li h3 sup {
  font-size: 25px;
}

@-webkit-keyframes waviy {
  0%,
  40%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes waviy {
  0%,
  40%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

section.sec-3 .typograph ul li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  min-height: 78px;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  color: #171c25;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

section.sec-3.linethrough.fix-it .pipe path {
  -webkit-animation: animate 1.9s linear forwards;
          animation: animate 1.9s linear forwards;
}

section.sec-3.linethrough.fix-it ul.sec1 li:first-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

section.sec-3.linethrough.fix-it ul.sec1 li:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

section.sec-3.linethrough.fix-it ul.sec1 li:nth-child(3) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

section.sec-3.linethrough.fix-it ul.sec1 li:last-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

section.sec-3.linethrough.fix-it ul.sec2 li:first-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

section.sec-3.linethrough.fix-it ul.sec2 li:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

section.sec-3.linethrough.fix-it ul.sec2 li:nth-child(3) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

section.sec-3.linethrough.fix-it ul.sec2 li:last-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

section.sec-3.linethrough.fix-it ul.sec3 li:first-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

section.sec-3.linethrough.fix-it ul.sec3 li:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

section.sec-3.linethrough.fix-it ul.sec3 li:nth-child(3) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

section.sec-3.linethrough.fix-it ul.sec3 li:last-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

section.sec-3.linethrough.fix-it ul.sec4 li:first-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

section.sec-3.linethrough.fix-it ul.sec4 li:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

section.sec-3.linethrough.fix-it ul.sec4 li:nth-child(3) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

section.sec-3.linethrough.fix-it ul.sec4 li:last-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

section.sec-3.linethrough.fix-it ul.sec5 li:first-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

section.sec-3.linethrough.fix-it ul.sec5 li:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

section.sec-3.linethrough.fix-it ul.sec5 li:nth-child(3) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

section.sec-3.linethrough.fix-it ul.sec5 li:last-child {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

@-webkit-keyframes animate {
  0% {
    stroke-dashoffset: 9000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate {
  0% {
    stroke-dashoffset: 9000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

section.sec-4 {
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a 32.08%, #13181e 100%);
  padding: 100px 0;
}

section.sec-4 .usp .item {
  position: relative;
}

section.sec-4 .usp .item .imgwrap {
  border-radius: 25px 0px;
  background: linear-gradient(38.31deg, #f6911e 3.97%, #f05c24 103.32%);
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.sec-4 .usp .item .imgwrap img {
  width: auto;
}

section.sec-4 .usp .item h3 {
  font-weight: 700;
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

section.sec-4 .usp .item p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

section.sec-4 .usp .owl-item {
  position: relative;
}

section.sec-4 .usp .owl-item:after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow1.svg);
  width: 250px;
  height: 30px;
  right: -138px;
  top: 0;
  background-repeat: no-repeat;
}

section.sec-4 .usp .owl-item:nth-child(even):after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow2.svg);
  width: 250px;
  height: 30px;
  right: -138px;
  top: 60px;
  background-repeat: no-repeat;
}

.sec-4 .usp2 .usblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e)); */
  background: linear-gradient(185deg, #ffffff 50%, #e2e5ef 100%, #ffffff 100%);
  /* mix-blend-mode: multiply; */
  padding: 40px 20px;
  margin: 15px 0;
}

.sec-4 .usp2 h3 {
  font-weight: 700;
  margin-top: 20px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #111;
}

.sec-4 .usp2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #111;
  margin-bottom: 0;
}

section.sec-5 {
  padding-top: 60px;
  background: #f0f0fa;
}

section.sec-5 h2 {
  font-weight: 300;
  font-size: 50px;
  line-height: 75px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  text-align: center;
}

section.sec-5 h2:after {
  content: "";
  bottom: -21px;
  left: 0;
  position: absolute;
  width: 164px;
  height: 1px;
  background: #f6911e;
  right: 0;
  margin: auto;
}

section.sec-5 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #2e2e2e;
}

section.sec-5 .brandsec {
  padding-top: 80px;
}

section.sec-5 .brandsec .brandblock {
  display: block;
  position: relative;
}

section.sec-5 .brandsec .brandblock img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.sec-5 .brandsec .brandblock span {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 9;
}

section.sec-5 .brandsec .brandblock span img {
  width: auto;
  height: auto;
}

section.sec-5 .brandsec .brandblock .brandtitle {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 9;
}

section.sec-5 .brandsec .brandblock .brandtitle h3 {
  font-weight: 300;
  font-size: 25px;
  line-height: 38px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #ffffff;
}

section.sec-5 .brandsec .brandblock .brandtitle p {
  font-weight: 300;
  font-size: 13px;
  line-height: 26px;
  text-transform: capitalize;
  color: #ffffff;
  min-height: 80px;
}

section.sec-5 .brandsec .brandblock:hover .brandtitle h3 {
  background: -webkit-gradient(linear, left top, right top, color-stop(2.54%, #f05c24), color-stop(95.9%, #f6911e));
  background: linear-gradient(90deg, #f05c24 2.54%, #f6911e 95.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

section.sec-5 .brandsec .brandblock:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a 32.08%, #13181e 100%);
  mix-blend-mode: multiply;
}

section.sec-5 .brandsec .brandblock:hover:after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#ff5722), color-stop(32.08%, #31364a), to(#ff5722));
  background: linear-gradient(90deg, #ff5722 0%, #31364a 32.08%, #ff5722 100%);
  mix-blend-mode: multiply;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

section.sec-6 {
  background: #f0f0fa;
  padding: 100px 0;
}

section.sec-6 .brnd-logo {
  margin: 0 0 15px;
}

section.sec-6 h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 59px;
  color: #181d20;
  position: relative;
}

section.sec-6 h2 span {
  display: block;
}

section.sec-6 h2:after {
  content: "";
  position: absolute;
  background: #181d20;
  height: 1px;
  width: 130px;
  bottom: -10px;
  left: 7px;
}

section.sec-6 h4 {
  margin-top: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #181d20;
}

section.sec-6 h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  color: #181d20;
}

section.sec-6 h3 a {
  color: #181d20;
}

section.sec-6 ul {
  -webkit-column-count: 2;
          column-count: 2;
}

section.sec-6 ul li {
  padding: 15px 0;
  color: #585858;
  font-size: 14px;
}

section.sec-6 ul li b {
  display: block;
}

section.sec-6 ul li a {
  color: #585858;
}

section.sec-6 p {
  color: #000;
  font-size: 15px;
  margin: 30px 0 20px;
  line-height: 28px;
}

section.sec-6 form .form-wrap {
  margin: 10px 0;
}

section.sec-6 form .form-wrap label {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  color: #2e2e2e;
}

section.sec-6 form .form-wrap input:not([type="submit"]),
section.sec-6 form .form-wrap textarea {
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #dad8d8;
  border-radius: 4px;
  padding: 14px;
}

section.sec-6 form .form-wrap input[type="submit"] {
  background: #181d20;
  border-radius: 30px;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.01em;
  color: #fff;
  border: none;
  padding: 10px 80px;
}

section.sec-6 form .form-wrap textarea {
  height: 170px;
  resize: none;
}

section.sec-7 {
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a 32.08%, #13181e 100%);
  padding: 80px 0;
}

section.sec-7 h2 {
  font-weight: 300;
  font-size: 50px;
  line-height: 75px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

section.sec-7 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  color: #87929d;
}

section.sec-7 .certificate {
  margin-top: 50px;
}

section.sec-7 .certificate .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90px;
}

section.sec-7 .certificate .item img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.terms-sec {
  padding: 60px 0;
  border-bottom: 1px solid #ddd;
}

.terms-sec h2 {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  font-size: 26px;
  margin: 0 0 15px;
}

.terms-sec p {
  color: #222;
  background-color: #fff;
  line-height: 26px;
  text-align: justify;
}

.footer .newsletter {
  padding: 60px 0;
}

.footer .newsletter h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  text-transform: capitalize;
  color: #13181e;
}

.footer .newsletter form .n_input {
  padding: 10px 10px;
  /* float: left; */
  width: 70%;
  height: 50px;
  /* border-radius: 20px 0px 0px 20px; */
  border: none;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 31px;
  color: #000;
  background: transparent;
  border-bottom: 1px solid #868686;
}

.footer .newsletter form .n_submit {
  height: 50px;
  border: none;
  /* background-color: transparent; */
  /* border-radius: 0px 20px 20px 0px; */
  /* float: left; */
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 31px;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #181d20;
  border-radius: 30px;
  padding: 10px 60px;
}

.footer p {
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer p a {
  font-weight: 400;
  font-size: 15px;
  line-height: 40px;
  color: #000000;
  text-transform: lowercase;
}

.footer h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 34px;
  color: #13181e;
}

.footer ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  text-transform: capitalize;
  color: #000000;
}

.footer .social ul li {
  display: inline-block;
  margin-right: 17px;
}

.footer .social ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  line-height: 33px;
  background: #181d20;
  border-radius: 50%;
}

.footer .social ul li a img {
  width: auto;
}

.footer .social ul li a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#f05c24), to(#f6911e));
  background: linear-gradient(180deg, #f05c24 0%, #f6911e 100%);
  border: 1px solid transparent;
}

.footer .copyright {
  border-top: 1px solid #868686;
  text-align: center;
  margin-top: 50px;
}

.footer .copyright p {
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  text-transform: capitalize;
  color: #000000;
  margin: 30px 0;
}

.processblock {
  padding-top: 60px;
}

.processblock h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 75px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  text-align: center;
}

.processblock h1:after {
  content: "";
  bottom: -21px;
  left: 0;
  position: absolute;
  width: 164px;
  height: 1px;
  background: #f6911e;
  right: 0;
  margin: auto;
}

.processblock ul {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0;
}

.processblock ul li {
  width: 25%;
}

.processblock ul li .pblock {
  position: relative;
}

.processblock ul li .pblock .pimg {
  width: 252px;
  position: relative;
  height: 290px;
  background-image: url(../images/pblock-bg.svg);
  /* clip-path: polygon(50% 0, 100% 23%, 100% 77%, 51% 100%, 0 77%, 0 23%); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */
  padding: 20px 18px;
  margin: 0 auto;
}

.processblock ul li .pblock .pimg h2 {
  font-weight: 700;
  font-size: 50px;
  text-align: left;
  line-height: 54px;
  font-family: 'Blocklyn Grunge';
  color: rgba(79, 73, 41, 0.43);
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}

.processblock ul li .pblock .pimg img {
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 76%, 51% 100%, 0 76%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 76%, 51% 100%, 0 76%, 0 25%);
  width: 230px;
  height: 250px;
  margin: 0 auto;
}

.processblock ul li .pblock .pdesc {
  text-align: center;
  padding-left: 0px;
}

.processblock ul li .pblock .pdesc h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  color: #000000;
  margin-top: 20px;
}

.processblock ul li .pblock .pdesc p {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  text-transform: capitalize;
  color: #000000;
}

.banner.innerbanner:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#13181e), color-stop(32.08%, #31364a), to(#13181e));
  background: linear-gradient(90deg, #13181e 0%, #31364a 32.08%, #13181e 100%);
  mix-blend-mode: multiply;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.global_journey {
  background-image: url(../images/global_bg_line.svg);
  background-repeat: no-repeat;
}

.global_journey ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 80px 0;
}

.global_journey ul li .gtext {
  margin-left: 80px;
  background: #fff;
  text-align: left;
  margin-right: 80px;
  width: 30%;
}

.global_journey ul li .gtext h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F05C24), to(#F6911E));
  background: linear-gradient(180deg, #F05C24 0%, #F6911E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.global_journey ul li .gtext p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.global_journey ul li:nth-child(odd) .gimg {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 1;
  order: 1;
}

.global_journey ul li:nth-child(odd) .gtext {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  text-align: right;
  margin-right: 120px;
}

.banner.innerbanner {
  position: relative;
}

.banner.innerbanner .ban_btm {
  position: absolute;
  left: 0;
  bottom: 0px;
}

.bredcrumb_sec {
  position: relative;
}

.bredcrumb_sec .bredcrumb {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 0px;
}

.bredcrumb_sec .bredcrumb ul li {
  display: inline-block;
  font-weight: 600;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F05C24), to(#F6911E));
  background: linear-gradient(180deg, #F05C24 0%, #F6911E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 20px;
}

.bredcrumb_sec .bredcrumb ul li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: #000000;
}

.bredcrumb_sec .bredcrumb ul li:after {
  content: "";
  position: absolute;
}

.bredcrumb_sec .bredcrumb ul li:first-child {
  padding-left: 0;
}

.contact_block {
  display: block;
  -webkit-box-shadow: 0px 0px 0px 10px transparent;
  box-shadow: 0px 0px 0px 10px transparent;
  position: relative;
  max-height: 288px;
  margin: 20px 0;
  border-radius: 20px;
  display: table;
  overflow: hidden;
  width: 100%;
  border: 1px solid #f05c24;
}

.contact_block img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact_block .g_details {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  padding: 10px;
}

.contact_block .g_details img {
  width: auto;
  height: auto;
}

.contact_block .g_details p {
  display: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0 0 3px;
  text-align: left;
}

.contact_block .g_details p a {
  color: #fff;
}

.contact_block .g_details h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
  margin: 5px 0 6px 0;
}

.contact_block:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #1c1e2557;
  position: absolute;
  border-radius: 20px;
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.contact_block:hover:after {
  content: "";
  background-color: #1c1e25b8;
}

.contact_block:hover .g_details p {
  display: block;
}

section.sec2 {
  padding: 50px 0;
}

section.sec2 h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 60px;
  color: #2e2e2e;
  padding-bottom: 10px;
  position: relative;
}

section.sec2 h3::after {
  content: "";
  background-color: #f05c24;
  height: 1px;
  width: 83px;
  position: absolute;
  bottom: 0;
  left: 0;
}

section.sec2 p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 0;
  color: #2e2e2e;
}

section.sec2 ul.list1 {
  margin-top: 40px;
  padding: 0;
}

section.sec2 ul.list1 li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.sec2 ul.list1 li:not(:last-child) {
  margin-bottom: 26px;
}

section.sec2 ul.list1 li h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 0;
}

section.sec2 ul.list1 li p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #2e2e2e;
  max-width: 82%;
}

section.sec6 ul.list2 {
  margin-top: 40px;
  padding: 0;
  padding-left: 20px;
}

section.sec6 ul.list2 li {
  max-width: 80%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 0;
  color: #2e2e2e;
  list-style: disc;
}

section.sec6 ul.list2 li::marker {
  font-size: 10px;
}

section.sec6 ul.list2 li:not(:last-child) {
  margin-bottom: 14px;
}

section.sec6 ul.list2 li h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 0;
}

section.sec6 ul.list2 li p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  color: #2e2e2e;
  max-width: 82%;
}

section.sec6 .sec6-img {
  position: relative;
}

section.sec6 .sec6-img img:first-child {
  position: absolute;
  top: 42%;
  left: -96px;
}

.catalogsec h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 60px;
  /* identical to box height, or 167% */
  text-align: center;
  color: #2E2E2E;
}

.catalog {
  position: relative;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  margin: 20px 0;
}

.catalog h3 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: capitalize;
  color: #FFFFFF;
  z-index: 9;
  position: absolute;
  bottom: 0;
  /* left: 15px; */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 35, 92, 0)), color-stop(92.94%, #05112B));
  background: linear-gradient(180deg, rgba(9, 35, 92, 0) 0%, #05112B 92.94%);
  width: 100%;
  margin: 0;
  padding: 15px;
}

.catalog h3 a {
  font-weight: 600;
  visibility: hidden;
  font-size: 12px;
  line-height: 18px;
  display: block;
  text-transform: capitalize;
  background: -webkit-gradient(linear, left top, left bottom, from(#F05C24), to(#F6911E));
  background: linear-gradient(180deg, #F05C24 0%, #F6911E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.catalog:hover:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 35, 92, 0)), color-stop(92.94%, #05112B));
  background: linear-gradient(180deg, rgba(9, 35, 92, 0) 0%, #05112B 92.94%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.catalog:hover h3 a {
  visibility: visible;
}

.about-sec1 {
  padding: 50px 0 10px;
}

.about-sec1 .item {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-sec1 .item img {
  width: 100px !important;
  height: 60px;
  -webkit-filter: grayscale(49.5);
          filter: grayscale(49.5);
  opacity: 0.3;
}

section.about-sec2 {
  padding: 50px 0 30px;
  position: relative;
}

section.about-sec2 h4 {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  margin-bottom: 10px;
  color: #868686;
}

section.about-sec2 h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
  /* or 167% */
  margin-bottom: 50px;
  color: #2e2e2e;
  position: relative;
}

section.about-sec2 h2::after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 83px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

section.about-sec2 h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  margin-bottom: 20px;
  color: #f6911e;
}

section.about-sec2 p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  /* or 214% */
  color: #2e2e2e;
}

section.about-sec2 .about-img-box {
  position: relative;
  text-align: right;
}

section.about-sec2 .about-img-box img:last-child {
  position: absolute;
  top: 30%;
  left: 100px;
}

section.about-sec2 img.poly {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  width: 614px;
}

section.about-sec3 {
  position: relative;
  padding: 70px 0 70px;
}

section.about-sec3 .about-sec3__text h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 60px;
  /* or 167% */
  margin-bottom: 10px;
  color: #000000;
}

section.about-sec3 .about-sec3__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  /* or 214% */
  text-align: justify;
  color: #2e2e2e;
}

section.about-sec3 ul.about-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 25px; */
  top: 90px;
  position: absolute;
  right: 0;
  background-color: #f76c04;
  width: 652px;
  padding-top: 90px;
  /* padding: 0 30px; */
  /* text-align: center; */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.about-sec3 ul.about-side li {
  list-style: none;
  text-align: center;
  background-color: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 1px #000;
  box-shadow: 0 0 1px #000;
  width: 178px;
  /* height: 174px; */
  padding-top: 46px;
  /* margin-bottom: -133px; */
  /* padding-bottom: 150px !important; */
  position: relative;
  margin: 0px 0px -110px 20px;
}

section.about-sec3 ul.about-side li::after {
  content: '';
  background-color: #000;
  height: 9px;
  width: 57px;
  position: absolute;
  -webkit-filter: drop-shadow(0px 13px 9px #bbb);
          filter: drop-shadow(0px 13px 9px #bbb);
  left: 50%;
  bottom: 11px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

section.about-sec3 ul.about-side li h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  margin-top: 14px;
}

section.about-sec3 ul.about-side li h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #868686;
  margin-top: 4px;
}

section.about-sec4 {
  padding: 70px 0 320px;
  position: relative;
}

section.about-sec4::after {
  content: '';
  background: url("../images/string.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 480px;
  display: block;
  height: 100%;
  position: absolute;
  bottom: -400px;
  width: 100px;
  width: 100%;
  left: 0px;
}

section.about-sec4 h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 50px;
  line-height: 75px;
  text-transform: uppercase;
  position: relative;
  max-width: 44%;
  color: #000000;
  padding-bottom: 20px;
  margin-bottom: 79px;
}

section.about-sec4 h2::after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 152px;
  position: absolute;
  bottom: 0;
  left: 0;
}

section.about-sec4 .brand-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

section.about-sec4 .brand-box img {
  margin-bottom: 63px;
}

section.about-sec4 .brand-box p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #333b45;
  text-align: left;
  margin: 0px 0 15px;
  max-width: 93%;
}

section.about-sec4 .brand-box p span {
  color: #ed3237;
  font-size: 20px;
  font-weight: 700;
}

section.about-sec4 .sec4-content {
  position: relative;
}

section.about-sec4 .sec4-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 50px;
  color: #333b45;
  margin-top: 10px;
  max-width: 50%;
  float: right;
}

section.about-sec4 .sec4-content img {
  position: absolute;
  left: -67px;
  width: 620px;
}

.modifier {
  padding-top: 30px !important;
}

.modifier::after {
  bottom: -334px !important;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.modifier p {
  margin-left: 44px !important;
}

.modifier p span {
  color: #2aabad !important;
}

.modifier2 {
  padding-top: 80px !important;
  padding-bottom: 40px !important;
}

.modifier2::after {
  content: none !important;
}

.modifier2 p span {
  color: #940d96 !important;
}

section.our-factories {
  padding: 50px 0;
}

section.our-factories h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 75px;
  /* identical to box height */
  margin-bottom: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #181d20;
}

section.our-factories h2 span {
  color: #f05c24;
}

section.our-factories .fac-cards img {
  margin-bottom: 20px;
  border-radius: 15px 15px 0 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.our-factories .fac-cards h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}

section.our-factories .fac-cards p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333b45;
}

.bg_sec {
  background: linear-gradient(153.71deg, #FFFFFF 1.14%, #F0F0FA 15.13%);
  -webkit-clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
  margin-top: -70px;
  z-index: -1;
  padding-top: 140px;
}

.portfolio-sec {
  padding: 60px 0;
  background: #fff;
}

.portfolio-sec h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #2E2E2E;
  position: relative;
  margin-bottom: 30px;
}

.portfolio-sec h2:after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 152px;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.portfolio-sec p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #2E2E2E;
}

.portfolio-sec2 {
  text-align: center;
  background: #f5f5f5;
  height: 400px;
  padding: 60px 0;
}

.portfolio-sec2 h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 60px;
  color: #2E2E2E;
  position: relative;
}

.portfolio-sec2 h2:after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 152px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.portfolio-sec2 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 30px;
  color: #2E2E2E;
}

.portfolio-sec3 {
  background: #fff;
  padding: 60px 0;
  margin-top: 350px;
}

.portfolio-sec3 h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #2E2E2E;
  position: relative;
  margin-bottom: 30px;
}

.portfolio-sec3 h2:after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 152px;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.portfolio-sec3 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #000000;
}

.portfolio-sec3 a {
  text-decoration: none;
  color: #F05C24;
  font-weight: 600;
  font-size: 16px;
}

.portfolio-sec3 .afgan {
  position: relative;
}

.portfolio-sec3 .afgan .imgafgan {
  border-radius: 30px;
  border-radius: 15px;
  width: 100%;
}

.portfolio-sec3 .afgan .imglogos {
  position: absolute;
  left: -50px;
  bottom: 60px;
}

.portfolio-sec4 {
  padding: 60px 0;
}

.portfolio-sec4 .portfolio11 {
  background-image: url("../images/portfolio5.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  height: 100%;
  background-position: center center;
  overflow: hidden;
  border-radius: 30px;
}

.portfolio-sec4 .portfolio11 h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 60px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.portfolio-sec4 .portfolio11 .nations li {
  margin-bottom: 20px;
}

.portfolio-sec4 .portfolio11 .nations li a {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.portfolio-sec4 .portfolio11 .nations li a figure {
  display: initial;
  margin-right: 10px;
}

.portfolio-sec5 {
  background: #fff;
  padding: 60px 0;
}

.portfolio-sec5 h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: #2E2E2E;
  position: relative;
  margin-bottom: 30px;
}

.portfolio-sec5 h2:after {
  content: '';
  background-color: #f05c24;
  height: 1px;
  width: 152px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.portfolio-sec5 .img22 {
  width: 100%;
}

.portfolio-sec5 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #000000;
}

.portfolio-sec5 a {
  text-decoration: none;
  color: #F05C24;
  font-weight: 600;
  font-size: 16px;
}
/*# sourceMappingURL=style.css.map */