@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
/* font-family: "Heebo", sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --logo-red: #b93e41;
  --logo-black: #0f171b;
  --carousel-red: #da0a0f;
  --footer-bg: #0f171b;
  --white: #fff;
  --black: #000;
  --banner-text: #00324c;
  --paragraph: #575656;
  --industry-bg: #f4f4f4;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}


body {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 18px;
  overflow-x: hidden;
}


img {
  width: auto;
}


/* =================CUSTOM BUTTON============================== */

a {
  text-align: center;
  margin: 0 auto;
  float: none;
  margin-top: 50px;
}

.btn_acele {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 15px 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

.btn_acele::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_acele:hover::after,
.btn_acele:active::after {
  width: 100%;
}

.btn_black {
  background: #111;
  color: #fff;
}

.btn_black::after {
  background: #da0a0f;
}

.btn_black:visited {
  color: #fff;
}

.btn_black:hover {
  color: #fff;
}


/* =================TOP HEADER============================== */

header .top-header {
  background: var(--logo-red);
  padding: 10px 80px;
}

header .top-header .floated-left p {
  margin: 0 15px 0 0;
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 33px;
  color: var(--white);
}

header .top-header .floated-left a {
  color: var(--white);
  text-decoration: none;
}

header .top-header .floated-right p {
  margin: 0 0 0 15px;
}


/* =================HEADER============================== */

header {
  position: relative;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  color: #fff;
  padding: 1rem 80px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--logo-black);
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

nav a:hover {
  color: var(--logo-red);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.fa-bars {
  font-size: 25px;
}

@media (max-width: 768px) {
  .toggle {
    transition: ease-in-out 550ms;
    transform: translate(0px);
    opacity: 1;
    display: block;
  }

  .header-container {
    width: 100%;
    padding: 15px 0rem;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    backdrop-filter: blur(10px);
    transform: translateX(-500px);
    opacity: 0;
  }

  nav a {
    color: #fff;
  }

  nav li {
    padding: 1rem;
    cursor: pointer;
  }

  nav li:hover {
    background: hsla(0, 0%, 0%, 0.7);
  }

  .hamburger {
    display: block;
  }
}


/* ================================BANNER HERE================================== */

.banner {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .banner-text {
  width: 55%;
  text-align: center;
}

.banner .banner-text h1 {
  font-family: "Heebo", sans-serif;
  font-size: 43px;
  line-height: 57px;
  color: var(--banner-text);
  font-weight: 700;
}

.banner .banner-text h2 {
  font-family: "Heebo", sans-serif;
  font-size: 32px;
  line-height: 42px;
  color: var(--black);
  font-weight: 600;
}

.banner .banner-btn {
  font-family: "Heebo", sans-serif;
  font-size: 19px;
  line-height: 25px;
  color: var(--white);
  font-weight: 400;
  background: var(--logo-red);
  padding: 15px 40px;
  text-decoration: none;
}


/* ================================ABOUT US================================== */

.aboutus {
  margin: 120px 80px;
  position: relative;
}

.aboutus .about-logo-circle {
  position: absolute;
  top: 22rem;
  right: 10px;
}

.aboutus .aboutarea div:nth-child(1) {
  padding: 0 100px 0 0;
}

.aboutus .aboutarea div:nth-child(2) h1 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 0 30px 0;
}

.aboutus .aboutarea div:nth-child(2) h2 {
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--logo-red);
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  background: url(../images/logo-icon.png) no-repeat 0px 5px;
  padding: 0 0 0 20px;
}

.aboutus .aboutarea div:nth-child(2) p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 400;
}

.aboutus .about-btn {
  font-family: "Heebo", sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
  font-weight: 400;
  background: var(--logo-red);
  padding: 12px 38px;
  text-decoration: none;
  margin-top: 40px;
  float: left;
}

.abt-rightt {
  position: relative;
  top: 31rem !important;
  right: 11rem;
}

.logo-circle-center {
  position: absolute;
  top: 60px;
  left: 60px;
}

