@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: #333132 !important;
  height: 300px;
  overflow-y: scroll;
  font-family: "Cairo", sans-serif;
}

body::-webkit-scrollbar-track {
  background-color: #eac632;
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

::selection {
  color: #333132;
  background: #eac632;
}

body::-webkit-scrollbar {
  width: 15px;
  background-color: #333132;
}

body::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #333132));
}
ul li {
  font-family: "Cairo", sans-serif;
  font-weight: 600;
}

p {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
}

a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
}

/*===== Conflict ===*/
.shamsan p:nth-of-type(2),
.vision-content p:nth-of-type(2),
.mission-content p:nth-of-type(2) {
  display: none;
}

/*=================== Padding & Margin Class =================*/
.pl0 {
  padding-left: 0px;
}

.pl10 {
  padding-left: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt40 {
  padding-top: 40px;
}

.pt60 {
  padding-top: 60px;
}

.pt80 {
  padding-top: 80px;
}

.pt100 {
  padding-top: 100px;
}

.pt150 {
  padding-top: 150px;
}

.pt200 {
  padding-top: 200px;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb20 {
  padding-bottom: 20px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb100 {
  padding-bottom: 100px;
}

.mt0 {
  margin-top: 0 !important;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml20 {
  margin-left: 20px;
}

/*=================== Shamsan Page CSS Start=================*/

/*======================PAGE LOADER CSS ==================*/
.loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #f1f2f5;
  z-index: 999999999;
  text-align: center;
  padding-top: 200px;
}

#loader {
  max-width: 15rem;
  width: 100%;
  height: auto;
  stroke-linecap: round;
}

circle {
  fill: none;
  stroke-width: 3.5;
  -webkit-animation-name: preloader;
  animation-name: preloader;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: 170px 170px;
  transform-origin: 170px 170px;
  will-change: transform;
}

circle:nth-of-type(1) {
  stroke-dasharray: 550;
}

circle:nth-of-type(2) {
  stroke-dasharray: 500;
}

circle:nth-of-type(3) {
  stroke-dasharray: 450;
}

circle:nth-of-type(4) {
  stroke-dasharray: 300;
}

circle:nth-of-type(1) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

circle:nth-of-type(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

circle:nth-of-type(3) {
  -webkit-animation-delay: -0.45s;
  -moz-animation-delay: -0.45s;
  animation-delay: -0.45s;
}

circle:nth-of-type(4) {
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

@-webkit-keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*=================== HEADER & NAV =================*/
header {
  position: relative;
  top: 0;
  z-index: 99999999;
}

nav {
  padding: 0 0 22px 0 !important;
}

.navbar-nav {
  padding-top: 25px;
}

ul.navbar-nav li {
  display: flex;
  padding: 0px 15px;
  align-items: center;
}

ul.navbar-nav li a {
  color: white !important;
  width: max-content;
}

nav.navbar-hide {
  background: #fff !important;
  transition: all ease 0.5s;
}

nav.navbar-hide div ul.navbar-nav li a {
  color: #333132 !important;
}

#ShamsanCompany:before {
  position: absolute;
  content: "";
  background-image: url(https://shamsan.netlify.app/images/logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  top: -40px;
  height: 110px;
  width: 100%;
}

nav.navbar-hide #ShamsanCompany:before {
  background-image: url(../images/overlay-shamsan.png);
}

a.nav-link.active,
a.nav-link:hover {
  border-bottom: 4px solid #eac632;
}

ul li:last-child a.nav-link.active,
ul li:last-child a.nav-link:hover {
  border-bottom: 0 !important;
}

/*=================== BANNER =================*/
#bg-sec1 {
  background-color: #333132;
  width: 100%;
  /*height: 100vh;
 background-image: url("../images/bg-img.png"); */
}

.banner-right {
  position: relative;
}

.banner-right img {
  width: 1250px;
  position: absolute;
  top: -154px;
  z-index: 3;
  right: -80px;
}

.banner-right::before {
  content: "";
  position: absolute;
  background-color: black;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  z-index: 2;
  top: 42px;
  left: 10px;
  animation: fadeIn 1s infinite alternate;
}

.banner-right::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  border: 1px solid #eac632;
  left: 162px;
  top: -72px;
  z-index: 1;
  animation: fadeIn 0.5s infinite alternate;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

#ShamsanCompany {
  position: relative;
}

h2.heading2 {
  font-size: 31px;
  color: white;
  font-weight: 700;
  white-space: pre-line;
}

.shamsan p {
  font-size: 15px;
  color: #b7b6b6;
  word-spacing: 5px;
  line-height: normal;
  position: relative;
}

.shamsan p:before {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 140px;
  width: 5px;
  top: 220px;
  left: 0px;
}

.shamsan p:after {
  position: absolute;
  content: "";
  border-bottom: 8px solid #eac632;
  height: 140px;
  width: 150px;
  top: 230px;
  right: -425%;
  left: 0;
  margin: 0 auto;
  z-index: 99;
}

/*=================== SECTION VISION & MISSION =================*/

#triangle-right {
  position: relative;
  margin-top: 50px;
}

#triangle-right::before {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 720px solid #b7b6b6;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: -125px;
  right: 0;
  z-index: -1;
}

div#triangle-right:after {
  height: 266px;
  border-right: 715px solid #b7b6b6;
  border-bottom: 115px solid transparent;
  position: absolute;
  content: "";
  left: -125px;
  bottom: -150px;
  width: 100%;
}

#vision {
  background-color: #333132;
  z-index: -9;
  position: relative;
}

.vision-content p {
  /* text-align: justify; */
  padding: 20px 0 0 240px;
  position: relative;
}

.vision-content p:before {
  content: "";
  position: absolute;
  border-top: 8px solid #fff;
  width: 300px;
  top: 0px;
}

.mission-img-right {
  position: relative;
}

.mission-img-right:before {
  content: "";
  position: absolute;
  border-left: 5px solid #e2e2e2;
  height: 3360px;
  left: 20px;
  top: 130px;
  z-index: 4;
}

.visionh2 {
  font-size: 40px;
  color: #333132;
  font-weight: 700;
  text-align: right;
}

.vision-img-left img {
  width: 100%;
}

.mission-img-right img {
  width: 100%;
  position: relative;
  top: 170px;
}

.mission-content p {
  color: #b7b6b6;
  font-size: 16px;
  /* text-align: justify; */
}

.mission-content {
  padding: 100px 0 0 100px;
}

