@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Bold.eot');
  src: url('../fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Calibri-Bold.woff2') format('woff2'),
  url('../fonts/Calibri-Bold.woff') format('woff'),
  url('../fonts/Calibri-Bold.ttf') format('truetype'),
  url('../fonts/Calibri-Bold.svg#Calibri-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri.eot');
  src: url('../fonts/Calibri.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Calibri.woff2') format('woff2'),
  url('../fonts/Calibri.woff') format('woff'),
  url('../fonts/Calibri.ttf') format('truetype'),
  url('../fonts/Calibri.svg#Calibri') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'univers_next_proregular';
  src: url('../fonts/universnextproregular-webfont.eot');
  src: url('../fonts/universnextproregular-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/universnextproregular-webfont.woff2') format('woff2'),
  url('../fonts/universnextproregular-webfont.woff') format('woff'),
  url('../fonts/universnextproregular-webfont.ttf') format('truetype'),
  url('../fonts/universnextproregular-webfont.svg#univers_next_proregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

/* FONTAWESOME */
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-regular-400.eot);src:url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-brands-400.eot);src:url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype"),url(../fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.eot);src:url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}

:root {
	--primary-font:'Calibri';
	--secondary-font:'univers_next_proregular';
	--font-normal:normal;
	--font-bold:bold;
	--primary-color:#4A959C;
	--secondary-color:#194B5D;
	--tertiary-color:#9BBB59;
	--dark-color:#000000;
	--grey-color:#8C959D;
	--light-grey-color:#f6f6f6;
	--white-color:#FFFFFF;
	--primary-transition:all ease-in-out 0.35s;
}


* {
  scrollbar-color: var(--primary-color) var(--light-grey-color);
  scrollbar-width: thin;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light-grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
body {font-family: var(--primary-font);font-weight:300;font-size:1.25rem;line-height:1.75;color: var(--dark-color);background: var(--white-color);overflow-x: hidden;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: optimizeLegibility;}
a {color: var(--primary-color);}
a:hover {color: #283004;}
a,a:hover {text-decoration: none;}
ul li, ol li {list-style: none;}
img {max-width: 100%}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
b, strong {
  font-weight: var(--font-bold);
}
.overflow-hidden {
  overflow: hidden;
}
.fw-normal {
  font-weight: var(--font-normal);
}
.fw-bold {
  font-weight: var(--font-bold);;
}
.fancybox-content {
  border-radius: 10px;
}
/* HEADING FONT */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--secondary-font);
}
/* SITE COLOR VARIATION */
.primary-color {
  color: var(--primary-color)!important;
}
.primary-bg {
  background-color: var(--primary-color)!important;
}
.secondary-color {
  color: var(--secondary-color)!important;
}
.secondary-bg {
  background-color: var(--secondary-color)!important;
}
.grey-bg {
  background-color: var(--grey-color)!important;
}
.light-grey-bg {
  background-color: var(--light-grey-color)!important;
}
.white-color {
  color: var(--white-color)!important;
}
/* BUTTON STYLE */

.btn {
  position: relative;
  padding:clamp(6px,6vw,12px) clamp(20px,6vw,60px);
  color: var(--white-color);
  background: var(--primary-color);
  border: none;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  border-radius: 0;
  font-size: 1.125rem;
  font-weight: var(--font-bold);
}
.btn:hover {
  background: transparent;
}
.btn:not(.hover-white):hover {
  color: var(--secondary-color);
}
.btn.hover-white:hover {
  color: var(--white-color);
}
.btn:before,
.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  width: 0px;
  height: 3px;
  transition: all 0.4s ease;
}
.btn:not(.hover-white):before,
.btn:not(.hover-white):after {
  background: var(--secondary-color);
}
.btn.hover-white:before,
.btn.hover-white:after {
  background: var(--white-color);
}
.btn:after {
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
}
.btn:hover:before,
.btn:hover:after {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 100%;
}

/* FORM */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.form-control {
  border: 1px solid #A4A4A4;
  border-radius: 0;
  color: #A4A4A4;
  font-size: 0.875rem;
  padding: 12px 20px;
}
input[type="submit"] {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 50px;
  border: 0;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;
}
input[type="submit"]:hover {
  background-color: var(--primary-color);
}
#enquiryModal .modal-title {
  font-weight: 400;
}