.my-spinn {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.my-spinn img {
  width: 200px;
  height: 200px;
}


/* ================================SERVICE================================== */

.service {
  background: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 80px;
  background-size:cover !important;
}

.service h1 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--white);
  font-weight: 700;
  padding: 30px 0;
  text-align: center;
}

.service h2 {
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  background: url(../images/logo-icon-white.png) no-repeat 45.5% 50%;
  text-align: center;
}

.owl-carousel .owl-item img {
  width: auto;
}

.service .ecom-item {
  border-radius: 5px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--logo-red);
  min-height: 346px;
}

.service .ecom-item:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.service .ecom-item h3 {
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: var(--logo-black);
  font-weight: 600;
  text-align: center;
  padding: 20px 0 0 0;
}

.service .ecom-item p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 400;
  text-align: center;
}

/* ================================COMPREHENSIVE SOLUTIONS================================== */

.comprehensive {
  padding: 0px 80px;
  background: url(../images/solution-bg.jpg) no-repeat center center;
  background-size:cover !important;
  margin-top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comprehensive .com-text {
  width: 48%;
  padding: 90px 0;
}

.comprehensive .com-text h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.comprehensive-btn {
  font-family: "Heebo", sans-serif;
  font-size: 17px;
  line-height: 25px;
  border: 1px solid var(--white);
  color: var(--white);
  font-weight: 400;
  padding: 12px 38px;
  text-decoration: none;
  display: table;
  margin: 50px auto 0;
}


/* ================================SUPPLIER================================== */

.supplier {
  padding: 100px 80px;
}

.supplier h1 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  padding: 15px 0 0 0;
  text-align: center;
}

.supplier h2 {
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--logo-red);
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  background: url(../images/logo-icon.png) no-repeat 40% 50%;
  text-align: center;
}

.supplier .item {
  padding: 40px 0;
}

.supplier .ecom-item img {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.supplier .ecom-item h3 {
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: var(--logo-black);
  font-weight: 600;
  text-align: center;
  padding: 45px 0 0 0;
}

.owl-carousel .active span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: red !important;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}


/* ================================FOOTER================================== */
footer .footer-area {
  background: var(--footer-bg);
  padding: 80px 80px;
}

footer .footer-area p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: var(--white);
  font-weight: 400;
  padding: 15px 0 0 0;
}

footer .footer-area h5 {
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  line-height: 25px;
  color: var(--white);
  font-weight: 600;
}