.mission-content h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
}

.mission-content p {
  position: relative;
  padding-top: 20px;
  padding-right: 60px;
}

.mission-content p::before {
  position: absolute;
  content: "";
  border-bottom: 8px solid #eac632;
  width: 230px;
  top: 0;
}

/*============== Product and Range ===============*/
div#triangle-right h3 {
  color: #fff;
  font-size: 140px;
  font-weight: 400 !important;
  padding-top: 150px;
  position: relative;
  z-index: 99;
  text-shadow: 30px 0 15px rgb(0 0 0 / 21%);
}

div#triangle-right h3:after {
  position: absolute;
  content: "";
  /* background-image: url(../images/handle.png); */
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  background-size: contain;
  top: 204px;
  left: 416px;
  z-index: -99;
}

div#triangle-right h3:before {
  position: absolute;
  content: "";
  /* background-image: url(../images/product-line.png); */
  background-repeat: no-repeat;
  background-position: center;
  width: 500px;
  height: 500px;
  background-size: contain;
  left: 215px;
  z-index: -9999;
}

.range {
  position: relative;
}

.range:before {
  width: 100%;
  height: 560px;
  border-top: 180px solid transparent;
  border-left: 701px solid #b7b6b6;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  right: -183px;
  z-index: -1;
}

.range h3 {
  color: #eac632;
  font-size: 130px;
  padding-top: 380px;
  padding-left: 35px;
}

/*==== Building Material and Electrical Products =====*/
section#buildElectric {
  position: relative;
  z-index: -9999;
}

.electric-product {
  position: relative;
  padding: 85px 0 150px 100px;
}

.electric-product:before {
  border-right: 700px solid #b7b6b6;
  border-bottom: 100px solid transparent;
  position: absolute;
  content: "";
  left: 23px;
  width: 100%;
  top: 0;
  height: 100%;
}

.electric-product h3 {
  color: #333132;
  font-size: 39px;
  position: relative;
  padding-bottom: 20px;
}

.electric-product h3:before {
  position: absolute;
  content: "";
  border-bottom: 8px solid #fff;
  width: 160px;
  bottom: 0;
}

.electric-product ul {
  list-style: none;
  padding-top: 25px;
}

.electric-product ul li {
  position: relative;
  padding-left: 25px;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 10px;
  color: #333132;
  z-index: 99;
}

.electric-product ul li:before {
  content: "";
  position: absolute;
  left: -38px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 8px;
}
.electric-product ul li:after {
  background-color: transparent;
  width: 100%;
  left: -63px;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -9;
}
.electric-product ul li:nth-child(even):after {
  background-color: #c2c1c1;
  width: 100%;
  left: -63px;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -9;
}
.electric-product ul li:hover:before {
  background: white;
}
.electric-product ul li:hover {
  color: white;
}
.electric-product ul li:hover:after {
  background-color: #eac632;
}

.build-material h3 {
  color: #fff;
  white-space: pre-line;
  font-size: 38px;
  position: relative;
  padding-left: 150px;
  padding-top: 80px;
}

.build-material,
.content {
  position: relative;
}

.build-material:before,
.content:before {
  position: absolute;
  content: "";
  border-top: 6px solid #eac632;
  width: 425px;
  top: 18px;
  left: 20px;
  z-index: 999;
}

.build-material ul {
  list-style: none;
  padding-left: 190px;
  padding-top: 10px;
}

.build-material ul li {
  color: #b7b6b6;
  position: relative;
  padding-left: 25px;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 10px;
}

.build-material ul li:before {
  content: "";
  position: absolute;
  left: -45px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 8px;
}
.build-material ul li:after {
  border: 1px solid transparent;
  width: 100%;
  left: -63px;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -1;
}
.build-material ul li:nth-child(even):after {
  border: 1px solid #b7b6b661;
  width: 100%;
  left: -63px;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -1;
}
.build-material ul li:hover {
  color: white;
}
.build-material ul li:hover:after {
  background: #eac632;
}
.build-material ul li:hover:before {
  background-color: white;
}
/*=====================Factories====================*/

.factory-img {
  position: relative;
}

.factory-img img {
  width: 700px;
  position: absolute;
  left: -150px;
  padding-top: 200px;
}

.content h3 {
  color: #fff;
  white-space: pre-line;
  font-size: 38px;
  position: relative;
  padding-left: 208px;
  padding-top: 80px;
}

.content h4 {
  color: #b7b6b6;
  font-size: 35px;
  font-weight: 400;
}

#factories ul {
  color: #b7b6b6;
  list-style: none;
  padding-top: 40px;
}

#factories ul:after {
  position: absolute;
  content: "";
  border-bottom: 8px solid #fff;
  width: 175px;
  bottom: -50px;
  left: 0;
}

#factories ul li {
  position: relative;
  font-size: 25px;
  line-height: 58px;
  padding-left: 35px;
  font-weight: 300;
  z-index: 99;
  font-weight: 600;
  overflow-x: #b7b6b6;
}

#factories ul li:before {
  content: "";
  position: absolute;
  left: -45px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 25px;
}

#factories ul li:nth-child(even):after {
  background-color: #707070;
  width: 100%;
  left: -63px;
  position: absolute;
  content: "";
  height: 100%;
  top: 0px;
  z-index: -9;
}

/*=============== OUR VALUES ===================*/
section#values .content {
  position: relative;
}

section#values .content:before {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 700px solid #f5f5f5;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  z-index: -1;
  left: -109px;
}

section#values .content:after {
  border-right: 700px solid #f5f5f5;
  border-bottom: 115px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -110px;
  top: 210px;
  right: 0;
  margin: 0 auto;
  z-index: -9;
}

#values .content h4 {
  color: #333132;
  font-size: 35px;
  padding-top: 60%;
  font-weight: 800;
  position: relative;
}

#values .content h4:after {
  content: "";
  position: absolute;
  border-top: 8px solid #eac632;
  width: 400px;
  left: 130%;
  bottom: 15px;
}

section#values .content .row {
  padding-left: 150px;
}

.icon {
  border: 4px solid #eac632;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  margin: 0 auto;
  margin-bottom: 24px;
  transition: transform ease-out 0.1s, background 0.2s;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
}

.icon:hover {
  border-color: #333132;
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
}

.icon img {
  width: 45px;
}

section#values .content h5 {
  text-align: center;
  font-size: 19px;
  color: #333132;
}

section#values .content p {
  font-size: 16px;
  white-space: pre-line;
  text-align: center;
  color: #333132;
}