/* LEFTRIGHT GUTTOR */
.lr-space {
  padding: 0 30px;
}

/* ARROW VHC */
.arrow-vhc {
  position: relative;
}
.arrow-vhc .slider-arrows .arrow-elmnt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.arrow {
  --active: var(--dark-color);
  --border: rgba(0, 0, 0, .12);
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.arrow.animate {
  --active: var(--primary-color);
}
.arrow.left {
  transform: scaleX(-1);
}
.arrow i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.arrow i:before, .arrow i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.arrow i:before {
  transform: rotate(-40deg);
}
.arrow i:after {
  transform: rotate(40deg);
}
.arrow:before, .arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.arrow.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}
.arrow.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}
.arrow.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}
.arrow.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}
@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

/* SLICk DOTS */
.slick-dots {
  position: relative;
  bottom: 0;
}
.slick-dots li button::before {
  font-size: 0.875rem;
  line-height: 22px;
  width: 20px;
  height: 20px;
  opacity: 1;
  color: #c5c5c5;
  background: transparent;
  border-radius: 50%;
}
.slick-dots li.slick-active button::before {
  color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}
main {
  overflow: hidden;
  margin-top: -120px;
  padding-top: 120px;
}
.sec-ptb {
  padding-top:clamp(30px,8vw,60px);
  padding-bottom:clamp(30px,8vw,60px);
}
.sec-pt {
  padding-top:clamp(30px,8vw,60px);
}
.sec-pb {
  padding-bottom:clamp(30px,8vw,60px);
}
.home .sec-ptb {
  padding-top:clamp(40px,8vw,100px);
  padding-bottom:clamp(40px,8vw,100px);
}
.home .sec-pt {
  padding-top:clamp(40px,8vw,100px);
}
.home .sec-pb {
  padding-bottom:clamp(40px,8vw,100px);
}
.title-elem {
  position: relative;
  padding-top: 45px;
}
h1.sec-title,
h2.sec-title {
  font-size: clamp(1.75rem,3vw,2.5rem);
  margin-bottom: clamp(10px,3vw,20px);
}
.leaf {
  position: absolute;
  top: 0;
  /* right: 0; */
  left: 0;  
  width: 33px;
}
.title-elem.text-center .leaf {
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.go .title-elem .leaf,
.title-elem.go .leaf {
  animation: feather 2s ease-in-out 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  transform-origin: 0% 50%;
}

@-webkit-keyframes feather {

  /* 0% {
  transform: rotate(50deg) translate(-10px, -50px);
}
25% {
  transform: rotate(90deg) translate(-60px, -80px);
}
50% {
  transform: rotate(50deg) translate(0px, -30px);
}
75% {
  transform: rotate(70deg) translate(10px, -80px);
}
100% {
  transform: rotate(0deg) translate(0px, 0px);
} */

  /* 0% {
    transform: rotate(50deg) translate(0px, -30px);
  }
  50% {
    transform: rotate(70deg) translate(10px, -80px);
  }
  100% {
    transform: rotate(0deg) translate(0px, 0px);
  } */
  0% {
    transform: rotate(78deg) translate(-67px, 45px);
  }
  50% {
    transform: rotate(-10deg) translate(31px, -7px);
  }
  100% {
    transform: rotate(0deg) translate(3px, 3px);
  }
}
@keyframes feather {

  /* 0% {
    transform: rotate(50deg) translate(-10px, -50px);
  }
  25% {
    transform: rotate(90deg) translate(-60px, -80px);
  }
  50% {
    transform: rotate(50deg) translate(0px, -30px);
  }
  75% {
    transform: rotate(70deg) translate(10px, -80px);
  }
  100% {
    transform: rotate(0deg) translate(0px, 0px);
  } */

  /* 0% {
    transform: rotate(50deg) translate(0px, -30px);
  }
  50% {
    transform: rotate(70deg) translate(10px, -80px);
  }
  100% {
    transform: rotate(0deg) translate(0px, 0px);
  } */
  0% {
    transform: rotate(78deg) translate(-67px, 45px);
  }
  50% {
    transform: rotate(-10deg) translate(31px, -7px);
  }
  100% {
    transform: rotate(0deg) translate(3px, 3px);
  }
}

/* HEDAER */
.main-header {
  position: fixed;
  width: 100%;
  top:0;
  z-index: 999;
}
.main-header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: var(--white-color);
  z-index: -1;
}
.main-header.banner-left::before {
  opacity: 0.9;
}
.main-header.banner-left {
  box-shadow: 0 0 16px rgba(0, 0, 0, .12);
}
.main-header .logo,
.main-footer .footer-top .logo {
  position: relative;
  max-width: 162px;
  display: block;
  z-index: 2;
  background-image: url(../images/electra_logo.png);
  background-size: 162px 43px;
  height: 43px;
  width: 162px;
}

