@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
/*Variables*/
:root {
  --c-primary: #b11f24;
  --c-secondary: #fab600;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-title: #515151;
  --c-text: #444444;
  --c-gray: #f3f3f3;
  --c-gray-2: #e2e2e2;
  --c-red: #ed1b24;
}

/*Responsive*/
/*Mixin*/
/* 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;
}

/*Core Style*/
html {
  font-size: 62.5%;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
}

a {
  text-decoration: none;
}

p, li {
  font-size: 1.7rem;
  color: var(--c-text);
}

.c-white {
  color: var(--c-white);
}

h1 {
  font-size: 7rem;
  font-weight: 700;
}

h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--c-title);
}
h2 .sub {
  display: block;
  font-size: 1.6rem;
  color: var(--c-primary);
  text-transform: uppercase;
}
h2.c-red {
  color: var(--c-primary);
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.form-control {
  padding: 20px 16px;
  font-size: 1.4rem;
  border-radius: 0;
  margin-top: 10px;
}

.btn {
  padding: 16px 42px;
  font-size: 1.7rem;
  border-radius: 0;
  margin-top: 25px;
  text-align: center;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
.btn.full-w {
  width: 100%;
}
.btn--p {
  background: #f7a817;
  color: var(--c-white);
}
.btn--p:hover {
  background: #fab600;
}

.header {
  background: #000000;
  padding: 20px 0;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 999;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
.header__left .logo {
  width: 240px;
}
@media (max-width: 968px) {
  .header__left .logo {
    width: 100px;
  }
}
.header__right a {
  font-size: 1.7rem;
  display: inline-block;
  margin: 0;
  color: var(--c-white);
}
.header__right a:hover {
  background: var(--c-white);
}
@media (max-width: 968px) {
  .header__right a {
    font-size: 1.4rem;
  }
}
.header__right a span {
  color: var(--c-primary);
}
@media (max-width: 768px) {
  .header__right a span {
    /*display: block;*/
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.fixed {
  position: fixed;
}
.header.fixed .header__left .logo {
  width: 120px;
}
.header.fixed .header__right a {
  padding: 10px 22px;
}

.banner {
  padding: 120px 0;
  margin-top: 120px;
  background-image: url(../images/banner4.jpg);
}
@media (max-width: 968px) {
  .banner {
    margin-top: 50px;
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-size: 700px;
    background-color: #252525;
  }
}
.banner h1 {
  color: var(--c-white);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.65);
  padding-top: 5%;
  padding-left: 12%;
}
@media (max-width: 968px) {
  .banner h1 {
    padding-top: 0;
    padding-left: 0;
    font-size: 40px;
  }
}
.banner .text-line {
  display: block;
  margin-top: 20px;
  width: 100px;
  height: 8px;
  background-color: var(--c-red);
}

.enq-box {
  padding: 40px;
  background: #555555;
}
.enq-box h2 {
  color: var(--c-white);
}

.quality {
  padding: 60px 0;
  background: #2e2e2e;
}
.quality__left img {
  width: 100%;
}
.quality__right {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.quality__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quality__right ul li {
  padding-left: 30px;
  position: relative;
  color: #ffffff;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.quality__right ul li::before {
  content: "  ";
  width: 25px;
  height: 25px;
  background: url(../images/list-tick.jpg);
  background-size: 22px;
  background-position: left top;
  background-repeat: no-repeat;
  top: 5px;
  padding-right: 30px;
}
.quality h3 {
  width: 70%;
  margin: 50px auto 0 auto;
  color: #ffffff;
  font-size: 2.2rem;
}
@media (max-width: 968px) {
  .quality h3 {
    width: 100%;
  }
}

.about {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}

.about__left h2 {
  margin-bottom: 15px;
}
.about .container {
  position: relative;
  z-index: 2;
}

.about::after {
  content: "";
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../images/about/background.png);
}

.technology {
  background-color: var(--c-gray);
  padding: 80px 0;
  position: relative;
}
.technology .container {
  position: relative;
  z-index: 2;
}
.technology__left img {
  margin-top: 30px;
  width: 80%;
}
@media (max-width: 968px) {
  .technology__left img {
    width: 100%;
    margin-bottom: 20px;
  }

  .technology__left h2{
    color: #f3f3f3;
  }

  .technology__left span{
    color: #f3f3f3;
  }

}
.technology__right {
  padding-top: 80px;
  padding-left: 60px;
}
@media (max-width: 968px) {
  .technology__right {
    padding-top: 0;
  }
}
.technology__right p {
  margin-bottom: 26px;
}
.technology__right p, .technology__right li {
  color: var(--c-white);
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .technology__right {
    padding-left: 15px;
  }
}
.technology::after {
  content: "";
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--c-primary);
}
@media (max-width: 968px) {
  .technology::after {
    width: 100%;
    left: 0;
  }
}

.role {
  padding: 80px 0;
}
.role h2 {
  text-align: center;
  margin-bottom: 30px;
}
.role p {
  width: 85%;
}
@media (max-width: 968px) {
  .role p {
    width: 100%;
  }
}

.products {
  position: relative;
  padding: 80px 0;
  background-color: #f7f7f7;
}
.products__left {
  padding-right: 20% !important;
}
.products__right-img-1 img {
  width: 150%;
  margin-left: -30%;
  padding-top: 30px;
}
@media (max-width: 968px) {
  .products__right-img-1 img {
    width: 100%;
    margin-left: 0;
  }
}
.products::after {
  content: "";
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #2e2e2e;
  z-index: 1;
}
@media (max-width: 968px) {
  .products::after {
    width: 100%;
    right: 0;
  }
}
.products .container {
  position: relative;
  z-index: 2;
}
.products h2 {
  margin-bottom: 20px;
}
.products p {
  margin-bottom: 20px;
}
.products p, .products li {
  color: var(--c-white);
}
.products .box {
  margin-left: 5px;
  margin-top: 20px;
}
@media (max-width: 968px) {
  .products .box {
    margin-left: 0;
  }
}

.prince {
  padding: 80px 0;
  background: var(--c-gray-2);
}
.prince__box {
  padding: 26px;
  background: var(--c-white);
  border-radius: 10px;
  margin-top: 40px;
  min-height: 240px;
  box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.12);
}
.prince__box .number {
  display: block;
  font-size: 1.4rem;
  color: var(--c-primary);
  text-align: right;
  font-weight: 600;
  margin-bottom: 20px;
}
.prince__box p span {
  color: var(--c-primary);
  font-weight: 600;
}

.slick-arrow {
  font-size: 0;
  width: 46px;
  height: 46px;
  background-color: transparent;
  border: 0;
}

.clients {
  padding: 80px 0 160px 0;
  position: relative;
}
.clients .slick-arrow {
  position: absolute;
  bottom: -80px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.clients .slick-next {
  background-image: url(../images/arrow-right.svg);
  left: calc(50% + 40px);
}
.clients .slick-prev {
  background-image: url(../images/arrow-left.svg);
  left: 49%;
}
@media (max-width: 968px) {
  .clients .slick-prev {
    left: 29%;
  }
}
.clients .slide-1 {
  margin-top: 30px;
}
.clients .slide__item {
  margin: 0 10px;
  border: 1px solid #b7b7b7;
}
.clients .slide__item img {
  width: 100%;
}

.testimonial {
  padding: 80px 0;
  position: relative;
  background: var(--c-gray);
}
.testimonial::after {
  content: "";
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--c-primary);
  z-index: 1;
}
@media (max-width: 968px) {
  .testimonial::after {
    width: 100%;
    right: 0;
  }
}
.testimonial .container {
  position: relative;
  z-index: 2;
}
.testimonial .slider-2 {
  position: relative;
}
.testimonial .slider-2 .img-box {
  position: absolute;
  width: 180px;
}
@media (max-width: 968px) {
  .testimonial .slider-2 .img-box {
    position: relative;
    margin-bottom: 20px;
  }
}
.testimonial .slider-2 .img-box img {
  width: 100%;
}
.testimonial .slider-2 .content-box {
  padding-left: 240px;
}
@media (max-width: 968px) {
  .testimonial .slider-2 .content-box {
    padding-left: 0;
  }
}
.testimonial .slider-2 .slick-arrow {
  position: absolute;
  bottom: -80px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.testimonial .slider-2 .slick-next {
  background-image: url(../images/arrow-right-white.svg);
  left: -29%;
}
.testimonial .slider-2 .slick-prev {
  background-image: url(../images/arrow-left-white.svg);
  left: -37%;
}
.testimonial .btn {
  margin-left: 240px;
}
@media (max-width: 968px) {
  .testimonial .btn {
    margin-left: 0;
  }
}
.testimonial .testi-icons {
  display: block;
  width: 30px;
  margin-bottom: 30px;
}
.testimonial .testi-icons img {
  width: 100%;
}
.testimonial h3 {
  color: var(--c-title);
  margin-bottom: 25px;
}
@media (max-width: 968px) {
  .testimonial h3 {
    color: var(--c-white);
  }
}
@media (max-width: 968px) {
  .testimonial p {
    color: var(--c-white);
  }
}
.testimonial .testi-name {
  color: var(--c-primary);
}

.contact {
  position: relative;
  padding: 80px 0;
  background: url(../images/steel.png);
}
.contact .container {
  position: relative;
  z-index: 2;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
  background-color: #2e2e2e;
}
@media (max-width: 968px) {
  .contact::after {
    width: 100%;
    left: 0;
  }
}
.contact .enq-box {
  width: 60%;
  margin: 0 auto;
  padding: 0;
  background: #2e2e2e;
}
@media (max-width: 968px) {
  .contact .enq-box {
    width: 100%;
    margin-top: 30px;
  }
}
.contact__img {
  width: 80%;
  text-align: center;
}
.contact__img img {
  width: 100%;
}
.contact__img--1 {
  margin-bottom: 40px;
}
.contact__img--1 img {
  width: 350px;
}
.contact__img--2 img {
  width: 250px;
}

.footer {
  padding: 80px 0 20px 0;
  background-color: var(--c-gray);
}
.footer__right {
  display: flex;
  justify-content: end;
}
@media (max-width: 968px) {
  .footer__right {
    justify-content: start;
    margin-top: 30px;
  }
}
.footer__right a {
  color: var(--c-black);
}
.footer__left img {
  width: 340px;
}
.footer__mail {
  font-size: 1.4rem;
  padding-left: 30px;
  background-image: url(../images/mail.png);
  background-size: 20px;
  background-repeat: no-repeat;
  padding-top: 5px;
  padding-bottom: 5px;
  background-position: left 8px;
}

.savemoney {
  padding: 80px 0;
  background: url(../images/bg-curve.svg);
  background-position: right bottom;
  background-size: 50%;
  background-repeat: no-repeat;
  border-bottom: 14px solid #b0b0b0;
}
.savemoney__left h2 {
  font-size: 6.2rem;
  color: var(--c-red);
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 968px) {
  .savemoney__left h2 {
    font-size: 2.8rem;
  }
}
.savemoney__left h3 {
  font-size: 4.2rem;
}
.savemoney__right img {
  width: 100%;
}
.savemoney .box {
  margin-top: 80px;
  display: flex;
  margin-left: 80px;
  align-items: end;
}
@media (max-width: 968px) {
  .savemoney .box {
    margin-left: 0;
    display: block;
  }
}
.savemoney .box img {
  width: 280px;
}
.savemoney .box .btn-2 {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: -30px;
  padding: 10px 20px;
  font-size: 3.2rem;
  font-weight: bold;
  background: var(--c-red);
  color: var(--c-white);
}
@media (max-width: 968px) {
  .savemoney .box .btn-2 {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

.contact-btns {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.contact-btns a {
  display: inline-flex;
}
.contact-btns svg {
  width: 50px;
  height: 50px;
}

.modal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e3d4d4;
}

.cta_top_new a{
  color: var(--c-primary);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.new_cta_fontsize{
  font-size: 20px !important;
  font-weight: 700;
}

.new_cta_fontsize span{
  color: var(--c-white) !important;
}

@media (max-width: 768px) {
  .new_cta_fontsize{
    font-size: 15px !important;
    font-weight: 700;
  }
}

.header__right a:hover span{
  color: green !important;
}


.metcon_feture_center{
  text-align: center;
  align-items: center;
  justify-content: center;
}

.metcon_feture_center h2{
  padding-bottom: 15px;
  color: #ffffff;
}

.about__right{
  color: #ffffff;
  text-align: center;
  justify-content: center;
  padding-top: 150px;
  padding-left: 150px;

}

.about__right p{
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

.caption_met_fet p{
  font-size: 15px;
}

.about_met_space{
  padding-top: 30px;
}

.btn--s {
  background: #ff0000;
  color: var(--c-white);
}
.btn--s:hover {
  background: #f65353;
}

.red_button_position{
  padding-top: 150px;
}

@media (max-width: 968px) {
  .about::after {
    width: 100%;
    left: 0;
  }
  .about__left{
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about__right{
    padding-left: 0px;
    padding-bottom: 10px;
    padding-top: 100px;
  }
  .about__right p{
    font-size: 21px;
  }
  .caption_met_fet p{
    font-size: 12px;
  }
  .red_button_position{
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
  }
}


.ourproducts {
  padding: 80px 0;
}
.ourproducts h2 {
  text-align: center;
  padding-bottom: 30px;
}
.ourproducts p {
  width: 100%;
}
@media (max-width: 968px) {
  .ourproducts p {
    width: 100%;
  }
}

.ourproduct_data{
  border: #000000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  min-height: 660px;
}

.ourproduct_data h2{
  padding-top: 20px;
  font-size: 25px;
  color: #b11f24;
  padding-bottom: 5px;
}

.ourproduct_data p{
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 25px;
}

.ourproduct_data img{
  width: 100%;
  border-radius: 10px;
}

.ourproducts title{
  padding-bottom: 30px;
}

.head_phoneno{
    color: #ffffff;
    padding-right: 20px;
    padding-top: 17px;
    font-size: 20px;
    font-weight: 700;
}

.header__right{
  display: flex;
}

@media (max-width: 768px) {
  .head_phoneno{
    display: none;
  } 
}
/*# sourceMappingURL=style.css.map */