.right-content {
  padding-top: 70%;
}

.right-content h5 {
  color: #b7b6b6;
  text-align: center;
  font-size: 19px;
}

.right-content p {
  color: #b7b6b6;
  font-size: 16px;
  white-space: pre-line;
  text-align: center;
}

.right-content .icon {
  border: 4px solid #eac632;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 50%;
  margin: 0 auto;
  margin-bottom: 24px;
  transition: transform ease-out 0.1s, background 0.2s;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
}

.right-content .icon:hover {
  border-color: #fff;
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
}

.right-content .icon img {
  width: 45px;
}

.right-content .row {
  padding-left: 50px;
}

.first-half {
  position: relative;
  padding-bottom: 200px;
}

/* 
.first-half:after {
  border-right: 694px solid #F5F5F5;
  border-bottom: 115px solid transparent;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: -22px;
  top: 15px;
} */

.second-half {
  position: relative;
  padding-bottom: 218px;
}

.second-half:after {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 710px solid #f5f5f5;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  z-index: -11;
  left: 15px;
  top: 5px;
}

/*========Company & Brand======*/
#companyBrand .white {
  position: relative;
}

#companyBrand .white:before {
  width: 698px;
  height: 100%;
  border-top: 180px solid transparent;
  background-color: #fff;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  z-index: -11;
  left: -109px;
  top: -162px;
  padding-bottom: 100%;
}

#companyBrand .white:after {
  position: absolute;
  content: "";
  border: 1px solid #eac632;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  top: 200px;
  margin: 0 auto;
  left: -180px;
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
}

#companyBrand .grey:after {
  position: absolute;
  content: "";
  border-left: 6px solid #e1e2e2;
  left: 20px;
  height: 240%;
  top: -56px;
  margin: 0 auto;
  z-index: 99;
}

#companyBrand .grey {
  position: relative;
}

#companyBrand .grey:before {
  border-right: 700px solid #f5f5f5;
  border-bottom: 115px solid transparent;
  position: absolute;
  content: "";
  left: 23px;
  width: 100%;
  top: -3px;
  height: 100%;
  padding-bottom: 100%;
}

#companyBrand h4 {
  color: #333132;
  font-size: 35px;
  /* padding-top: 60%; */
  font-weight: 800;
  position: relative;
  padding-bottom: 40px;
}

#companyBrand h4:after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #000;
  top: 55px;
  width: 150px;
  left: 0;
}

#companyBrand .grey {
  padding-left: 140px;
}

#companyBrand img {
  width: 150px;
  opacity: 0.5;
}

#companyBrand .grey .col-md-6:nth-of-type(2) img {
  padding-top: 33px;
}

#companyBrand .grey .col-md-6:nth-of-type(3) img {
  padding-top: 15px;
}

#companyBrand .white img {
  width: 200px;
  opacity: 0.5;
}

#companyBrand .white img:hover,
#companyBrand img:hover {
  opacity: 1;
}

section#companyBrand {
  position: relative;
  padding-bottom: 10%;
  background-color: #fff;
}

.line {
  position: relative;
}

.line:after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #eac632;
  width: 110px;
  top: 60px;
  right: 0;
  margin: 0 auto;
}

.line:before {
  position: absolute;
  content: "";
  border: 1px solid #707070;
  border-radius: 100%;
  width: 400px;
  height: 400px;
  top: 165px;
  margin: 0 auto;
  right: -250px;
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
}

/*===========SOFAB=============*/
#sofab {
  background-color: #fff !important;
  padding-top: 20%;
}

section#sofab img {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0px;
}

.sofab-logo {
  width: unset !important;
  position: unset !important;
}

section#sofab p {
  padding: 0 0px 6px 0px;
  color: #6b6b6b;
  font-size: 18px;
  line-height: normal;
}

section#sofab h2 {
  color: #333132;
  font-size: 40px;
  padding-bottom: 40px;
  padding-top: 20px;
}

section#sofab .grey {
  position: relative;
  display: flex;
  padding-bottom: 20%;
}

section#sofab .grey ul {
  list-style: none;
  padding-right: 45px;
  padding-left: 15px !important;
}

section#sofab .grey ul li {
  position: relative;
  color: #333132;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  z-index: 99;
  padding-bottom: 10px;
}

section#sofab .grey ul li:before {
  content: "";
  position: absolute;
  left: -45px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 10px;
}

section#sofab .grey ul:nth-of-type(1) li:nth-child(even):after {
  background-color: #eaeaea;
  width: 185px;
  left: -55px;
  position: absolute;
  content: "";
  height: 100%;
  top: -5px;
  z-index: -9;
}

section#sofab .grey ul:nth-of-type(2) li:nth-child(odd):after {
  background-color: #eaeaea;
  width: 220px;
  left: -55px;
  position: absolute;
  content: "";
  height: 100%;
  top: -4px;
  z-index: -9;
}

section#sofab .grey:before {
  position: absolute;
  content: "";
  width: 1150px;
  height: 100%;
  border-left: 0 solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 300px solid #e2e2e2;
  left: -100px;
  top: -85px;
}

/*=======================Partners=========================*/
section#Partners {
  background-color: #fff;
  padding-top: 20%;
  position: relative;
  top: -3px;
}

section#Partners::before {
  position: absolute;
  content: "";
  border-radius: 100%;
  border: 1px solid #707070;
  width: 180px;
  height: 180px;
  right: -20px;
  top: 20px;
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
}

section#Partners::after {
  position: absolute;
  content: "";
  border-radius: 100%;
  border: 1px solid #707070;
  width: 450px;
  height: 450px;
  left: 0;
  bottom: -400px;
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
  z-index: 9999;
}

@keyframes move {
  0% {
    offset-distance: 30%;
  }

  100% {
    offset-distance: 70%;
  }
}

section#Partners .row {
  padding-bottom: 50px;
}

section#Partners h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  position: relative;
}

section#Partners h3:after {
  position: absolute;
  content: "";
  border-bottom: 8px solid #eac632;
  top: 62px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 170px;
}

section#Partners img {
  width: 100%;
  opacity: 0.5;
  padding: 0 15px;
}

section#Partners img:hover {
  opacity: 1;
}

section#Partners .row .col-md-2 {
  text-align: center;
}

/*=============== Branch Services===================*/
section#branch {
  background-color: #fff;
  padding-bottom: 30%;
}

section#branch .content {
  position: relative;
  z-index: 999;
}