footer .footer-area ul li a {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 40px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

footer .footer-area ul li a:hover {
  color: var(--bannertext);
}

footer .footer-area ul li {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

footer .footer-area .quick-link {
  padding: 0 0 0 100px;
}

footer .footer-area .follow-us img {
  margin: 10px 10px 0 0;
}

footer .copyright {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 60px;
  color: var(--white);
  font-weight: 400;
  text-align: center;
  background: var(--black);
  margin-bottom: 0;
}

footer .follow-us a img:hover {
  transform: rotateY(360deg);
}


/* ================================ABOUT PAGE================================== */
.inner-banner {
  background: url(../images/inner-banner.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.inner-banner .banner-text h1 {
  font-family: "Heebo", sans-serif;
  font-size: 40px;
  line-height: 60px;
  color: var(--white);
  font-weight: 600;
}

.about-page_text-part {
  padding: 120px 80px;
}

.about-page_text-part h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  padding: 0 0 20px 0;
}

.about-page_text-part p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 400;
  text-align: center;
}

.about-page_text-part .text-area {
  width: 75%;
}

.about-page_map h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  padding: 0 0 20px 0;
}

.about-page_mission {
  padding: 100px 80px;
}

.about-page_mission .child {
  border-radius: 5px;
  padding: 40px;
  min-height: 275px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-page_mission .child:hover {
  background: var(--logo-red);
  box-shadow: rgba(185, 65, 62, 1) 0px 2px 8px 0px;
}

.about-page_mission .child h3 {
  font-family: "Heebo", sans-serif;
  font-size: 28px;
  line-height: 40px;
  color: var(--white);
  font-weight: 600;
  background: url(../images/about-page-mission-1.svg) no-repeat 0% 50%;
  padding: 0 0 0 35px;
}

.about-page_mission .child .my-head-mission {
  background: url(../images/about-page-mission-2.svg) no-repeat 0% 50%;
  padding: 0 0 0 35px;
}

.about-page_mission .child p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: var(--white);
  font-weight: 400;
}

.about-page_mission .mission1 {
  background: #2f3943;
}

.about-page_mission .mission2 {
  background: #0d1e2d;
}

/* ================================PRODUCT PAGE================================== */
.product-page_product {
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page_product h3 {
  font-family: "Heebo", sans-serif;
  font-size: 35px;
  line-height: 40px;
  color: var(--logo-black);
  font-weight: 600;
  padding: 5px 0 0 0;
  border: 1px solid var(--logo-red);
  width: 50px;
  height: 50px;
  border-radius: 60px;
  text-align: center;
}

.product-page_product h3:hover {
  background: var(--logo-red);
  color: var(--white);
  box-shadow: rgba(185, 62, 65, 1) 0px 6px 24px 0px, rgba(185, 62, 65, 1) 0px 0px 0px 1px;
}

.product-page_product .prod-item {
  margin: 50px 0 0 0;
}

.product-page_product p {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 15px;
  color: var(--paragraph);
  font-weight: 400;
  padding: 0 0 0 15px;
  background: url(/images/product-page-arrow.png) no-repeat 0px 50%;
}

.product-page_product p:hover {
  color: var(--logo-red);
  text-decoration: underline;
}

.product-page_product img {
  display: none;
  width: 40px;
}

.product-page_product .product-page_area {
  width: 90%;
}


/* ================================INDUSTRY PAGE================================== */
.industry-list {
  background: var(--industry-bg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 80px;
}

.industry-list .ecom-item {
  border-radius: 5px;
  padding: 30px 30px;
  background: var(--white);
  border: 1px solid var(--logo-red);
  margin: 25px 0 0 0;
  min-height: 225px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.industry-list .ecom-item:hover {
  box-shadow: rgba(185, 62, 65, 1) 0px 2px 8px 0px;
  ;
}

.industry-list .ecom-item h4 {
  font-family: "Heebo", sans-serif;
  font-size: 19px;
  line-height: 22px;
  color: var(--logo-black);
  font-weight: 600;
  padding: 10px 0 0 10px;
}

.industry-list .ecom-item p {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: var(--paragraph);
  font-weight: 400;
}


/* ================================PRINCIPAL PAGE================================== */
.principal-page {
  padding: 100px 80px;
}

.principal-page h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 0 30px 0;
  text-align: center;
}


/* ================================PARTNERS PAGE================================== */
.partner-page {
  padding: 100px 80px;
}

.partner-page h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 0 20px 0;
  text-align: center;
}

.partner-page .child {
  margin: 20px 0 0 0;
  padding: 50px;
  border: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

/* ================================CONTACT PAGE================================== */
.contact-page_contact-details {
  padding: 100px 80px;
}

.contact-page_contact-details .con1 {
  width: 40%;
  padding: 0 50px 0 0;
}

.contact-page_contact-details .con1 div {
  padding: 20px 0;
  border-bottom: 1px solid var(--carousel-red);
}

.contact-page_contact-details .con1 h2 {
  font-family: "Heebo", sans-serif;
  font-size: 38px;
  line-height: 45px;
  color: var(--logo-black);
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 0 30px 0;
}

.contact-page_contact-details .con1 p {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--paragraph);
  font-weight: 400;
  padding: 0 0 0 50px;
  background: url(../images/contact-page-icon-1.png) no-repeat 0px 50%;
}

.contact-page_contact-details .con1 a {
  color: var(--logo-black);
  text-decoration: none;
}

.contact-page_contact-details .con1 .email {
  background: url(../images/contact-page-icon-2.png) no-repeat 0px 50%;
}

.contact-page_contact-details .con1 .address {
  background: url(../images/contact-page-icon-3.png) no-repeat 0px 50%;
}

.contact-page_contact-details .con1 p span {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--logo-black);
  font-weight: 500;
}

.contact-page_contact-details .con2 {
  width: 60%;
}

.contact-page_contact-details .con2 form input[type="text"],
.contact-page_contact-details .con2 form input[type="email"],
.contact-page_contact-details .con2 form input[type="tel"] {
  width: 100%;
  background: #f4f4f4;
  height: 60px;
  border: 1px solid #e0e0e0;
  outline: 0;
  margin: 10px 0 0 0;
  border-radius: 2px;
  color: #adadad;
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-indent: 15px;
}

.contact-page_contact-details .con2 form textarea {
  width: 100%;
  background: #f4f4f4;
  height: 200px;
  border: 1px solid #e0e0e0;
  outline: 0;
  margin: 10px 0 0 0;
  border-radius: 2px;
  color: #adadad;
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-indent: 15px;
  padding: 20px 0 0 0;
}

.contact-page_btn {
  font-family: "Heebo", sans-serif;
  font-size: 19px;
  line-height: 25px;
  color: var(--white);
  font-weight: 400;
  background: var(--logo-red);
  padding: 15px 40px;
  text-decoration: none;
  outline: none;
  border: none;
  float: left;
  margin: 50px 0 0 0;
}

.contact-page_office-details {
  padding: 0px 80px 100px 80px;
}

.contact-page_office-details .child {
  border-radius: 5px;
  padding: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid var(--logo-red);
  min-height:331px !important;
}

.contact-page_office-details .child h3 {
  font-family: "Heebo", sans-serif;
  font-size: 28px;
  line-height: 40px;
  color: var(--logo-black);
  font-weight: 600;
}

.contact-page_office-details .child:hover {
  box-shadow: rgba(185, 62, 65, 1) 0px 0px 24px;
}

.contact-page_office-details .child p {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--paragraph);
  font-weight: 400;
}