.main-header .logo img,
.main-footer .footer-top .logo img {
  opacity: 0;
  visibility: hidden;
  display: none;
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
  .main-header .logo,
  .main-footer .footer-top .logo {
    background-image: url(../images/electra_logo@2x.png);
    background-size: 162px 43px;
  }
}
.fullmenu .menu a {
  font-weight: var(--font-bold);
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  line-height: 2;
  display: block;
}
.fullmenu .menu .current_page_item > a,
.fullmenu .menu .current-page-ancestor > a {
  color: var(--primary-color);
}




.box {
  position: relative;
  width:30px;
  height:20px;
  display: inline-block;
  cursor: pointer;
  z-index: 1000;
}
.box::after {
  content: 'CLOSE';
  position: absolute;
  bottom: -9px;
  font-size: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;
  /* transition-delay: 0.1s; */
}
.box.change::after {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
.sty{
  width:30px;
  height:3px;
  background:var(--primary-color);
  
  transition:0.6s;
  border-radius:3px;
}
.hmb5-2 {
  margin:5px 0;
}
.change .hmb5-1{
  transition-delay: 0.3s;
  -webkit-transform:scale(0.15,1) translate(79px, 8px);
  transform:scale(0.15,1) translate(79px, 8px);
}
.change .hmb5-2{
  -webkit-transform:scale(0.15,1);
  transform:scale(0.15,1);
  /*transform:translate(30px,0px);*/
}
.change .hmb5-3{
  transition-delay: 0.3s;
  -webkit-transform:translate(-12px, -7.7px) scale(0.15,1);
  transform: translate(-12px, -7.7px) scale(0.15,1);
}


/* BANNER */
.home-banner,
.inner-banner {
  position: relative;
  z-index: 1;
}
.inner-banner {
  clip-path: ellipse(99% 59% at 33% 40%);
}
.home-banner {
  height: 100vh;
}
.home-banner h1,
.home-banner p,
.inner-banner h1,
.inner-banner p {
  position: relative;
  z-index: 3;
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both; 
  opacity:1;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.home-banner h1,
.inner-banner h1 {
  font-size: clamp(2rem,3vw,3.125rem);  
}
.home-banner p,
.inner-banner p {
  -webkit-animation-delay:1.0s;
  -moz-animation-delay:1.0s;
  -o-animation-delay:1.0s;
  animation-delay:1.0s;
}
.home-banner video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.home-banner img,
.inner-banner img {
  width: 100%;
  height:100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
}
.home-banner img {
  position: absolute;
}
.inner-banner img {
  position: relative;
}
.home-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.6;
  /* opacity: 0.35; */
  z-index: 1;
}
.inner-banner .container {
  position: absolute;
  z-index: 1;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.home-banner .promo-video {
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both; 
  opacity:1;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay:1.5s;
  -moz-animation-delay:1.5s;
  -o-animation-delay:1.5s;
  animation-delay:1.5s;
}
.promo-video {
  position: relative;
  z-index: 1;
  margin: 60px 0 0 0;
}
.promo-video .waves-block {
  position: relative;
  width: 120px;
  height: 120px;
}
.promo-video svg {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;

} 
.promo-video:hover svg {
  animation: beat .6s infinite alternate;
  transform-origin: center;
}
@keyframes beat{
	0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  left: -14px;
  top: -14px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}       
.home-banner .waves {
  background: rgba(25, 75, 93, 0.5);
}        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* CHALLENGES */
.section-challenge {
  position: relative;
}
.section-challenge::after {
  content: '';
  width: 476px;
  height: 369px;
  display: block;
  position: absolute;
  top:-170px;
  right:-70px;
  background: url(../images/dotsimg-01.svg) no-repeat;
  z-index: -1;
}

/* STEEL MAKING */
.section-steelmaking .bg-layer .lg-widget {
  background-size: cover;
  background-attachment: fixed;
}
.section-steelmaking video {
  object-fit: cover;
}
.section-steelmaking {
  position: relative;  
}
.section-steelmaking .bg-layer {
  position: absolute;
  z-index: -1; 
}
.section-steelmaking p {
  color: #AAC8D4;
}
.parallax-image {
  position: relative;
  overflow: hidden;
}
.parallax-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OUR SOLUTION */
.section-solution {
  background: url(../images/dotsimg-02.svg) no-repeat left bottom;
}
.section-solution .img-elem {
  padding-top: 24px;
}
.section-solution .img-elem::before {
  content: '';
  background-color: var(--tertiary-color);
  display: block;
  position: absolute;
  z-index: -1;
  width: 250px;
  height: 80%;
  right: 13px;
  top: 0;
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both;
}
.section-solution .img-elem.go::before {
  -webkit-animation-name: width; 
  animation-name: width; 
  -webkit-animation-delay:1.75s;
  -moz-animation-delay:1.75s;
  -o-animation-delay:1.75s;
  animation-delay:1.75s;
}
@-webkit-keyframes width { 
  0% { 
    width: 0px;
  } 
  100% { 
    width: 250px;
  } 
} 
@keyframes width { 
  0% { 
    width: 0px;
  } 
  100% { 
    width: 250px;
  } 
} 

/* CARD BOX */
.card-box {
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  transition: var(--primary-transition);
}
.card-box:hover {
  box-shadow: 0 10px 60px rgba(155,187,89,.12);
}
.card-box .cb-top {
  overflow: hidden;
}
.card-box .cb-top img {
  transition: var(--primary-transition);
}
.card-box:hover .cb-top img {
  transform: scale(1.2);
}
.card-box .cb-bot {
  padding: 45px 15px;
}
.card-box .cb-bot h3 {
  font-size: clamp(1.25rem,3vw,1.625rem);
  margin-bottom: clamp(10px,5vw,20px);
}



/* FOOTER */
.main-footer .footer-top {
  background-color: #e8eaeb;
  padding-top: clamp(40px,8vw,78px);
  padding-bottom: clamp(40px,8vw,78px);
}
.main-footer .footer-top .logo {
  max-width: 162px;
}
.main-footer .footer-top .fullmenu .menu li:not(:last-child)::after {
  content:'|';
  color: #707070;
}
.main-footer .footer-top .fullmenu .menu li a {
  color: #6B6B6B;
}
.main-footer .footer-top .fullmenu .menu li a,
.main-footer .footer-top .fullmenu .menu li:not(:last-child)::after {
  display: inline-block;
  vertical-align: middle;
}
.main-footer .footer-bottom {
  background-color: var(--secondary-color);
  padding: clamp(10px,8vw,20px);
  font-size: 0.875rem;
  color: var(--white-color);
}
.main-footer .footer-bottom a {
  color: var(--white-color);
  transition: var(--primary-transition);
}
.main-footer .footer-bottom a:hover {
  color: var(--tertiary-color);
}
.main-footer .footer-bottom .copyright-widget li:not(:last-child)::after {
  content:'|';
  margin:0 10px
}
.main-footer .footer-bottom .bottom-links li:not(:last-child) a::after {
  content:'|';
  margin:0 10px
}

/* REVEAL STYLE */
body:not(.no-js) .image-wrap {
  transition: 1s ease-out;
  transition-delay: 0.2s;
  position: relative;
  width: auto;
  /* height: 80vh; */
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  visibility: hidden;
}

body:not(.no-js) .image-wrap img {
  transform: scale(1.3);
  transition: 2s ease-out;
}

body:not(.no-js) .animating .image-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  visibility: visible;
  transform: skewY(0);
}

body:not(.no-js) .animating img {
  transform: scale(1);
  transition: 2s ease-out;
}

body:not(.no-js) .fadeup {
  opacity: 0;
  transition: 0.4s ease-out;
  transform: translateY(40px);
}

body:not(.no-js) .fading-up {
  opacity: 1;
  transition: 1s ease-out;
  transform: translateY(0px);
  transition-delay: 0.7s;
}
.has-animation {
  position: relative;
}
.has-animation .animate-elmnt {
  opacity: 0;
}
.has-animation.animate-in .animate-elmnt {
  animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.has-animation.animate-in:before {
  background-color: #eee;
}
.has-animation.animate-in:after {
  background-color: var(--primary-color);
  animation-delay: 0.5s;
}
.has-animation.animation-ltr.animate-in:before {
  animation: revealLTR 1.8s ease;
}
.has-animation.animation-ltr.animate-in:after {
  animation: revealLTR 1s 0.6s ease;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 1.8s ease;
}
.has-animation.animation-rtl.animate-in:after {
  animation: revealRTL 1s 0.6s ease;
}

/* .section-partners .p-logo { padding: 0 15px; min-height: 100px; max-height: 100px;} */
.section-partners .p-logo { padding: 15px;box-shadow: 0 0 10px rgba(0, 0, 0, .12);margin: 20px 10px;height: 110px;}
.section-partners .slick-slide img{ max-height: 70px;}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* CONATCT US */
.address-items .address-item .location {
  display: grid;
  grid-template-columns: 30px calc(100% - 30px);
}
.address-items .address-item .location i {
  color: var(--tertiary-color);
}
.address-items .address-item .location p {
  margin-bottom: 0;
}
.address-items .address-item .img-box {
  position: relative;
  z-index: 1;
}
.address-items .address-item .img-box::before {
  content: '';
  background-color: var(--tertiary-color);
  display: block;
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 80%;
  bottom: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.address-items .address-item:nth-child(even) {
  background: url(../images/dotsimg-03.svg) no-repeat right bottom;
}
.address-items .address-item:nth-child(odd) {
  background: url(../images/dotsimg-04.svg) no-repeat left bottom;
}
.address-items .address-item:nth-child(o) {
  justify-content: flex-start;
}
.address-items .address-item:nth-child(odd) .img-box {
  padding: 0 24px 24px 0;
}
.address-items .address-item:nth-child(odd) .img-box::before {
  right: 0;
}
.address-items .address-item:nth-child(odd) .row {
  flex-direction: row-reverse;
}
.address-items .address-item:nth-child(even) .img-box {
  padding: 0 0 24px 24px;
}
.address-items .address-item:nth-child(even) .img-box::before {
  left: 0;
}
.address-items .address-item:nth-child(odd) .row .img-box {
  justify-content: flex-end;
}
.address-items .address-item:nth-child(even) .row .img-box {
  justify-content: flex-start;
}
.contact-form {
  background: url(../images/steelmaking-bg-01.jpg) no-repeat;
  padding: clamp(30px,5vw,65px) clamp(15px,5vw,37px);
}
.contact-form .form-control {
  border-color: #4A959C;
  color: var(--white-color);
  background: transparent;
}
.contact-form .form-control::placeholder {
  color: var(--white-color);
  opacity: 1;
}
.contact-form .form-control:-ms-input-placeholder {
  color: var(--white-color);
}
.contact-form .form-control::-ms-input-placeholder {
  color: var(--white-color);
}
.contact-mail-phone li {
  display: grid;
  grid-template-columns: 134px calc(100% - 134px);
  align-items: center;
  padding: 14px 0;
}
.contact-mail-phone .icon {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
}
.contact-form .wpcf7-not-valid-tip {
  color: var(--tertiary-color);
  font-size: 0.875rem;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  color: var(--white-color);
  font-size: 0.875rem;
  text-align: center;
}
.contact-form input[type="submit"] {
  background-color: var(--primary-color);
}
.contact-form input[type="submit"]:hover {
  background-color: var(--tertiary-color);
}
/* TEAMS */
.team-popup,.team-popup-comp {
  padding: 24px;
  border-radius: 0;
}
.team-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 - 10px;
}
.team-items .avatar-box {
  padding: 10px;
}
.avatar-box .img-box,
.avatar-box .img-box img {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  /* width: 182px;
  height: 182px; */
}
.avatar-box .img-box img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.avatar-box:hover .img-box img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.avatar-box .img-box {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.avatar-box .img-box::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.avatar-box:hover .img-box::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.avatar-box h3 {
  font-size: 1.125rem;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.team-popup .member-information h3,
.team-popup-comp .member-information h3 {
  color: #393939;
}
.team-popup .member-information h5,
.team-popup-comp .member-information h5 {
  font-family: var(--primary-font);
  font-size: 1.125rem;
  font-weight: var(--font-bold);
}
.team-popup-comp .fancybox-close-small {
  padding: 4px;
  width: 28px;
  height: 28px;
}

/* TECHNOLOGY */
.technology-items {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.technology-items .technology-box {
  position: relative;
  overflow: hidden;
}
.technology-items .technology-box .img-box h3,
.technology-items .technology-box .hover-layer,
.technology-items .technology-box .hover-layer::before,
.technology-items .technology-box .hover-layer h4,
.technology-items .technology-box .hover-layer p {
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both;
}
.technology-items .technology-box .img-box {
  display: block;
  height: 400px;
}
.technology-items .technology-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-items .technology-box .img-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  display: block;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.technology-items .technology-box .img-box h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  padding: 15px;
  font-size: clamp(1.25rem,3vw,1.625rem);
  color: var(--white-color);  
  margin: 0;
  min-height: 90px;
}
/* .technology-items .technology-box:hover .img-box h3 {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
} */
.technology-items .technology-box .hover-layer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  padding: 15px;
  background-color: var(--primary-color);
  /* -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0); */
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out;
}
.technology-items .technology-box:hover .hover-layer {
  opacity: 1.0;
  transition: opacity .55s ease-in-out;
  -moz-transition: opacity .55s ease-in-out;
  -webkit-transition: opacity .55s ease-in-out;
}​
.technology-items .technology-box .hover-layer::before {
  /* content: ''; */
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  opacity: 0.9;
  background-color: var(--primary-color);
  z-index: -1;
  -webkit-animation-delay:0.15s;
  -moz-animation-delay:0.15s;
  -o-animation-delay:0.15s;
  animation-delay:0.15s;
}
.technology-items .technology-box .hover-layer h4 {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.technology-items .technology-box .hover-layer p {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
  line-height: 1.125;
}
/* .technology-items .technology-box:hover .hover-layer {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
} */
.technology-items .technology-box:hover .hover-layer h4,
.technology-items .technology-box:hover .hover-layer p {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
/* MEDIA */
.media-box {
  position: relative;
  border: 1px solid #dbdbdb;
  padding: 20px;
  height: 100%;
  line-height: 1.25;
}
.media-box .post-date {
  position: absolute;
  right: 15px;
  top: -7px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 3px 6px 17px 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  clip-path: polygon(100% 0, 100% 100%, 50% 80%, 0 100%, 0 0);
}
/*.media-box:before {
  content: '';
  position: absolute;
  background-color: var(--secondary-color);
  width: 7px;
  height: 7px;
  top: -7px;
  right: 93px;
  display: block;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}*/
.media-box .post-date .date {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
}
.media-box h6 {
  color: var(--grey-color);
  padding-right: 80px;
  font-size: 0.875rem;
}
.media-box a {
  line-height: 1.25;
}
.spotlight-slider .slick-list,
.featured-items .slick-list {
  margin: 0 -15px;
}
.spotlight-slider .slick-slide {padding: 0 15px;height: inherit !important;}
.featured-items .slick-slide {
  padding: 0 15px;
}
.spotlight-slider .slick-arrow, 
.featured-items .slick-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 50%;
}
.spotlight-slider .slick-prev,
.featured-items .slick-prev {
  left: -45px;
}
.spotlight-slider .slick-next,
.featured-items .slick-next {
  right: -45px;
}
.spotlight-slider .slick-prev:before, .spotlight-slider .slick-next:before,
.featured-items .slick-prev:before, .featured-items .slick-next:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 20px;
  opacity: .75;
  color: #000;
}
.spotlight-slider .slick-prev:before,
.featured-items .slick-prev:before {
  content: '\f104';
}
.spotlight-slider .slick-next:before,
.featured-items .slick-next:before {
  content: '\f105';
}
.media-box .thumb-img ~ a {
    display: none;
}
/* CAREER */
.benefit-items {
  position: relative;
}
.benefit-items .parallax-image {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.benefit-element {
  display: grid;
}
.benefit-element article {
  position: relative;
  padding: clamp(15px,5vw,40px);
  overflow: hidden;
}
.benefit-element article figure {
  color: var(--white-color);
}
/* .benefit-element article:before {
  content: "";
  opacity: 0.5;
  position: absolute;
  top: -100%;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  z-index: 1;
  transition: 0.5s;
}
.benefit-element article:after {
  content: "";
  opacity: 0.5;
  position: absolute;
  bottom: -100%;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  z-index: 1;
  transition: 0.5s;
}
.benefit-element:hover article figure {
  filter: blur(2px);
}
.benefit-element article:hover figure {
  filter: blur(0);
}
.benefit-element:hover article:before {
  top: 0;
}
.benefit-element:hover article:after {
  bottom: 0;
  transition-delay: 0.5s;
}
.benefit-element article:hover:before {
  top: -100%;
}
.benefit-element article:hover:after {
  bottom: -100%;
} */
.job_details .job-cat,
.job-postion-list .job-item {
  padding: clamp(10px,3vw,20px);
}
.job-postion-list .job-item:not(:last-child) {
  border-bottom: 1px solid var(--grey-color);
}
.job_details .job-cat {
  position: relative;
  color: var(--primary-color);
  cursor: pointer;
  text-align: left;
}
.job_details .job-search {
  border-left:0;
  border-right:0;
  border-top: 1px solid var(--grey-color);
  border-bottom: 1px solid var(--grey-color);
  padding: clamp(10px,5vw,20px);
}
.job-cat.active {
  color: var(--secondary-color);
}
.job-cat.active::after {
 content: '\f101';
 font-family: 'Font Awesome 5 Free';
 font-weight: 900;
 display: inline-block;
 position: absolute;
 right: 0;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
.job-description ul {
  list-style: none;
  padding: 0;
}
.job-description ul li {
  position: relative;
  padding-left: 24px;
}
.job-description ul li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: 0;
  top: 15px;
}
.job-description strong {
  font-weight: var(--font-bold);
}
/* BLOG */
.blog-elmnt {
  background-color: #f7f7f7;
}
.blog-elmnt .image-widget img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--primary-transition);
}
.blog-elmnt:hover .image-widget img {
  /* border: 6px solid transparent; */
  transform: scale(0.95);
  opacity: 0.7;
}
.blog-elmnt .blog-info h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  font-size: 1.375rem;
}
.blog-elmnt .blog-info .infotxt {
  /* display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3; */
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--grey-color);
}
.blog-elmnt .image-widget {
  position: relative;
}
.blog-elmnt .image-widget .post-date {
  position: absolute;
  right: 15px;
  bottom: -15px;
  padding: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--primary-color);
  /* clip-path: polygon(37% 0, 100% 0, 100% 100%, 0 100%, 0% 38%);*/
  clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 100%, 0 23%); 
  z-index: 1;
  overflow: hidden;
}
.blog-elmnt .image-widget .post-date i {
  position: absolute;
  opacity: .06;
  font-size: 3rem;
  right: -10px;
  bottom: -10px;
  z-index: -1;
}
.blog-elmnt .image-widget .post-date .date {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
}
.blog-elmnt .blog-info .btn {
  padding: clamp(5px,8vw,8px) clamp(10px,8vw,30px);
}
.sec-singleblog {
  border-top: 1px solid var(--grey-color);
}
.blog-meta li {
  color: var(--grey-color);
  font-size: 0.875rem;
}
.blog-meta li:not(:last-child)::after {
  content: '|';
  margin: 0 10px;
  display: inline-block;
}
.comment-elem #respond {
  background-color: var(--light-grey-color);
  padding: 20px;
}
.comment-elem #respond #commentform label {
  display: block;
  color: var(--grey-color);
  font-size: 0.875rem;
}
.comment-elem #respond #commentform input:not([type="checkbox"]),
.comment-elem #respond #commentform textarea {
  border: none;
  width: 100%;
}
.comment-elem .pagination-single-inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}
.comment-elem .pagination-single-inner a {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25;
}
.comment-elem .pagination-single-inner a.next-post {
  flex-direction: row-reverse;
  text-align: right;
}
.comment-elem .pagination-single-inner a .title {
  flex: 1;
}
.comment-elem .pagination-single-inner .arrow {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.75rem;
}
.comment-elem .pagination-single-inner .previous-post .arrow {
  margin-right: 6px;
}
.comment-elem .pagination-single-inner .next-post .arrow {
  margin-left: 6px;
}
#sidebar .widget {
  margin-bottom: 25px;
}
#sidebar .widget .widget-content {
  padding: 15px;
  background-color: #f7f7f7;
}
#sidebar .widget .widget-content h2 {
  font-size: 1.5rem;
}
#sidebar .widget .widget-content ul,
#sidebar .widget .widget-content ol {
  padding: 0;
  line-height: 1.25;
}
#sidebar .widget .widget-content ul li,
#sidebar .widget .widget-content ol li {
  position: relative;
  padding: 6px 6px 6px 16px;
  font-size: 1.125rem;
}
#sidebar .widget .widget-content ul li a,
#sidebar .widget .widget-content ol li a {
  color:var(--dark-color)
}
#sidebar .widget .widget-content ul li a:hover,
#sidebar .widget .widget-content ol li a:hover {
  color:var(--primary-color)
}
#sidebar .widget .widget-content ul li::before,
#sidebar .widget .widget-content ol li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  left:0;
  top:15px;
}
#sidebar .widget .widget-content ul li:not(:last-child),
#sidebar .widget .widget-content ol li:not(:last-child) {
  border-bottom: 1px dashed var(--grey-color);
}
#sidebar .widget .wp-block-search__label {
  display: none;
}
#sidebar .widget .wp-block-search__button {
  color: var(--white-color);
}
/* PAGINATION */
.pagination .nav-links > * {
  border: 1px solid var(--grey-color);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 0.875rem;
}
.pagination .nav-links .current {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white-color);
}
.investor-img-box {
  border: 1px solid var(--grey-color);
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.media-card {
  position: relative;
  overflow: hidden;
}
.media-card img {
  height: 200px;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}
.media-card:hover img {
  transform: scale(1.2);
}
.media-card h5 {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  color: var(--white-color);
  z-index: 1;
}
/* TABLE */
table {
  width: 100%;
  margin-bottom: 15px;
}
table thead {
  background-color: var(--primary-color);
  color: var(--white-color);
}
table td, table th {
  padding: 6px;
}
table tbody tr:nth-child(odd) {
  background-color: var(--light-grey-color);
}
table tbody tr:nth-child(even) {
  background-color: #e6e6e7;
}
/* LIST STYLE */
.general-pages ul {
  padding: 0;
  list-style: none;
}
.general-pages ul li {
  position: relative;
  padding-left: 22px;
}
.general-pages ul li::before {
  content: '';
  position: absolute;
  background: url(../images/leaf.svg) no-repeat;
  background-size: 15px;
  width: 15px;
  height: 15px;  
  left: 0;
  top: 10px;
}

.spotlight-slider .slick-slide .spotlight-item {
  background-color: #f7f7f7;
  align-items: center;
  height: 100%;

}
.spotlight-slider .slick-track {
  display: flex !important;
}
.spotlight-item small {
  color: #6d6d6d;
}
.archive h1.sec-title span.color-accent {
  display:none;
}
.btn.btn-sm {
  font-size: 14px;
  padding: 6px 15px;
}