section#branch .content:before {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 700px solid #f5f5f5;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: -109px;
  z-index: -99;
}

section#branch .content:after {
  position: absolute;
  content: "";
  border-right: 6px solid #e1e2e2;
  height: 100%;
  right: -50px;
  width: 10px;
  top: 166px;
  margin: 0 auto;
}

section#branch .content h4 {
  color: #333132 !important;
  font-weight: 700;
  padding-top: 80%;
  position: relative;
  z-index: 999;
  text-align: right;
  padding-bottom: 40px;
}

section#branch .content h4:after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #b7b6b6;
  width: 150px;
  right: 0;
  margin: 0 auto;
  bottom: 0px;
}

section#branch .content h4:before {
  position: absolute;
  content: "";
  border-bottom: 6px solid #b7b6b6;
  width: 150px;
  left: 0;
  margin: 0 auto;
  top: 150px;
}

#branch p {
  white-space: pre;
  color: #333132;
  font-size: 18px;
  position: relative;
}

#branch p:before {
  border-right: 700px solid #f5f5f5;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 250px;
  right: -50px;
  z-index: -99;
}

.img-content {
  position: relative;
}

.img-content img {
  width: 900px;
  position: relative;
  z-index: 999;
  left: -148px;
  top: 450px;
}

.img-content:after {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 719px solid #f5f5f5;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: 0;
  top: 85%;
}

.img-content:before {
  border-right: 700px solid #f5f5f5;
  border-bottom: 115px solid transparent;
  position: absolute;
  content: "";
  left: 17px;
  width: 100%;
  height: 100%;
  bottom: -920px;
  z-index: 9;
}

.circle:before {
  position: absolute;
  content: "";
  border-left: 6px solid #000;
  right: 70px;
  height: 160px;
  top: -145px;
  margin: 0 auto;
}

.circle {
  position: relative;
}

.circle:after {
  position: absolute;
  content: "";
  border-radius: 100%;
  border: 1px solid #707070;
  width: 450px;
  height: 450px;
  right: -323px;
  offset-path: path("M20,20 C20,100 200,0 200,100");
  animation: move 3000ms infinite alternate ease-in-out;
  top: 300px;
}

/*=======================Clients ========================*/
.Clients::before,
.Clients::after {
  display: none !important;
}

.Clients .row:nth-of-type(2) .col-md-2:nth-child(4) img,
.Clients .row:nth-of-type(3) .col-md-2:nth-child(2) img {
  width: 60% !important;
}

/*=======================Ethics ========================*/
#ethic .white {
  position: relative;
  padding-top: 87px;
}

#ethic .white p,
#ethic .white h5 {
  position: relative;
  z-index: 99;
}

#ethic .white h5 {
  font-size: 22px;
  font-weight: 800;
  color: #333132;
  left: -135px;
}

#ethic .white p {
  color: #8e8e8e;
  padding-left: 150px;
}

#ethic .darkgrey {
  position: relative;
}

#ethic .darkgrey:before {
  width: 100%;
  height: 815px;
  border-top: 180px solid transparent;
  border-left: 700px solid #333132;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: -117px;
  z-index: 99;
  top: -70px;
}

#ethic .darkgrey:after {
  border-right: 699px solid #333132;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 345px;
  left: -118px;
}

#ethic .white:after {
  width: 100%;
  height: 130%;
  border-top: 180px solid transparent;
  border-left: 696px solid #333132;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
}

#ethic .black-right {
  position: relative;
}

#ethic .black-right:after {
  border-right: 696px solid #333132;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  top: 270px;
  left: -1px;
  z-index: 9;
}

section#ethic {
  background-color: #fff;
}

#ethic h6 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  position: relative;
  top: -80px;
  z-index: 99;
}

#ethic h6:after {
  position: absolute;
  content: "";
  border-bottom: 8px solid #eac632;
  top: 70px;
  width: 170px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

#ethic .img {
  border: 4px solid #eac632;
  border-radius: 100%;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  z-index: 99;
}

#ethic .img img {
  width: 45px;
}

#ethic .darkgrey div,
#ethic .black-right div {
  position: relative;
  z-index: 99;
}

section#ethic h5 {
  white-space: pre-line;
  color: #fff;
  position: relative;
  left: -100px;
  top: 22px;
  z-index: 99;
}

section#ethic p {
  color: #8e8e8e;
  position: relative;
  z-index: 99;
  /* white-space: pre-line; */
  padding-left: 155px;
  font-size: 15px;
}

.leftWhite h5 {
  color: #333132 !important;
  left: -140px !important;
}

#ethic .black-right h5 {
  left: 0px !important;
}

#ethic .white .img {
  left: -25px !important;
  position: relative;
  top: 0;
}
/*========================= History ========================*/
.timeline-badge img {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  padding: 5px;
}

section#history {
  background-color: #fff;
  position: relative;
  z-index: -9;
  /* top: -3px; */
}

#history .left,
#history .right {
  position: relative;
}

#history .left:before {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 700px solid #b7b6b6;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: -95px;
  top: 0;
  z-index: -9;
}

#history .right:before {
  width: 100%;
  height: 100%;
  border-top: 180px solid transparent;
  border-left: 700px solid #b7b6b6;
  border-bottom: solid transparent;
  content: "";
  position: absolute;
  left: 35px;
  top: 290px;
  z-index: -9;
}

#history .left:after {
  border-right: 700px solid #b7b6b6;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -95px;
  z-index: -99;
  top: 300px;
}

#history .right:after {
  border-right: 700px solid #b7b6b6;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 34px;
  z-index: -99;
  top: 130%;
}

#history .left h4 {
  text-align: right;
  color: #333132;
  font-size: 35px;
  position: relative;
  padding-top: 65%;
  font-weight: 900;
  padding-bottom: 40px;
  margin-bottom: 0;
}

#history .left h4::after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #fff;
  width: 150px;
  right: 0;
  margin: 0 auto;
  bottom: 0px;
  left: 75%;
}

#history .left p {
  color: #333132;
  font-size: 20px;
  /* white-space: pre; */
  position: relative;
  line-height: 38px;
}

#history .left p::after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #fff;
  width: 150px;
  right: 0;
  margin: 0 auto;
  bottom: 0px;
}

#history .right .img {
  position: relative;
  top: 500px;
  left: 125px;
}

#history .right img {
  width: 100%;
}

#history .grey {
  background-color: #e2e2e2;
  position: relative;
  z-index: -9999;
  padding: 300px 0 10px 0px;
}