.contact-page_office-details .child p {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--paragraph);
  font-weight: 400;
  padding: 0 0 0 50px;
  background: url(../images/office-details-icon-1.svg) no-repeat 0px 50%;
}

.contact-page_office-details .child .email {
  background: url(../images/office-details-icon-2.svg) no-repeat 0px 50%;
}

.contact-page_office-details .child .address {
  background: url(../images/office-details-icon-3.svg) no-repeat 0px 50%;
}

.contact-page_office-details .child p span {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--logo-black);
  font-weight: 500;
}

.contact-page_office-details .child a {
  color: var(--logo-black);
  text-decoration: none;
}

/* ================================RESPONSIVE================================== */


/* -----------1550-----------------*/
@media only screen and (max-width: 1550px) {
 
 .aboutus .aboutarea {
  flex-direction: column !important;
  align-items: center;
  }
 
 .abt-rightt {
    position: relative;
    top: -5rem !important;
    left: 14rem;
    z-index:9999;
  }   

.aboutus .aboutarea div:nth-child(1) {
  padding: 0 0 50px 0;
}

}



/* -----------1440-----------------*/
@media only screen and (max-width: 1440px) {
 .aboutus .aboutarea {
  flex-direction: column !important;
  align-items: center;
  }
    
 .abt-rightt {
    position: relative;
    top: -3rem !important;
    left: 14rem;
    z-index:9999;
  }   
    
    .aboutus {
    margin-bottom: 50px;
  }
    .service h2 {
    background: url(../images/logo-icon-white.png) no-repeat 44.8% 50%;
}
    .supplier h2 {
    background: url(../images/logo-icon.png) no-repeat 37% 50%;
}
    
}



/* -----------1024-----------------*/