#history .right .img:before {
  position: absolute;
  content: "";
  border-left: 6px solid #fff;
  left: -91px;
  top: -30px;
  height: 760px;
  right: 0;
  margin: 0 auto;
}

#history .right .img:after {
  position: absolute;
  content: "";
  left: -103px;
  top: -58px;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background-color: #eac632;
  border: 4px solid #fff;
}

/* ==========================================================================
   ========================================================================== */

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 6px;
  background-color: #fff;
  left: 605px;
  margin-left: -1.5px;
  height: 90%;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 50px;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: 49%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 1px 28px;
  position: relative;
  left: 43px;
  top: 40px;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 120px solid white;
}

.timeline-body {
  padding-top: 15px;
}

.timeline li:nth-child(3) .timeline-panel {
  border-bottom: 165px solid #fff;
}

.timeline li:nth-child(2) .timeline-panel,
.timeline li:nth-child(4) .timeline-panel {
  width: 50%;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 0;
  border-bottom: 115px solid white;
  left: 49px;
}

.timeline li:last-child .timeline-panel p {
  text-align: center;
}

.timeline li:last-child .timeline-panel {
  width: 100%;
  height: 0;
  left: 49px;
  top: 50px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 135px solid white;
  padding: 0 125px;
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 608px;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 4px solid;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge {
  background-color: #eac632 !important;
}

.timeline-body > p {
  margin-bottom: 0;
  font-size: 16px;
  color: #333132;
}

.timeline-body > p + p {
  margin-top: 5px;
}

@media (max-width: 767px) {
  ul.timeline:before {
    left: 40px;
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }

  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
  margin-right: 5px;
}

.panel-body {
  overflow-y: scroll;
  height: 250px;
}

/*=============== SALE MAP AREA ===================*/

#history h4 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  position: relative;
  color: #333132;
}

#history h4:after {
  position: absolute;
  content: "";
  border-bottom: 8px solid #eac632;
  top: 62px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 285px;
}

section#history div.btmleft,
section#history div.btmlright {
  position: relative;
}

/* section#history div.btmleft::before {
  border-right: 700px solid #E2E2E2;
  border-bottom: 125px solid transparent;
  position: absolute;
  content: '';
  left: -120px;
  width: 100%;
  height: 100%;
  top: 0px;
}

section#history div.btmright::before {
  border-right: 700px solid #E2E2E2;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0px;
  right: -90px;
} */

/*===================== MAP ========================*/

section#map-area img {
  width: 65%;
}

#map-area map p {
  position: relative;
}

#map-area .marker_list button {
  position: absolute;
  border: 0;
  background-color: transparent !important;
}

#map-area .marker_list button i {
  color: #eac632;
  font-size: 25px;
  position: relative;
}

#map-area .marker_list button i:after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 6px;
  height: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 5px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*================ PIN CSS ===================*/
#map-area .marker_list button:nth-of-type(1) {
  top: -75px;
  left: 42%;
}

#map-area .marker_list button:nth-of-type(2) {
  top: -111px;
  left: 52%;
}
#map-area .marker_list button:nth-of-type(3) {
  top: -205px;
  left: 67%;
}
#map-area .marker_list button:nth-of-type(4) {
  top: -250px;
  left: 39%;
}
#map-area .marker_list button:nth-of-type(5) {
  top: -309px;
  left: 52%;
}
#map-area .marker_list button:nth-of-type(6) {
  top: -391px;
  left: 32%;
}
#map-area .marker_list button:nth-of-type(7) {
  top: -400px;
  left: 44%;
}
#map-area .marker_list button:nth-of-type(8) {
  top: -465px;
  left: 38%;
}
#map-area .marker_list button:nth-of-type(9) {
  top: -475px;
  left: 25%;
}
#map-area .marker_list button:nth-of-type(10) {
  top: -535px;
  left: 31%;
}

#map-area .marker_list button:focus {
  outline: 0 !important;
}
/*================ TEXT CSS ===================*/
#map-area .position-relative div.position-absolute {
  /* visibility: hidden; */
}
#map-area .position-relative div.position-absolute:before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #000;
}
/* #map-area .position-relative div.position-absolute::after {  
    position: absolute;
    content: '';
    border-left: 1px solid #000;
    height: 41px;
    right: 10px;
} */

#map-area .position-relative div.position-absolute:nth-of-type(2) {
  left: 140px;
  bottom: 45px;
}
#map-area .position-relative div.position-absolute:nth-of-type(2):before {
  width: 194px;
  left: 148px;
  top: 18px;
}

#map-area .position-relative div.position-absolute:nth-of-type(3) {
  right: 80px;
  bottom: 70px;
}

#map-area .position-relative div.position-absolute:nth-of-type(3):before {
  width: 250px;
  top: 42px;
  right: 190px;
}

#map-area .position-relative div.position-absolute:nth-of-type(4) {
  right: -50px;
  bottom: 158px;
}
#map-area .position-relative div.position-absolute:nth-of-type(4):before {
  width: 173px;
  right: 230px;
  top: 38px;
}

#map-area .position-relative div.position-absolute:nth-of-type(5) {
  left: -45px;
  bottom: 144px;
}
#map-area .position-relative div.position-absolute:nth-of-type(5):before {
  width: 240px;
  left: 250px;
  top: 58px;
}

#map-area .position-relative div.position-absolute:nth-of-type(6) {
  right: 0px;
  bottom: 250px;
}
#map-area .position-relative div.position-absolute:nth-of-type(6):before {
  width: 315px;
  right: 205px;
  top: 25px;
}

#map-area .position-relative div.position-absolute:nth-of-type(7) {
  left: -74px;
  bottom: 318px;
}
#map-area .position-relative div.position-absolute:nth-of-type(7):before {
  width: 180px;
  left: 261px;
  top: 32px;
}

#map-area .position-relative div.position-absolute:nth-of-type(8) {
  right: 170px;
  bottom: 370px;
}
#map-area .position-relative div.position-absolute:nth-of-type(8):before {
  width: 285px;
  right: 155px;
  top: 18px;
}
#map-area .position-relative div.position-absolute:nth-of-type(9) {
  right: 150px;
  bottom: 426px;
}
#map-area .position-relative div.position-absolute:nth-of-type(9):before {
  width: 370px;
  right: 155px;
  top: 10px;
}
#map-area .position-relative div.position-absolute:nth-of-type(10) {
  bottom: 435px;
  left: 0;
}
#map-area .position-relative div.position-absolute:nth-of-type(10):before {
  width: 133px;
  left: 156px;
  top: 25px;
}

#map-area .position-relative div.position-absolute:nth-of-type(11) {
  right: 350px;
  bottom: 490px;
}

#map-area .position-relative div.position-absolute:nth-of-type(11):before {
  width: 250px;
  right: 155px;
  top: 17px;
}
/*===================== ANCHOR TAG ===============*/
#map-area a {
  color: #000;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

#map-area a:hover {
  color: #ebc632 !important;
}

/*=============== FOOTER ===================*/

footer {
  background-color: #242223;
  padding: 50px 0 10px 0;
  padding-top: 100px;
}

footer .content-footer {
  /* position: relative; */
  position: relative;
  content: "";
  /* border-top: 6px solid #EAC632; */
  width: 100%;
  top: 18px;
  left: 20px;
  z-index: 999;
}

.footer-center div {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
}

.footer-center div i {
  padding-right: 20px;
  color: #ffffff;
  font-size: 25px;
}

footer .footer-distributed .footer-center a {
  /* white-space: pre-line; */
  color: #fff;
  line-height: 1.2;
  font-size: 14px;
}

footer .footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

footer .footer-distributed .footer-center p a {
  color: #ffffff;
  text-decoration: none;
}

footer .footer-images {
  padding: 15px 0 0 10px;
  padding-top: 0;
}

footer .footer-images-urdu {
  padding: 15px 0 0 0;
}

footer .footer-images-iso img {
  width: 135px;
  margin-right: 50px;
}

footer .footer-images-shamshan img {
  width: 170px;
}

footer .coyright-content p {
  color: #ffffff;
  font-size: 14px;
}

footer .coyright-content p a,
footer .coyright-content p a:nth-of-type(1):hover,
nav ul.navbar-nav li a:hover,
footer .footer-distributed .footer-center a:hover {
  color: #e24b26;
}

footer .coyright-content p a:hover,
footer .coyright-content p a:nth-of-type(1) {
  color: #fff;
}

footer .footer-copyright {
  width: 100%;
  padding-top: 6%;
}

/*===================== GLOBAL =================*/
section#branch,
section#ethic {
  position: relative;
  top: -3px;
}
.cut-pro::before {
  border-right: 0 !important;
}
.newClass {
  background: #707070 !important;
}
#map-area {
  background: #e2e2e2;
  padding-bottom: 70px;
}
.only-show-on-mobile {
  display: none;
}
.dis-no-on-mob {
  display: flex;
}
.slider-show-onmob {
  display: none !important;
}
.mob-map {
  display: none;
}