@media only screen and (max-width: 1024px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 15px;
    line-height: 20px;
  }

  .header-container .logo img {
    width: 110px;
  }

  .banner .banner-text {
    width: 80%;
  }

  .banner {
    min-height: 550px;
  }

  .aboutus .aboutarea {
    flex-direction: column;
    align-items: center;
  }

  .aboutus .aboutarea div:nth-child(1) {
    padding: 0 0px 100px 0;
  }

  .abt-rightt {
    position: relative;
    top: -7rem !important;
    left: 17rem;
  }

  .aboutus {
    margin-bottom: -50px;
  }

  .service h2 {
    background: url(../images/logo-icon-white.png) no-repeat 42% 50%;
  }

  .supplier h2 {
    background: url(../images/logo-icon.png) no-repeat 33% 50%;
  }

  .comprehensive .com-text {
    width: 80%;
  }

  footer .footer-area {
    padding: 80px 20px;
  }

  footer .footer-area .quick-link {
    padding: 0 0 0 100px;
  }

  footer .footer-area .follow-us {
    padding: 30px 0 0 100px;
  }

  footer .footer-area .contact-us {
    padding: 50px 0 0 0px;
  }
}

/* -----------768-----------------*/
@media only screen and (max-width:768px) {

  header .top-header {
    background: var(--logo-red);
    padding: 10px 20px;
  }

  header .top-header .top-header-area {
    flex-direction: column;
    display: block;
  }

  header .top-header>div .floated-left {
    width: 100%;
    justify-content: space-evenly;
  }

  header .top-header>div .floated-right {
    width: 100%;
    justify-content: center;
    margin: 15px 0 10px 0;
  }

  .banner {
    min-height: 350px;
  }

  .banner .banner-text {
    width: 100%;
  }

  .banner .banner-text h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .banner .banner-text h1 {
    font-size: 28px;
    line-height: 33px;
  }

  .banner .banner-btn {
    font-size: 16px;
    line-height: 18px;
    padding: 14px 31px;
  }

  .aboutus .aboutarea div:nth-child(2) h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .aboutus {
    margin: 80px 20px -50px 0;
  }

  .abt-rightt {
    top: -4rem !important;
    left: 17rem;
  }

  .aboutus .aboutarea div:nth-child(1) {
    padding: 0 0px 80px 0;
  }

  .aboutus .aboutarea div:nth-child(2) p {
    font-size: 15px;
    line-height: 25px;
  }

  .aboutus .about-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 12px 30px;
    margin-top: 30px;
  }

  .service h2 {
    background: url(../images/logo-icon-white.png) no-repeat 39% 50%;
  }

  .service h1 {
    font-size: 30px;
    line-height: 35px;
    padding: 24px 0;
  }
 
  .comprehensive .com-text h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .comprehensive-btn {
    font-size: 15px;
    line-height: 20px;
    padding: 12px 30px;
    margin: 38px auto 0;
  }

  .comprehensive {
    padding: 0px 20px;
    margin-top: -81px;
  }

  .comprehensive .com-text {
    width: 100%;
    padding: 90px 0;
  }

  .supplier {
    padding: 70px 80px;
  }

  .supplier h2 {
    background: url(../images/logo-icon.png) no-repeat 27% 50%;
  }

  .supplier h1 {
    font-size: 30px;
    line-height: 38px;
    padding: 8px 0 0 0;
  }

  .inner-banner {
    min-height: 200px;
  }

  .inner-banner .banner-text h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .about-page_text-part {
    padding: 70px 20px;
  }

  .about-page_text-part h2 {
    font-size: 29px;
    line-height: 26px;
  }

  .about-page_text-part p {
    font-size: 15px;
    line-height: 25px;
  }

  .about-page_map h2 {
    font-size: 27px;
    line-height: 31px;
  }

  .about-page_map img {
    width: 500px;
  }

  .about-page_mission {
    padding: 10px 20px 60px;
  }

  .about-page_mission .child p {
    font-size: 15px;
    line-height: 25px;
  }

  .about-page_mission .child h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .about-page_mission .child {
    padding: 30px;
    margin-top: 30px;
  }

  .about-page_text-part .text-area {
    width: 100%;
  }

  .product-page_product {
    padding: 50px 20px;
  }

  .product-page_product p {
    font-size: 15px;
    line-height: 18px;
  }

  .product-page_product h3 {
    font-size: 29px;
    line-height: 28px;
    padding: 5px 0 0 0;
    width: 40px;
    height: 40px;
  }

  .industry-list {
    padding: 70px 20px;
  }

  .industry-list .ecom-item {
    min-height: 200px;
  }

  .partner-page {
    padding: 70px 20px;
  }

  .partner-page h2 {
    font-size: 30px;
    line-height: 35px;
    padding: 0px 0 15px 0;
  }

  .partner-page .child img {
    width: 140px;
  }

  .contact-page_contact-details {
    padding: 70px 20px;
  }

  .contact-page_contact-details .con1 h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .contact-page_office-details {
    padding: 0px 20px 70px 20px;
  }
}