/* responsive********************************* */
@media only screen and (max-width: 991px) {
  .col-lass {
    flex-direction: column;
  }
  .container-on-mobi {
    width: 100%;
    display: table !important;
    max-width: 100%;
  }
  .on-mob-col {
    padding: 0;
  }
  .w-100-on-mob {
    width: 100%;
    margin: 0;
  }
  .collapse.show {
    display: block;
    background: #4c4949;
  }
  ul.navbar-nav li {
    border-bottom: 1px solid grey;
    text-align: center;
    justify-content: center;
    padding: 7px;
  }
  .navbar-dark .navbar-toggler {
    color: rgb(0 0 0);
    border-color: rgb(1 0 0 / 74%);
    position: absolute;
    right: 20px;
    top: 20px;
    background: #a4a4a4;
  }
  .navbar-nav {
    padding-top: 0px;
    margin-top: 82px;
  }
  body {
    width: 100%;
    height: 100%;
  }
  .p-on-mob {
    padding-top: 100px;
  }
  .p-on-mob .heading2 {
    text-align: center;
  }
  .p-on-mob p {
    text-align: center;
  }
  .shamsan p:before {
    display: none;
  }
  .shamsan p:after {
    display: none;
  }
  .banner-right img {
    width: 100%;
    position: absolute;
    top: -4px;
    z-index: 3;
    right: 0;
    left: 0;
    margin: auto;
  }
  .banner-right::before {
    content: "";
    position: absolute;
    background-color: black;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    z-index: 2;
    top: 42px;
    left: 10px;
    animation: fadeIn 1s infinite alternate;
  }
  .banner-right::after {
    content: "";
    position: absolute;
    background-color: transparent;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    border: 1px solid #eac632;
    left: 82px;
    top: -12px;
    z-index: 1;
    animation: fadeIn 0.5s infinite alternate;
  }
  #vision {
    overflow: hidden;
  }
  .vision-content p {
    padding-left: 0;
    text-align: center;
  }
  .mission-content h2 {
    text-align: center;
  }
  .mission-content p::before {
    position: absolute;
    content: "";
    border-bottom: 8px solid #eac632;
    width: 150px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mission-content p {
    text-align: center;
    padding-right: 0;
  }
  section#buildElectric {
    overflow: hidden;
  }
  #factories {
    overflow: hidden;
  }
  #values {
    overflow: hidden;
  }
  #companyBrand {
    overflow: hidden;
  }
  #sofab {
    overflow: hidden;
  }
  #Partners {
    overflow: hidden;
  }
  #branch {
    overflow: hidden;
  }
  #ethic {
    overflow: hidden;
  }
  #Partners {
    overflow: hidden;
  }
  #history {
    overflow: hidden;
  }
  #map-area {
    overflow: hidden;
  }
  .newClass {
    background: transparent !important;
    /* height: 61px; */
  }
  .visionh2 {
    text-align: center;
  }
  .vision-content p:before {
    width: 150px;
    left: 0;
    right: 0;
    margin: auto;
  }
  div#triangle-right h3 {
    display: none;
  }
  .mission-content {
    padding: 100px 0 0 100px;
    padding-left: 14px;
  }
  .mission-img-right:before {
    display: none;
  }
  .range h3 {
    color: #eac632;
    font-size: 40px;
    padding-top: 160px;
    padding-left: 10px;
    display: flex;
    justify-content: center;
  }

  .only-show-on-mobile {
    display: block;
  }
  .build-material:before,
  .content:before {
    display: none;
  }
  .build-material h3 {
    color: #fff;
    white-space: unset;
    font-size: 23px;
    position: relative;
    padding-left: 0px;
    padding-top: 40px;
    text-align: center;
  }
  .build-material ul {
    list-style: none;
    padding-left: 60px;
    padding-top: 10px;
  }
  .electric-product:before {
    border-right: 700px solid #b7b6b6;
    border-bottom: 100px solid transparent;
    position: absolute;
    content: "";
    left: -50px;
    width: 100%;
    top: 0;
    height: 100%;
  }
  .electric-product h3 {
    color: #333132;
    font-size: 23px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
  }
  .electric-product {
    position: relative;
    padding: 50px 0px;
    padding-bottom: 120px;
  }
  .electric-product h3:before {
    display: none;
  }
  #factories .content h3 {
    padding-left: 0;
    text-align: center;
  }
  #factories ul li {
    font-size: 16px;
  }
  #values .content h4 {
    color: white;
    font-size: 35px;
    padding-top: 28%;
    font-weight: 800;
    position: relative;
    text-align: center;
  }
  section#values .content .row {
    padding-left: 0;
  }
  .icon {
    height: 93%;
  }
  .right-content .row {
    padding-left: 0;
  }
  .right-content .icon {
    height: 84%;
  }
  .second-half {
    padding-bottom: 0;
  }
  #companyBrand h4 {
    text-align: center;
    padding-top: 40px;
  }
  #companyBrand h4:after {
    display: none;
  }
  .white h5 {
    text-align: center;
  }
  #companyBrand .white img {
    display: block;
    margin: auto;
  }
  #companyBrand .grey {
    padding-left: 0;
  }
  #companyBrand .grey:before {
    left: -30px;
    top: 27px;
  }
  #ethic .darkgrey:before {
    top: -18px;
  }
  #companyBrand .grey:after {
    display: none;
  }
  #companyBrand img {
    display: block;
    margin: auto;
  }
  .right-brand-image {
    display: none;
  }
  section#Partners img {
    width: 240px;
    margin: auto;
    margin-bottom: 30px;
    display: block;
  }
  section#branch .content h4 {
    color: #333132 !important;
    font-weight: 700;
    padding-top: 20%;
    position: relative;
    z-index: 999;
    text-align: center;
    padding-bottom: 40px;
  }
  section#branch .content h4:before {
    display: none;
  }
  section#branch .content h4:after {
    display: none;
  }
  #branch p {
    white-space: unset;
    color: #333132;
    font-size: 18px;
    position: relative;
    text-align: center;
  }
  .electric-product ul {
    margin-left: 20px;
  }
  .img-content img {
    width: 660px;
    position: relative;
    z-index: 999;
    left: -148px;
    top: -130px;
  }
  .img-content:after {
    display: none;
  }
  section#branch {
    padding-bottom: 0;
  }
  section#ethic p {
    padding-left: 0;
    margin-top: 22px;
  }
  #ethic h6 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    position: relative;
    top: 0px;
    z-index: 99;
  }
  #ethic .darkgrey div,
  #ethic .black-right div {
    flex-direction: column;
  }
  section#ethic h5 {
    white-space: unset;
    color: #fff;
    position: relative;
    left: 0 !important;
    top: 22px;
    z-index: 99;
  }
  #ethic .white {
    padding-top: 267px;
  }
  #ethic .white .justify-content-around {
    flex-direction: column;
  }
  #ethic .white .img {
    left: -3px !important;
    position: relative;
    top: 0;
  }
  #ethic .white h5 {
    text-align: left;
  }
  #ethic .white p {
    color: #8e8e8e;
    padding-left: 0;
  }
  #ethic .white:after {
    width: 100%;
    height: 130%;
    border-top: 133px solid transparent;
    border-left: 738px solid #333132;
    border-bottom: solid transparent;
    content: "";
    position: absolute;
    left: -20px;
  }
  .leftWhite-on-mob {
    background: white;
  }
  .leftWhite-on-mob .justify-content-around {
    flex-direction: column;
  }
  .leftWhite-on-mob .justify-content-around h5 {
    left: 0 !important;
  }
  .whit-p {
    top: 0 !important;
  }
  #ethic .black-right:after {
    border-right: 696px solid #333132;
    border-bottom: 155px solid transparent;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 170px;
    left: -26px;
    z-index: 9;
  }
  #history .right:after {
    border-right: 700px solid #b7b6b6;
    border-bottom: 155px solid transparent;
    position: absolute;
    content: "";
    width: 100%;
    height: 88%;
    left: 34px;
    z-index: -99;
    top: 130%;
  }
  .footer-images-iso {
    text-align: center;
  }
  .last-rounded {
    flex-direction: column;
  }
  #history .left h4 {
    text-align: center;
  }
  #history .left h4::after {
    position: absolute;
    content: "";
    border-bottom: 6px solid #fff;
    width: 150px;
    right: 0;
    margin: 0 auto;
    bottom: 0px;
    left: 0;
  }
  #history .left p {
    white-space: initial;
    text-align: center;
    padding: 53px 0px;
  }
  #history .left p::after {
    left: 0;
  }
  #history .right:before {
    width: 100%;
    height: 100%;
    border-top: 180px solid transparent;
    border-left: 700px solid #b7b6b6;
    border-bottom: solid transparent;
    content: "";
    position: absolute;
    left: -20px;
    top: 240px;
    z-index: -9;
  }
  #history .right .img {
    position: relative;
    top: 500px;
    left: 0;
    top: 360px;
  }
  .timeline > li > .timeline-panel {
    width: 49%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 1px 28px;
    position: relative;
    left: -27px;
    top: -20px;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 120px solid white;
  }
  .timeline {
    padding-top: 130px;
  }
  .timeline-body > p {
    font-size: 10px;
  }
  .timeline li:nth-child(2) .timeline-panel,
  .timeline li:nth-child(4) .timeline-panel {
    width: 76%;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 0;
    border-bottom: 115px solid white;
    left: 64px;
    float: left;
  }
  .timeline li:last-child .timeline-panel {
    width: 78%;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 0;
    border-bottom: 115px solid white;
    left: 64px;
    float: left;
    padding: 0;
    top: 0;
  }
  .dis-no-on-mob {
    display: none;
  }
  .slider-show-onmob {
    display: block !important;
  }
  section#Partners {
    top: 0;
  }
  #map-area {
    display: none;
  }
  .mob-map {
    display: block;
    background: #e2e2e2;
  }
  .mob-map i {
    color: #eac632;
  }
  .mob-map p {
    padding: 7px 9px;
  }
  .mob-map a {
    color: grey;
    font-size: 11px;
  }
  #ShamsanCompany:before {
    position: absolute;
    content: "";
    background-image: url(https://shamsan.netlify.app/images/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -100px;
    right: unset;
    top: -10px;
    height: 110px;
    width: 100%;
  }
}
.leftWhite .pow {
  left: -85px !important;
}
[dir="rtl"] #banner {
  text-align: right;
}
[dir="rtl"] .shamsan p:before {
  left: unset;
  right: 0;
}

[dir="rtl"] #vision {
  direction: ltr;
}
[dir="rtl"] .vision-content p {
  text-align: right;
}
[dir="rtl"] .mission-content {
  text-align: right;
}
[dir="rtl"] .mission-content p {
  text-align: right;
  padding-right: 0;
}
[dir="rtl"] .mission-content p::before {
  right: 0;
}
[dir="rtl"] #buildElectric {
  direction: ltr;
}
[dir="rtl"] .build-material {
  text-align: right;
}
[dir="rtl"] .build-material ul li:nth-child(even):after {
  border: 1px solid #b7b6b661;
  width: 100%;
  left: unset;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -1;
  right: -30px;
}
[dir="rtl"] .build-material ul li:before {
  content: "";
  position: absolute;
  left: unset;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 8px;
  right: -20px;
}
[dir="rtl"] .electric-product {
  text-align: right;
}
[dir="rtl"] .electric-product ul li:nth-child(even):after {
  background-color: #c2c1c1;
  width: 100%;
  left: unset;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -9;
  right: -40px;
}
[dir="rtl"] .electric-product ul li:before {
  content: "";
  position: absolute;
  left: unset;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 8px;
  right: -21px;
}
[dir="rtl"] #factories {
  direction: ltr;
}
[dir="rtl"] #factories .content {
  text-align: right;
}
[dir="rtl"] #factories ul li:nth-child(even):after {
  background-color: #707070;
  width: 100%;
  left: unset;
  position: absolute;
  content: "";
  height: 100%;
  top: 0px;
  z-index: -9;
  right: -30px;
}
[dir="rtl"] #factories ul li:before {
  content: "";
  position: absolute;
  left: unset;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: #eac632;
  top: 25px;
  right: -20px;
}
[dir="rtl"] #values {
  direction: ltr;
}
[dir="rtl"] #companyBrand {
  direction: ltr;
}
[dir="rtl"] #sofab {
  text-align: right;
}
[dir="rtl"] #branch {
  direction: ltr;
}
[dir="rtl"] #branch p {
  white-space: unset;
  text-align: right;
}
[dir="rtl"] #ethic {
  direction: ltr;
}
[dir="rtl"] #history {
  direction: ltr;
}
[dir="rtl"] #history .left p {
  text-align: right;
}
[dir="rtl"] .timeline-body {
  text-align: right;
}
[dir="rtl"] footer .footer-distributed .footer-center a {
  /* white-space: pre-line; */
  color: #fff;
  line-height: 1.2;
  font-size: 14px;
  text-align: right;
  padding-right: 10px;
}
[dir="rtl"] #ethic .darkgrey:after {
  border-right: 699px solid #333132;
  border-bottom: 305px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 345px;
  left: -118px;
}
[dir="rtl"] #ethic .black-right:after {
  border-right: 696px solid #333132;
  border-bottom: 155px solid transparent;
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  top: 200px;
  left: -1px;
  z-index: 9;
}
[dir="rtl"] #companyBrand .white {
  text-align: right;
}
[dir="rtl"] #companyBrand h4:after {
  position: absolute;
  content: "";
  border-bottom: 6px solid #000;
  top: 55px;
  width: 150px;
  left: 0;
  left: unset;
  right: 0;
}
[dir="rtl"] #companyBrand .grey {
  text-align: right;
}
[dir="rtl"] #values .content h4 {
  text-align: right;
}
[dir="rtl"] .build-material ul li:after {
  border: 1px solid transparent;
  width: 100%;
  left: unset;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -1;
  right: -30px;
}
[dir="rtl"] .electric-product ul li:after {
  background-color: transparent;
  width: 100%;
  left: unset;
  position: absolute;
  content: "";
  height: 100%;
  top: -6px;
  z-index: -9;
  right: -40px;
}
@media only screen and (max-width: 991px) {
  [dir="rtl"] .build-material {
    padding-right: 30px;
  }
  [dir="rtl"] .electric-product ul {
    padding-right: 30px;
  }
  [dir="rtl"] #factories ul {
    padding-right: 30px;
  }
  [dir="rtl"] .electric-product ul {
    padding-right: 30px;
  }
  [dir="rtl"] #ethic .black-right:after {
    border-right: 476px solid #333132;
    border-bottom: 155px solid transparent;
    position: absolute;
    content: "";
    width: 100%;
    height: 104%;
    top: 140px;
    left: -21px;
    z-index: 9;
  }
  [dir="rtl"] .slick-slide {
    float: left !important;
  }
  [dir="rtl"] .slick-slider .slick-track,
  .slick-slider .slick-list {
    direction: ltr;
  }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 15px !important;
}
[dir="rtl"] .slick-next {
  left: -5px !important;
  right: auto;
}
    [dir="rtl"] section#branch .content{
      padding-right: 30px;
    }
    [dir="rtl"] .footer-border-section{
      padding-right: 15px;
    }
    [dir="rtl"] #sofab{
      padding-right: 30px;
    }
    [dir="rtl"] .darkgrey{
      text-align: center;
    }
    [dir="rtl"] #ethic .darkgrey div, #ethic .black-right div{
      align-items: center;
    }
    [dir="rtl"] #ethic .white{
      text-align: center;
    }
    [dir="rtl"] #ethic .white .justify-content-around{
      align-items: center;
    }
    [dir="rtl"] .col-lass{
      align-items: center;

    }
    [dir="rtl"] section#ethic h5{
      text-align: center;
    }
    [dir="rtl"] section#ethic p{
      text-align: center;
    }
    [dir="rtl"] .leftWhite-on-mob{
      text-align: center;
    }
    [dir="rtl"] .leftWhite-on-mob .justify-content-around{
      align-items: center;
    }
    [dir="rtl"] .last-rounded{
      padding-top: 100px;
      align-items: center;
    }
    [dir="rtl"] #history .left p{
      padding-right: 30px;
    }
    [dir="rtl"] .mob-map p{
      text-align: right;
      padding-right: 30px;
    }
    [dir="rtl"] #values .content h4{
      padding-right: 30px;
    }
}
/*=================== Shamsan Page CSS End=================*/