/* -----------736-----------------*/
@media only screen and (max-width:736px) {
  footer .footer-area .quick-link {
    padding: 0 0 0 0px;
  }

  footer .footer-area .follow-us {
    padding: 30px 0 0 0px;
  }

  .about-page_map img {
    width: 350px;
  }
}

/* -----------480-----------------*/
@media only screen and (max-width:480px) {

  header .top-header .floated-left p {
    margin: 0 0px 0 0;
    font-size: 15px;
    line-height: 26px;
  }

  header .top-header>div .floated-right {
    margin: 8px 0 3px 0;
  }

  header .top-header>div .floated-left {
    width: 100%;
    display: block;
    flex-direction: column;
    align-items: center;
  }

  header .top-header>div .floated-left li {
    width: 100%;
  }

  .banner .banner-btn {
    margin-top: 15px;
  }

  .aboutus .about-pic img {
    width: 340px;
  }

  .aboutus {
    margin: 80px 20px -5px 0;
  }

  .abt-rightt {
    top: -4rem !important;
    left: 5rem;
  }

  .abt-rightt .logo-circle-center {
    width: 50px;
    height: 50px;
    top: 50px;
    left: 50px;
  }

  .abt-rightt .logo-circle-outline {
    width: 150px;
    height: 150px;
  }

  .my-spinn {
    width: 150px;
    height: 150px;
  }

  .service {
    padding: 100px 20px;
  }

  .service h2 {
    background: url(../images/logo-icon-white.png) no-repeat 31% 50%;
  }

  .owl-carousel .owl-item img {
    width: 60px;
  }


  .supplier {
    padding: 50px 20px;
  }

  .supplier h2 {
    background: url(../images/logo-icon.png) no-repeat 10% 50%;
  }

  .supplier .owl-carousel .owl-item img {
    width: 150px;
    height: auto;
  }

  footer .footer-logo-part {
    padding-bottom: 30px;
    padding-left: 0px;
  }

  footer .footer-area {
    padding: 60px 20px;
  }

  footer .copyright {
    font-size: 15px;
    line-height: 20px;
    padding: 20px 0;
  }

  .contact-page_contact-details {
    flex-direction: column;
  }

  .contact-page_contact-details .con1 {
    width: 100%;
    padding: 0 0px 0 0;
  }

  .contact-page_contact-details .con2 {
    width: 100%;
    padding: 0 0px 0 0;
    margin-top: 15px;
  }

  .contact-page_contact-details .con1 h2 {
    padding: 0;
  }

  .contact-page_office-details .child {
    padding: 25px;
    margin-top: 15px;
  }

}

/* -----------375-----------------*/
@media only screen and (max-width:375px) {

  .service h2 {
    background: url(../images/logo-icon-white.png) no-repeat 29% 50%;
  }

  .supplier h2 {
    background: url(../images/logo-icon.png) no-repeat 5% 50%;
  }

}

form .error-message {
  font-family: "Heebo", sans-serif; 
  font-size: 15px;
  color:red !important;
}