/* font-family: "K2d", serif; */
@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* font-family: "Raleway", serif; */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Poppins", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Baloo+2:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
button,
textarea 
{
  font-family: "K2D", serif;
}

button {
  cursor: pointer;
  border: 0;
}

:root {
  --primary-color: #0a3f81;
  --secondary-color: #eb6d23;
  --white-color: #ffffff;
  --black-color: #000000;
  --bg-color: #01067b1a;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 30px 0;
}

p {
	font-family: "K2D", serif;
  font-size: 16px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
}

li{
	font-family: "K2D", serif;
}

.custom-favicon{
	width: 200px;
	height: auto;
}

/* Btn */
.btn {
	
	 font-family: "K2D", serif;
  padding: 10px 20px !important;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 16px !important;
  border-radius: 5px !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  font-weight: 500 !important;
  transition: 0.3s ease-in-out;
  cursor: pointer !important;
}

.btn:hover {
  background-color: var(--primary-color);
}
/* End Btn */

/* Fixed Inquiry Btn */
.fix-inq-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.fix-inq-btn button {
  width: 100%;
  border-radius: 0;
}
/* End Fixed Inquiry Btn */

/* Section Title */
.section-title h1 {
	  font-family: "K2D", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.section-title span {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 30px;
}

@media (max-width: 576px) {
  .section-title h1 {
    font-size: 22px;
  }

  .section-title span {
    font-size: 21px;
    margin-right: 3px;
  }
}

@media (max-width: 400px) {
  .section-title h1 {
    font-size: 20px;
  }
}
/* End Section Title*/

/* Form */
form{
	font-family: "K2D", serif;
}
/* End Form */

/* Top Bar */
.top-bar {
  padding: 8px 0;
  background-color: var(--primary-color);
}

.top-bar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar .content .social-icons,
.top-bar .content .contact-info,
.top-bar .content .contact-info .info {
  display: flex;
  align-items: center;
}

.top-bar .content .social-icons {
  gap: 15px;
}

.top-bar .content .contact-info {
  gap: 30px;
}

.top-bar .content .contact-info .info {
  gap: 5px;
}

.top-bar .content .social-icons i {
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  transition: 0.3s ease-in-out;
}

.top-bar .content .social-icons i:hover {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.top-bar .content .contact-info .info i {
  font-size: 20px;
  color: var(--white-color);
}

.top-bar .content .contact-info .info h4 {
  font-family: "K2D", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white-color);
}

@media (max-width: 1200px) {
  .top-bar .content .social-icons i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .top-bar .content .contact-info .info i {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
}
/* End Top Bar */

/* Navbar */
nav {
	font-family: "K2D", serif;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 10px 0;
}

nav .navbar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.navbar .logo img {
  width: 150px;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
}

nav .navbar .links .nav-link-items {
  height: 100%;
  white-space: nowrap;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

nav .navbar .links li:hover .nav-link-items,
nav .navbar .links li:hover .arrow {
  color: var(--secondary-color);
}

.links li:hover .prac-area-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 0 0 5px 5px;
  display: none;
  z-index: 1;
  padding: 5px;
}

nav .navbar .links li:hover .prac-area-sub-menu {
  width: fit-content;
  display: flex;
  gap:25px;
}

.navbar .links li .sub-menu li {
  padding: 10px 40px 10px 10px;
  border-bottom: 1px solid var(--primary-color);
}

.navbar .links li .sub-menu .nav-link-items {
  color: var(--primary-color) !important;
  transition: 0.3s ease-in-out;
}

.navbar .links li .sub-menu li:hover .nav-link-items {
  color: var(--secondary-color) !important;
}

.navbar .links li .sub-menu .nav-link-items {
  font-size: 16px;
  font-weight: 500;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

nav .navbar .links li .arrow.rotate {
  transform: rotate(180deg);
}

.inq-btn-show {
  display: none;
}

.fix-inq-btn {
  display: none;
}

@media (max-width: 1400px) {
  nav .navbar .links {
    gap: 15px;
  }

  .navbar .logo img {
    width: 180px;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .navbar .logo img {
    width: 160px;
  }

  nav .navbar .links .nav-link-items {
    font-size: 14px;
  }

  nav .navbar .btn {
    padding: 10px;
  }
}

@media (max-width: 1080px) {
  .navbar .logo img {
    width: 130px;
  }

  nav .navbar .links {
    gap: 10px;
  }
}

@media (max-width: 1042px) and (min-width: 992px) {
  nav .navbar .links .nav-link-items,
  .navbar .links li .sub-menu .nav-link-items {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  nav {
    top: 0;
  }

  nav .navbar {
    flex-direction: row;
  }

  .inq-btn-hide {
    display: none !important;
  }

  .inq-btn-show {
    display: block;
  }

  .navbar .bx-menu {
    display: block;
  }

  .navbar .logo img {
    width: 150px;
  }

  nav .sub-menu-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background-color: var(--white-color);
    line-height: 50px;
    padding: 10px 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name img {
/*     height: 40px; */
	  width:  130px;
  }

  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 32px;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 5px;
  }

  .sidebar-logo i {
    margin-left: 20px;
    margin-top: -15px;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
    border-bottom: 1px solid var(--primary-color);
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
	  height: 250px;
	  overflow: auto;
  }

  .navbar .links li .sub-menu li {
    padding: 0 60px 10px 10px;
  }

  nav .navbar .links li:hover .prac-area-sub-menu {
    width: auto;
    flex-direction: column;
    justify-content: flex-start;
    height: 200px;
    overflow: auto;
  }

  .links li:hover .prac-area-arrow {
    transform: rotate(0deg);
  }

  /* .navbar .links li .sub-menu .more span {
    display: flex;
    align-items: center;
  } */

  nav .navbar .links li:hover .prac-area-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .prac-area-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .prac-area-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  .inq-btn-show {
    display: none;
  }

  .fix-inq-btn {
    display: block;
  }
}

@media (max-width: 576px) {
  .navbar .logo img {
    width: 130px;
  }
}

@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
/* End Navbar */

/* Home Banner */
.home-banner-images-slider {
  width: 100%;
}
.home-banner-images img {
  width: 100%;
}

.home-banner {
  padding: 0;
}

.home-banner {
/* 	padding: 0 !important; */
/*   background: linear-gradient(269.94deg, #808080 1.26%, #01067b 97.97%);
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.home-banner .row {
  display: flex;
  align-items: center;
}

.home-banner .content h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: 1px;
}

.home-banner .content h1 {
  margin: 20px 0 50px 0;
  font-size: 62px;
  font-weight: 700;
  color: var(--white-color);
}

.home-banner img {
  width: 100%;
}

.home-banner .home-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}

.home-banner .home-btn .bg-trans {
  background-color: transparent;
  border: 1px solid var(--white-color);
}

.home-banner .home-btn .btn-one {
  border: 1px solid transparent;
}

.home-banner .home-btn .bg-trans:hover {
  background-color: var(--secondary-color);
  border: 1px solid transparent;
}

.home-banner .home-btn .btn-one:hover {
  border: 1px solid var(--white-color);
}

.home-banner .slick-dots li button:before {
  height: 5px;
  color: transparent;
  background-color: var(--secondary-color);
}

.home-banner .slick-dots li.slick-active button:before {
  color: transparent;
}

@media (max-width: 1440px) {
  .home-banner .content h1 {
    font-size: 58px;
  }
}

@media (max-width: 1350px) {
  .home-banner .content h1 {
    font-size: 54px;
  }
  .home-banner {
    height: 600px;
  }
}

@media (max-width: 1260px) {
  .home-banner {
    height: 500px;
  }

  .home-banner .content h1 {
    font-size: 50px;
  }
}

@media (max-width: 1170px) {
  .home-banner {
    height: 500px;
  }

  .home-banner .content h1 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .home-banner {
    height: auto;
	  background :#01067b;
  }

  .home-banner .row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .home-banner .content {
    text-align: center;
  }

  .home-banner .home-btn {
    gap: 20px;
    justify-content: center;
  }

  .home-banner .content h1 {
    font-size: 40px;
  }

  .home-banner img {
/*     margin-bottom: 20px; */
    height: 330px;
  }

  .home-banner .content h1 br {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-banner {
    height: auto;
	  background :#01067b;
  }
  .home-banner img {
    height: 250px;
  }
}

@media (max-width: 576px) {
	.home-banner {
 	  background :#01067b;
  }
  .home-banner .content h1 {
    font-size: 36px;
  }

  .home-banner img {
    height: 220px;
  }
}

@media (max-width: 382px) {
		.home-banner {
 	  background :#01067b;
  }
  .home-banner .content h1 {
    font-size: 32px;
  }
}

@media (max-width: 368px) {
  .home-banner .home-btn .btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}
/* End Home Banner */

/* Breadcrumb */
.breadcrumb {
  background: linear-gradient(86.65deg, #b61c1c -31.41%, #01067b 98.91%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.breadcrumb h2 {
  font-size: 42px;
  color: var(--white-color);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.breadcrumb ul li a {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.breadcrumb .seprator {
  font-size: 20px;
  color: var(--white-color);
}

.breadcrumb .big-font {
  font-size: 100px;
  color: #ffffff0d;
  position: absolute;
  right: 10%;
  bottom: 0;
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .breadcrumb {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .breadcrumb h2 {
    font-size: 40px;
  }

  .breadcrumb .big-font {
    font-size: 70px;
  }
  .breadcrumb .big-font {
    right: 3%;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    height: 230px;
    text-align: center;
  }

  .breadcrumb h2 {
    font-size: 32px;
  }

  .breadcrumb ul li a {
    font-size: 16px;
  }

  .breadcrumb-hide {
    display: none;
  }
}

@media (max-width: 576px) {
  .breadcrumb {
    height: 200px;
  }

  .breadcrumb .big-font {
    font-size: 50px;
  }
}

@media (max-width: 414px) {
  .breadcrumb .big-font {
    font-size: 40px;
  }
}

@media (max-width: 340px) {
  .breadcrumb h2 {
    font-size: 30px;
  }
}
/* End Breadcrumb */

/* About Us */

.about-us img {
  width: 100%;
}

.about-us .section-title h1 {
  margin-bottom: 15px;
}

.about-us .row {
  display: flex;
  align-items: center;
}

.about-us .content h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
	font-weight: 800;
}

.about-us .content p {
  margin-bottom: 10px;
}
.about-us .btn {
  margin-top: 10px;
}

.about-us .title-for-show {
  display: none;
}

@media (max-width: 1514px) {
  .about-us .content h2 {
    font-size: 36px;
  }
}

@media (max-width: 1310px) {
  .about-us .content h2 {
    font-size: 32px;
  }
}

@media (max-width: 1200px) {
  .about-us .title-for-hide {
    display: none;
  }

  .about-us .title-for-show {
    display: block;
  }

  .about-us img {
    width: 100%;
  }

  .about-us .content {
    margin-top: 20px;
  }
}

@media (max-width: 1170px) {
  .about-us .content h2 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .about-us .row {
    flex-direction: column;
  }

  .about-us .content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about-us .content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-us .content h2 {
    font-size: 22px;
  }
  /* .about-us .btn {
    margin-top: 0;
  } */
}

@media (max-width: 490px) {
  .about-us img {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .about-us img {
    width: 100%;
  }
}

@media (max-width: 332px) {
  .about-us .content h2 {
    font-size: 20px;
  }

  .about-us img {
    width: 100%;
    height: 370px;
  }
}

/* End About Us */


/* Our Statement */
.our-statement{
  background-color: var(--bg-color);
}

.our-statement .tab-content-images img {
  width: 100%;
  border-radius: 10px;
  height: 500px;
}

.our-statement .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-statement .tab-details h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.our-statement .tab-details p {
  margin-bottom: 20px;
}

.our-statement .tab-details ul li {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-statement .tab-details ul li i {
  margin: 0 10px 0 0;
}

.our-statement .tab-style-01 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px 0 40px 0;
}

.our-statement .tab-style-01 ul li a {
  text-align: center;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 40px;
  border-radius: 10px;
  transition: all 0.3s linear;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
}

.our-statement .tab-style-01 ul li a:hover {
  color: var(--primary-color);
}

.our-statement .tab-pane {
  display: none;
}

.our-statement .tab-pane.active {
  display: block;
}

.our-statement .tab-style-01 ul li.active a {
  color: var(--secondary-color);
  /* padding: 10px 40px; */
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s linear;
  transform: translateY(-4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.our-statement .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-statement .tab-pane.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.4s ease;
}

.our-statement .tab-details h2 {
    margin: 10px 0 15px 0;
    color: var(--primary-color);
    font-size: 42px;
}

@media (max-width: 1350px) {
  .our-statement .tab-details h2 {
    font-size: 38px;
  }
}

@media (max-width: 1310px) {
  .our-statement .tab-details h2 {
    font-size: 34px;
  }
}

@media (max-width: 1200px) {
  .our-statement .tab-details h2 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .our-statement .tab-content-images img {
    height: 300px;
    margin-bottom: 30px;
  }

  .our-statement .row {
    flex-direction: column;
  }

  .our-statement .tab-style-01 ul {
    gap: 12px;
  }

  .our-statement .tab-style-01 ul li a {
    padding: 10px 30px;
    font-size: 16px;
  }

  .our-statement .tab-style-01 ul {
    margin: 0 0 20px 0;
  }
}

@media (max-width: 768px) {
  .our-statement .tab-details h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .our-statement .tab-details h2 {
    font-size: 22px;
  }

  .our-statement .tab-content-images img {
    height: 200px;
    margin-bottom: 20px;
  }

  .our-statement .tab-style-01 ul {
    gap: 10px;
  }

  .our-statement .tab-style-01 ul li a {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 332px) {
  .our-statement .tab-details h2 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .our-statement .row {
    flex-direction: column;
  }
}
/* End Our Statement*/

/* Industries We Serve */
.industries {
  background: #01067b1a;
}

.page-insudtries{
  background-color: transparent;
}

.industries .card {
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 10px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.industries .card .info {
  padding: 20px 0;
  text-align: center;
}

.industries .card .image {
  overflow: hidden;
  border-radius: 5px;
	height: 230px;
}

.industries .card img {
  width: 100%;
  height: 230px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}

.industries .card:hover img {
  transform: scale(1.1);
}

.industries .card .info h3 {
  font-size: 26px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: capitalize;
	font-family: "K2D", serif;
}

.industries .card .info p {
  margin: 15px 0;
  color: var(--black-color);
}

@media (max-width: 1200px) {
  .industries .card {
    padding: 15px;
  }

  .industries .card .info h3 {
    font-size: 24px;
  }
}


@media (max-width: 1060px) {
  .industries .card .info h3 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .industries .card {
    padding: 10px;
  }
  .industries .card .info h3 {
    font-size: 24px;
  }
}


@media (max-width: 660px){
  .industries .card .info h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .industries .card .info h3 {
    font-size: 22px;
  }
}
/* End Industries We Serve */

/* Manufacturing Image */
.manufacturing-image {
  padding: 0;
  padding-top: 30px;
}

.manufacturing-image h2 {
  display: none;
}

.manufacturing-image img {
  width: 100%;
  
  border-radius: 10px;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  .manufacturing-image img {
    
  }
}

@media (max-width: 992px) {
  .manufacturing-image img {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .manufacturing-image {
    padding-top: 15px;
  }

  .manufacturing-image .container {
    width: 100%;
  }

  .manufacturing-image h2 {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .manufacturing-image img {
    
  }

  .manufacturing-image h2 {
    font-size: 34px;
  }
}

@media (max-width: 460px) {
  .manufacturing-image h2 {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .manufacturing-image h2 {
    font-size: 26px;
  }
}

@media (max-width: 350px) {
  .manufacturing-image h2 {
    font-size: 24px;
  }
}
/* End Manufacturing Image */

/* Manufacture Details */
.manufacture-details .area {
  margin-bottom: 30px;
}

.manufacture-details h2 {
  font-size: 24px;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.manufacture-details p {
  margin-bottom: 10px;
}

.manufacture-details img {
  width: 100%;
  height: 280px;
}

.manufacture-details ul {
  margin: 15px 0;
}

.manufacture-details ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.manufacture-details .for-align-center {
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .manufacture-details .for-align-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .manufacture-details img {
    height: 300px;
  }

  .manufacture-details .area {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .manufacture-details img {
    height: auto;
  }
}

@media (max-width: 576px) {
  .manufacture-details img {
    height: 200px;
  }

  .manufacture-details .area {
    margin-bottom: 15px;
  }
  .manufacture-details h2 {
    margin-bottom: 5px;
  }
}
/* End Manufacture Details */

/* Counter */

.counter .content-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding: 80px 40px;
  border-radius: 30px 30px 0 0;
}

.counter .content-area .btn {
  border: 1px solid transparent;
  transition: 0, 3s ease-in-out;
}

.counter .content-area .btn:hover {
  border: 1px solid var(--white-color);
}

.counter .content-area h2 {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 600;
}

.counter .counter-area {
  background-color: var(--white-color);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-top: -20px;
}

.counter .counter-area .box {
  padding: 60px 30px;
  text-align: center;
  position: relative;
}

.counter .counter-area .box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 150px;
  background-color: var(--primary-color);
  right: 0;
  top: 30px;
}

.counter .counter-area .box-four::before {
  background-color: transparent;
}

.counter .counter-area .box h4 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary-color);
font-family: "K2D", serif;
}

.counter .counter-area .box h6 {
  text-transform: capitalize;
  color: var(--primary-color);
  font-size: 18px;
}

@media (max-width: 1300px) {
  .counter .content-area h2 {
    font-size: 46px;
  }
}

@media (max-width: 1200px) {
  .counter .counter-area .box {
    padding: 50px 20px;
  }

  .counter .content-area h2 {
    font-size: 42px;
  }

  .counter .counter-area .box h6 {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .counter .counter-area .box {
    padding: 30px 20px;
  }

  .counter .counter-area .box::before {
    height: 100px;
  }



  .counter .content-area {
    text-align: center;
    flex-direction: column;
    gap: 0;
    row-gap: 30px;
  }

  .counter .content-area {
    padding: 50px 30px;
  }

  .counter .counter-area .box-two::before {
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .counter .content-area {
    padding: 40px;
  }

  .counter .content-area h2 {
    text-align: center;
  }

  .counter .content-area h2 br {
    display: none;
  }

  .counter .counter-area .box {
    padding: 20px;
  }

  .counter .counter-area .box::before {
    height: 90px;
    top: 20px;
  }
}

@media (max-width: 576px) {
  .counter .content-area {
    border-radius: 20px 20px 0 0;
  }

  .counter .counter-area {
    border-radius: 20px;
  }

  .counter .content-area h2 {
    font-size: 30px;
  }

  .counter .content-area {
    padding: 40px 10px;
  }

  .counter .counter-area .box {
    border-bottom: 1px solid var(--primary-color);
  }

  .counter .counter-area .box::before {
    background-color: transparent;
  }

  .counter .counter-area .box-four {
    border-bottom: 0;
  }
}

@media (max-width: 415px) {
  .counter .content-area h2 {
    font-size: 26px;
  }
}
/* End Counter */

/* Our Products */
.page-related-product {
  background-color: transparent !important;
}

.our-products {
  background: #01067b1a;
}

.our-products .box {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 1;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.our-products .box img {
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  display: block;
  transition: 0.3s ease-in-out;
}

.our-products .box:hover img {
  transform: scale(1.1);
}

.our-products .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.our-products .box h3 {
	font-family: "K2D", serif;
  margin: 15px 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--primary-color);
}

.page-related-product .slick-dots li button:before {
  height: 5px;
  color: transparent;
  background-color: var(--secondary-color);
}

.page-related-product .slick-dots li.slick-active button:before {
  color: transparent;
}

@media (max-width: 1310px) and (min-width: 1200px) {
  .our-products .box h3 {
    font-size: 17px;
  }

  .our-products .box {
    padding: 15px;
  }

  .our-products .box img {
    max-width: 90px;
  }

  .our-products .box::before {
    height: 160px;
  }
}

@media (max-width: 992px) {
  .our-products .box h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .our-products .box h3 {
    margin: 15px 0;
  }

  .our-products .col-xxs-12 {
    padding: 0 35px;
  }
}

@media (max-width: 768px) and (min-width: 440px) {
  .our-products .box::before {
    top: -140px;
    height: 320px;
  }
}

/* End Our Products */

/* Product Details */
.product-details img {
  width: auto;
  height: 450px;
  border-radius: 10px;
}
.product-image {
	display: flex;
    justify-content: center;
    align-items: center;
}

.product-details .details-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-details .details-section h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

.product-details .price {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: "K2D", serif;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
}

.product-details .price span {
  font-weight: bold;
}

.product-details .quote-button {
  padding: 5px 10px;
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
}

.product-details .product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px 0;
}

.product-details .product-table td {
  padding: 10px 0;
  font-size: 20px;
  border-bottom: 1px solid #b61c1c40;
}

.product-details .product-table td:first-child {
  color: var(--primary-color);
  font-weight: bold;
}

.product-details .details-section .btn {
  width: 100%;
}

.product-details .for-tag-show {
  display: none;
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

@media (max-width: 1420px) {
  .product-details .details-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 1344px) {
  .product-details img {
    height: 430px;
  }
  .product-details .details-section h2 {
    font-size: 32px;
  }
  .product-details .product-table td {
    font-size: 18px;
  }
}

@media (max-width: 1370px) {
  .product-details .details-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .product-details .details-section h2 {
    font-size: 28px;
  }

  .product-details .product-table td {
    font-size: 16px;
  }

  .product-details .price {
    font-size: 18px;
  }
}

@media (max-width: 1120px) {
  .product-details .details-section h2 {
    font-size: 26px;
  }

  .product-details img {
    height: 410px;
  }
}

@media (max-width: 1045px) {
  .product-details .details-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .product-details .for-tag-hide {
    display: none;
  }

  .product-details .for-tag-show {
    display: block;
  }

  .product-details img {
    height: 300px;
    margin-bottom: 15px;
  }

  .product-details .details-section h2 {
    font-size: 32px;
  }

  .product-details .product-table {
    margin: 15px 0 20px 0;
  }

  .product-details .details-section h3 {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .product-details img {
    height: 250px;
  }

  .product-details .details-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .product-details img {
    height: 200px;
  }

  .product-details .for-tag-show {
    font-size: 28px;
  }

  .product-details .product-table td {
    font-size: 16px;
  }

  .product-details .details-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 362px) {
  .product-details .price {
    gap: 10px;
  }
}
/* End Product Details */

/* Product More Info */
.product-more-info h2 {
  font-size: 24px;
  color: var(--primary-color);
  text-transform: capitalize;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.product-more-info table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px 0;
}

.product-more-info table td {
  padding: 8px 0;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}

.product-more-info table td:first-child {
  color: var(--primary-color);
  font-weight: bold;
}

.product-more-info .for-pop-family {
  font-family: "K2D", serif;
}

@media (max-width: 992px) {
  .product-more-info h2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .product-more-info table {
    margin: 0 0 30px 0;
  }
}

@media (max-width: 620px) {
  .product-more-info h2 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .product-more-info h2 {
    font-size: 18px;
  }
  .product-more-info table td {
    font-size: 16px;
  }
}

@media (max-width: 410px) {
  .product-more-info h2 {
    font-size: 18px;
  }
}
/* End Product More Info */

/* Our Clients  */
.our-clients .client {
  border: 1px dashed var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-clients img {
  width: 100%;
  /* height: 120px; */
  transition: 0.3s ease-in-out;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burn;
}

.our-clients .client:hover img {
  transform: scale(0.9);
}
/* End Our Clients  */

/* Quality Assurance */
.quality-assurance img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

.quality-assurance .row {
  display: flex;
  align-items: center;
}

.quality-assurance .even-area {
  display: flex;
  flex-direction: row-reverse;
}

.quality-assurance h3 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.quality-assurance h3 span {
  color: var(--secondary-color);
}

.quality-assurance h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.quality-assurance p {
  margin-bottom: 15px;
}

@media (max-width: 1200px) {
  .quality-assurance h3 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .quality-assurance .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .quality-assurance img {
    height: 300px;
    margin-bottom: 20px;
  }

  .quality-assurance .row:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .quality-assurance img {
    height: 250px;
    margin-bottom: 20px;
  }

  .quality-assurance h3 {
    font-size: 32px;
  }

  .quality-assurance h3 br {
    display: none;
  }
}

@media (max-width: 576px) {
  .quality-assurance img {
    height: 200px;
    margin-bottom: 20px;
  }

  .quality-assurance h3 {
    font-size: 26px;
  }

  .quality-assurance h4 {
    font-size: 18px;
  }
}

@media (max-width: 385px) {
  .quality-assurance .section-title h1 {
    font-size: 20px;
  }
}
/* End Quality Assurance */

/* Certificate */
.certificate .box {
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  padding: 12px;
  text-align: center;
}

.certificate .box img {
  width: 100%;
  margin-bottom: 10px;
}

.certificate .box h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}

@media (max-width: 1200px) and (min-width: 992px) {
  .certificate .box h3 {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .certificate .box {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .certificate .box h3 {
    font-size: 16px;
  }

  .certificate .box {
    padding: 5px;
  }
}
/* End Certificate */

/* Latest News & Events */
.news-event .details-area {
  padding: 30px;
  background: linear-gradient(311.67deg, #0a3f81 2.38%, #0284cf 170.63%);
  border-radius: 10px;
  height: 525px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.news-event .details-area h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
}

.news-event .details-area p {
  margin: 25px 0;
  color: var(--white-color);
}

.news-event .card {
  background-color: var(--bg-color);
  border-radius: 10px;
  overflow: hidden;
}

.page-news-event .card {
  margin-bottom: 30px;
}

.news-event .card img {
  width: 100%;
  height: auto;
}

.news-event .card .content {
  padding: 15px;
}

.news-event .card .content h4 {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 14px;
  font-family: "K2D", serif;
}

.news-event .card .content h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 10px 0;
}

.news-event .card .content p {
  margin-bottom: 15px;
  color: var(--black-color);
}

.news-event .slick-dots li button:before {
  height: 5px;
  color: transparent;
  background-color: var(--secondary-color);
}

.news-event .slick-dots li.slick-active button:before {
  color: transparent;
}

@media (max-width: 1760px) {
  .news-event .card .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 1645px) {
  .news-event .card .content h2 {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
}

@media (max-width: 1400px) {
  .news-event .details-area h2 {
    font-size: 30px;
  }

  .news-event .card .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 1500px) and (min-width: 1200px) {
  .page-news-event .col-lg-3 {
    width: 33.33333333333333%;
  }
}

@media (max-width: 1240px) {
  .news-event .details-area h2 {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .news-event .details-area {
    height: auto !important;
    margin-bottom: 30px;
  }

  .news-event .card .content h2 {
    font-size: 20px;
  }
}

@media (max-width: 1134px) {
  .news-event .card .content h2 {
    font-size: 20px;
  }

  .news-event .card .content {
    padding: 15px;
  }

  .news-event .card img {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 992px) {
  .news-event .card .content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .news-event .details-area h2 {
    font-size: 26px;
  }

  .news-event .card {
    margin-bottom: 30px;
  }
  .news-event .row > [class*="col-"]:last-of-type .card {
    margin-bottom: 0;
  }

  .page-news-event .row > [class*="col-"]:last-of-type .card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .news-event .details-area {
    padding: 30px 20px;
  }
  .news-event .details-area p {
    margin: 20px 0;
  }

  .news-event .details-area h2 {
    font-size: 24px;
  }
}
/* End Latest News & Events */

/* News Events Info */
.news-events-info img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-bottom: 15px;
}

.news-events-info h3 {
  color: var(--primary-color);
  font-size: 42px;
  margin-bottom: 15px;
}

.news-events-info .news-user-date {
  font-family: "K2D", serif;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-left: 8px;
}

.news-events-info .news-user-date h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}

.news-events-info .news-user-date h4:first-child:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background-color: var(--secondary-color);
  right: -15px;
  bottom: 0;
}

.news-events-info .news-user-date h4 i {
  color: var(--primary-color);
}

.news-events-info p {
  margin-bottom: 15px;
  color: var(--black-color);
}

.news-events-info ul {
  padding-left: 10px;
  margin: 15px 0;
}

.news-events-info ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

.news-events-info ul li i {
  color: var(--secondary-color);
}

@media (max-width: 1400px) {
  .news-events-info h3 {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .news-events-info h3 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .news-events-info h3 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .news-events-info h3 {
    font-size: 30px;
  }
}

@media (max-width: 515px) {
  .news-events-info h3 {
    font-size: 28px;
  }
}

@media (max-width: 475px) {
  .news-events-info h3 {
    font-size: 24px;
  }

  .news-events-info .news-user-date h4 {
    font-size: 14px;
  }

  .news-events-info .news-user-date {
    flex-direction: column;
    gap: 0;
    row-gap: 10px;
    align-items: flex-start;
  }

  .news-events-info .news-user-date h4:first-child:before {
    content: none;
  }
}

@media (max-width: 475px) {
  .news-events-info h3 {
    font-size: 22px;
  }
}
/* Container */
.search-area {
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.search-area .search-bar {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
}

.search-area .search-bar input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-area .search-bar button {
  background-color: #bf0d3e;
  border: none;
  padding: 8px 10px;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-area .categories-header {
  background-color: #bf0d3e;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px 5px 5px 5px;
}

.search-area .category-item {
  padding: 12px 15px;
  background-color: var(--white-color);
  margin: 10px;
}

.search-area .category-item a {
  font-size: 16px;
  color: #333;
  transition: 0.3s ease-in-out;
  position: relative;
}

.search-area .category-item:last-child {
  border-bottom: none;
}

.news-events-info .recent-post {
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.news-events-info .recent-post-header {
  background-color: #bf0d3e;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
}

.news-events-info .recent-post .post-date {
  margin-bottom: 0 !important;
}

.news-events-info .post-list {
  display: flex;
  flex-direction: column;
}

.news-events-info .recent-post a:not(:last-child) {
  border-bottom: 1px solid var(--primary-color);
}

.news-events-info .post-item {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.news-events-info .post-item:last-child {
  border-bottom: none;
}

.news-events-info .post-image {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  object-fit: cover;
  margin-bottom: 0;
}

.news-events-info .post-title {
  font-size: 16px !important;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.news-events-info .post-date {
  font-size: 12px !important;
  color: var(--secondary-color);
}

@media (max-width: 1200px) and (min-width: 576px) {
  .news-events-info .post-title {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
  .news-events-info .post-date {
    font-size: 14px !important;
  }
}

.call-card {
  width: 100%;
  height: 380px;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.call-card .card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.call-card .card-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white-color);
}

.call-card .call-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  color: #bf0d3e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.call-card .phone-number {
font-family: "K2D", serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
}

@media (max-width: 1200px) {
  .call-card {
    height: auto;
  }
  .call-card .call-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .news-events-info .content h3 {
    font-size: 24px;
  }

  .news-events-info .post-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .news-events-info img {
    height: 250px;
  }

  .news-events-info .content h3 {
    font-size: 22px;
  }
}

/* End News Events Info */

/* Testimonial */
.testimonial {
  background: #01067b1a;
}

.testimonial h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.testimonial h2 span {
  color: var(--secondary-color);
}

.testimonial .area {
  display: flex;
  gap: 40px;
  position: relative;
}

.testimonial .area::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50px;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-right: 80px solid var(--white-color);
}

.testimonial .author-image {
  margin-top: 80px;
}

.testimonial .content {
  background-color: var(--white-color);
  padding: 58px;
  border-radius: 10px;
}

.testimonial .content p {
  margin-bottom: 20px;
}

.testimonial .content h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.testimonial .content h5 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  color: grey;
}

.testimonial .author-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial .rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial .rating i {
  font-size: 16px;
  color: #ffd700;
}

.testimonial .slick-dots li button:before {
  height: 5px;
  color: transparent;
  background-color: var(--secondary-color);
}

.testimonial .slick-dots li.slick-active button:before {
  color: transparent;
}

@media (max-width: 1400px) {
  .testimonial .content {
    padding: 55px;
  }
}

@media (max-width: 1300px) {
  .testimonial .content {
    padding: 50px;
  }
}

@media (max-width: 1200px) {
  .testimonial .content {
    padding: 45px;
  }
  .testimonial h2 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .testimonial .content {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .testimonial h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .testimonial h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .testimonial .content {
    padding: 30px;
  }

  .testimonial h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .testimonial .area::before {
    top: 30px;
    left: 50px;
    border-top: 40px solid transparent;
    border-right: 60px solid var(--white-color);
  }
}

@media (max-width: 467px) {
  .testimonial .author-details,
  .testimonial .area {
    flex-direction: column;
    gap: 0;
    row-gap: 10px;
    align-items: flex-start;
  }

  .testimonial .author-image {
    margin-top: 0;
  }

  .testimonial .area {
    row-gap: 40px;
  }

  .testimonial .area::before {
    top: 30px;
    left: 25px;
    width: 0;
    height: 0;
    border-bottom: 50px solid var(--white-color);
    border-right: 40px solid transparent;
  }
}

@media (max-width: 400px) {
  .testimonial h2 {
    font-size: 28px;
  }
}
/* End Testimonial */

/* Info Area */
.info-area .section-title h1{
	font-family: "K2D", serif;
}

.info-area .box {
  font-family: "K2D", serif;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  text-align: center;
  padding: 20px;
  margin: 15px 0;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.info-area .box i {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  transition: color 0.3s;
}

.info-area .box h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.info-area .box h4 {
  /* margin-bottom: 10px; */
}

.info-area .box h4 a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: 0.3s ease-in-out;
}

.info-area .box h4 a:hover {
  color: var(--secondary-color);
}

@media (max-width: 1200px) {
  .info-area .box {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .info-area .box {
    padding: 20px;
    height: auto;
  }

  .info-area .contact-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .info-area .contact-title h2 {
    font-size: 24px;
  }
}

/* End Info Area */

/* Contact Us */
.contact-us{
  background-color: var(--bg-color);
}

.contact-us .content {
  margin-top: 20px;
}

.contact-us .contact-form {
  padding: 0;
}

.contact-us .content h2 {
  color: var(--primary-color);
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.contact-us .content p {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-us .content h2 {
    margin-bottom: 20px;
  }
  .contact-us .content {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .contact-us .content h2 {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .contact-us .content h2 {
    font-size: 26px;
  }
}
/* End Contact Us */

/* Contact Us Banner */
.contact-us-banner .container {
  background-color: var(--bg-color);
  border-radius: 30px;
  overflow: hidden;
}

.contact-us-banner .row {
  display: flex;
  align-items: center;
}

.contact-us-banner .content {
  background: linear-gradient(311.67deg, #0a3f81 2.38%, #0284cf 170.63%);
  padding: 180px 40px;
  border-radius: 30px;
}

.contact-us-banner .content h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-us-banner .content p {
  color: var(--white-color);
  text-align: justify;
}

.contact-form {
  padding: 40px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.contact-form .wpcf7{
	width: 100%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form form .wpcf7-form-control-wrap{
	flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 0;
	font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form .group p {
  display: flex;
  gap: 10px;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.contact-form .wpcf7-spinner{
	background-color: var(--primary-color);
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	border: 1px solid red;
	margin: 0;
	border-radius: 10px;
	color: red;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output{
		border: 1px solid var(--primary-color);
	margin: 0;
	border-radius: 10px;
	color: var(--primary-color);
}

@media (max-width: 1512px) {
  .contact-us-banner .content h2 {
    font-size: 32px;
  }
}

@media (max-width: 1300px) {
  .contact-us-banner .content h2 {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .contact-form {
    padding: 40px 20px;
  }

  .contact-us-banner .content {
    padding: 170px 30px;
  }

  .contact-form .group {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 992px) {
  .contact-us-banner .row {
    flex-direction: column;
  }

  .contact-us-banner .content {
    padding: 60px 40px;
  }
  .contact-us-banner .content h2 {
    font-size: 34px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 40px 0;
  }

  .contact-us-banner .content {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .contact-us-banner .container,
  .contact-us-banner .content {
    border-radius: 20px;
  }

  .contact-us-banner .content {
    padding: 30px 15px;
  }

  .contact-us-banner {
    padding: 30px 10px;
  }

  .contact-form {
    padding: 30px 0;
  }

  .contact-form .group p{
    flex-direction: column;
    gap: 0;
  }

	.contact-form .group p br{
		display: none;
	}
	
  .contact-us-banner .content h2 {
    font-size: 26px;
  }
}


@media (max-width: 430px) {
  
  .contact-us-banner .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 370px) {
  
  .contact-us-banner .content h2 {
    font-size: 20px;
  }
}
/* End Contact Us Banner */

/* Google Map */
.google-map iframe {
  width: 100%;
  height: 400px;
  vertical-align: middle;
  border: 0;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .google-map iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .google-map iframe {
    height: 300px;
  }
}
/* End Google Map */

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5px 20px;
  border-radius: 10px;
  color: var(--primary-color);
}

.pagination ul li {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid var(--primary-color);
}

.pagination ul li.active {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
}

.pagination .bg-tran {
  cursor: auto;
}

@media (max-width: 400px) {
  .pagination ul {
    gap: 10px;
  }
}
/* End Pagination */

/* faq */
.faq-section {
  background-color: var(--bg-color);
}

.faq-section .faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section h1.faq-title {
  text-align: center;
  margin: 20px 0;
}

.faq-section .faq_container {
  background-color: var(--white-color);
  margin: 10px 0;
  overflow: hidden;
  border-radius: 10px;
}

.faq-section .faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-section .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.faq-section .answer {
  padding: 0 10px 20px;
  line-height: 2rem;
  font-size: 16px;
}

.faq-section .fqa_headline_container h2 span {
  font-weight: 700;
}

.faq-section .faq_question-text h4 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}

.faq-section .icon-faq.active {
  background: var(--secondary-color);
}

.faq-section .icon:hover {
  cursor: pointer;
}

.faq-section .icon-shape {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.faq-section .icon-faq .icon-shape::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.faq-section .icon-faq .icon-shape::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.faq-section .icon-faq .icon-shape.active::before {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}

.faq-section .icon-faq .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}

@media (max-width: 992px) {
  .faq-section .primary-title {
    margin-top: 30px;
  }

  .faq-section .section-title {
    text-align: center;
  }

  .faq-section .faq_question-text h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-section .faq_question-text h4 {
    font-size: 16px;
  }

  .faq-section .section-title h1 {
    text-align: center;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .faq-section .answer p {
    font-size: 14px;
  }

  .faq-section .faq_container .faq_question-text h4 {
    height: auto !important;
  }
}
/* faq end */

/* Footer */
footer {
	font-family: "K2D", serif;
  padding: 30px 0;
  background:linear-gradient(311.67deg, #0a3f81 2.38%, #0a3f81 170.63%);
}

footer .footer-logo img {
  width: 150px;
}

footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

footer .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .social-icons i {
  width: 35px;
  height: 35px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  transition: 0.3s ease-in-out;
}

footer .social-icons i:hover {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

footer hr {
  border: 0;
  margin: 20px 0;
  height: 1px;
  background-color: aliceblue;
}

footer .footer-content {
  margin: 15px 0;
}

footer .footer-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: capitalize;
}

footer ul {
  margin: 20px 0;
}

footer ul li {
  margin-bottom: 12px;
  color: var(--white-color);
}

footer ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

footer ul li a:hover {
  color: var(--secondary-color);
}

footer .footer-content .indus-list {
  display: flex;
  gap: 40px;
}

footer .footer-address ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .footer-address ul li i {
  font-size: 20px;
}

footer .footer-address .font-pop a {
  font-weight: 400;
}

footer .copyright h5 a {
  font-size: 18px;
  color: var(--white-color);
  font-weight: 500;
}

footer p{
	font-family: "K2D", serif;
}

@media (max-width: 1200px) and (min-width: 992px) {
  footer .for-center-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1110px) and (min-width: 992px) {
  footer ul li a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  footer .footer-logo img {
    width: 130px;
  }

  footer .social-icons i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
}

@media (max-width: 445px) {
  footer .footer-content .indus-list {
    flex-direction: column;
    gap: 0;
  }
}
/* End Footer */

/* Fixed Icon */
.fixed-icon {
  position: fixed;
  bottom: 50px;
}

.fixed-icon {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-icon .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-icon .icon {
  background-color: var(--secondary-color);
}

.fixed-icon .icon i {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.fixed-icon .call-icon i {
  font-size: 20px;
}

.fixed-icon .icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* End Fixed Icon */


 .gp-main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 20px;
        }

        .diamond {
            width: 250px;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            font-weight: bold;
            position: relative;
			border-radius: 10px;
			border-radius: 50% 50% 0 50%;
        }

        .diamond.blue {
            background-color: #2c3e91;
        }

		
        .diamond.red {
            background-color: #c00;
        }

        .diamond span {
            margin-top: 5px;
			padding: 0 25px;
			font-size: 20px;
        }

        .diamond .icon {
            font-size: 50px;
            margin-bottom: 5px;
        }

        .arc {
            position: absolute;
            width: 60px;
            height: 30px;
            border-top: 2px solid;
            border-radius: 50%;
        }

        .arc.top {
            top: 40px;
            left: 0%;
            transform: translateX(-50%);
        }

        .arc.bottom {
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
        }

        .blue .arc {
            border-color: red;
        }

        .red .arc {
            border-color: blue;
        }

		@media (max-width: 1400px) {
			.gp-main {
				justify-content: center;
			}
		}

        @media (max-width: 600px) {
            .container {
                flex-direction: column;
            }
        }

/* footer top */
.footer-awards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-awards-img img {
  width: 100px;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center !important;
  }
}
/* footer top end */

/*product qaulity start*/
.product-qality-info p {
  font-size: 22px !important;
  line-height: 32px !important;
  text-align: center;
}

.product-qality-info p span {
  color: var(--secondary-color);
  font-weight: 600;
}
/*product qaulity end*/

/* product test */
.product-test-single-item {
  text-align: center;
  background-color: #01067b1a;
  padding: 30px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.product-test-single-item-img {
  margin-bottom: 15px;
}
.product-test-single-item-img img {
  width: 70px;
}
.product-test-single-item h3 {
  font-size: 22px !important;
  margin-bottom: 15px;
}
.product-test-single-item p {
  font-size: 20px !important;
}

@media (max-width: 992px) {
  .product-test {
    padding: 30px 0 0 0;
  }
  .product-test-single-item {
    margin-bottom: 30px;
  }
}
/* product test end */


/* Updated Css Start */
.gallery-single-item {
  margin-bottom: 30px;
}
.gallery-single-item img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.popup.show {
  opacity: 1;
  transform: scale(1);
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  cursor: pointer;
  background: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 50%;
}
.prev-btn,
.next-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10000;
  display: none;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .prev-btn,
  .next-btn {
    font-size: 20px;
    padding: 10px 15px;
  }
}
/* gallery end */

.footer-awards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-awards-img img {
  width: 100px;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center !important;
  }
}

/*product qaulity start*/
.product-qality-info p {
  font-size: 22px !important;
  line-height: 32px !important;
  text-align: center;
}

.product-qality-info p span {
  color: var(--secondary-color);
  font-weight: 600;
}
/*product qaulity end*/

/* product test */
.product-test-single-item {
  text-align: center;
  background-color: #01067b1a;
  padding: 30px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.product-test-single-item-img {
  margin-bottom: 15px;
}
.product-test-single-item-img img {
  width: 70px;
}
.product-test-single-item h3 {
  font-size: 22px !important;
  margin-bottom: 15px;
}
.product-test-single-item p {
  font-size: 20px !important;
}

@media (max-width: 992px) {
  .product-test {
    padding: 30px 0 0 0;
  }
  .product-test-single-item {
    margin-bottom: 30px;
  }
}
/* product test end */

/* pagination css */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 5px;
}

.pagination li {
  margin: 0;
}

.pagination a {
  text-decoration: none;
  color: var(--black-color);
  padding: 10px 15px;
  display: block;
  border: 1px solid var(--black-color);
  text-align: center;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.pagination a:hover {
  background-color: #ddd;
}

.pagination .active a {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: bold;
  border: 1px solid var(--primary-color);
}

@media (max-width: 600px) {
  .pagination {
    gap: 3px;
  }

  .pagination a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    padding: 8px;
  }
}
/* pagination css end */



/* New Css */

.industries .slick-dots li button:before {
  height: 5px;
  color: transparent;
  background-color: var(--secondary-color);
}

.industries .slick-dots li.slick-active button:before {
  color: transparent;
}

.copyright {
  display: flex;
  justify-content: space-between;
}

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

.fba a {
  color: var(--white-color);
}

@media (max-width: 768px) {
  .copyright {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}

.disclaimer-info h3 {
  font-size: 36px;
  margin: 10px 0 20px 0;
}
.disclaimer-info p {
  font-size: 20px !important;
  margin-bottom: 20px;
}
.disclaimer-info ul {
  padding: 0 0 0 30px;
}
.disclaimer-info ul li {
  list-style: disc;
  font-size: 20px;
  margin-bottom: 20px;
}
.sitemap-info li {
  margin: 20px 0;
}
.sitemap-info li a {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 700;
}

.new-counter-info h3 {
/*   font-family: Raleway; */
/*   font-weight: 600; */
  font-size: 48px;
  line-height: 150%;
  color: var(--primary-color);
}

.new-counter-info p {
  font-family: Raleway;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 150% !important;
  margin-bottom: 20px;
}

.new-counter-items {
  padding: 10px;
  background:linear-gradient(311.67deg, #0a3f81 2.38%, #50bef9 170.63%);
  margin-bottom: 30px;
  text-align: left;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.new-counter-items span {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: var(--white-color);
}

.new-counter-items p {
  margin-top: 0px;
    margin-bottom: 0px;
    color: var(--white-color);
    font-size: 15px !important;
}

.new-cc {
  display: flex;
  align-items: center;
}

.video-main iframe {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media (max-width: 992px) {
  .new-cc {
    flex-direction: column;
  }
  .new-counter-info {
    margin-bottom: 30px;
  }
  .video-main2 {
    margin-top: 30px;
  }
  .new-product-detail {
    margin-top: 30px;
  }
}

.new-product-detail-image img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  aspect-ratio: 1/0.7;
  object-fit: cover;
}

.new-product-detail h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.new-product-detail p {
  font-weight: 500 !important;
  font-size: 24px !important;
  line-height: 100% !important;
  color: var(--primary-color);
  margin: 35px 0;
}

.new-product-detail p strong {
  font-weight: 700 !important;
}

.new-product-detail p i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.new-product-more-info h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: capitalize;
}
.new-product-more-info p {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 25px !important;
  margin-bottom: 20px;
}
.new-product-more-info p strong {
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 25px !important;
}

.color-option {
  margin-bottom: 20px;
}

.color-option h3 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.color-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  max-width: 400px;
}

.color {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.ds-first {
  font-weight: 600 !important;
  font-size: 26px !important;
  line-height: 100%;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.ds-sec {
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.doorstep-items {
  padding: 20px;
}
.doorstep-items h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.doorstep-items p {
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 150%;
  color: #01067b80;
}

.doorstep-items-btw {
  border-left: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
}

@media (max-width: 992px) {
  .doorstep-items-btw {
    border: 0;
  }
}

.doorstep-second {
  background-image: url(/elham/wp-content/uploads/2025/03/truc.jpeg);
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
padding: 60px 0 30px 0;
}

.ds-info-f {
  visibility: hidden;
}

.ds-info-s {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.ds-info-s-single {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px 80px;
}
.ds-info-s {
  background-color: #01067b80;
}
.ds-info-s h3 {
  background-color: var(--secondary-color);
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 150%;
  color: var(--white-color);
  text-align: center;
}

.ds-info-s-single p {
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 150%;
  color: var(--white-color);
}

@media (max-width:576px) {
  .ds-info-s-single {
    padding: 20px;
  }
  .ds-sec {
    font-size: 35px;
  }
}

.awward-images {
  text-align: center;
}

.awward-images-br {
  border-left: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
}

.awward-images img {
  width: 60%;
}

@media (max-width:992px) {
  .awward-images {
    margin-top: 20px;
  }
}

@media (max-width:768px) {
  .awward-images-br {
    border: 0;
  }
}

/* why choose us section */
.wmuu-title h3 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.wmuu-title p {
  font-size: 18px !important;
  font-weight: 500 !important;
  margin-bottom: 15px !important;
}
.sticky {
  position: sticky;
  top: 100px;
}
/* .sticky-content h3{
  font-size: 25px;
  margin: 10px 0;
} */
.our-team {
  background:linear-gradient(86.65deg, #b61c1c -31.41%, #01067b 98.91%);
  padding: 35px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.our-team img {
  width: 70px;
}
.our-team {
  display: flex;
  align-items: center;
  align-items: start;
  gap: 30px;
  color: var(--white-color);
  font-size: 22px;
  margin-bottom: 12px;
}
.our-team span {
  font-size: 22px;
  /* margin: 15px 0; */
  display: inline-block;
}
.our-team p {
  color: var(--white);
  font-size: 18px !important;
  font-weight: 500 !important;
  margin-top: 10px !important;
}

@media (max-width: 992px) {
  .our-team-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .our-team {
    display: block !important;
    text-align:center;
  }
  .sticky {
    position: static;
  }
  .sticky-content {
    padding: 0 25px;
    margin-bottom: 25px;
  }
  .wmuu-title {
    margin-bottom: 30px;
  }
}
/*end why choose us section */


.gwp-section-info h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.gwp-section-info h2 span {
  color: var(--secondary-color);
}

.gwp-section-info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--black-color);
  margin-bottom: 20px;
}

.gwp-section-items {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.gwp-section-items-red {
  background-color: var(--secondary-color);
}

.gwp-section-items h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  color: var(--white-color);
}

.gwp-section-items-center {
  justify-content: center;
}

@media (max-width: 1400px) {
  .gwp-section-items img {
    width: 58px;
  }
  .gwp-section-items {
    padding: 30px 15px;
  }
  .gwp-section-items h3 {
    font-size: 20px;
  }
  .gwp-section-items-center {
    justify-content: flex-start;
  }
}

@media (max-width:992px) {
  .gwp-section-info {
    margin-bottom: 30px;
  }
  .gwp-section-info h2 {
    font-size: 36px;
  }
}

@media (max-width:992px) {
  .gwp-section-info h2 {
    font-size: 30px;
  }
}


.cintro-video iframe{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.new-counter {
  background-color: var(--bg-color);
}

.pagination a.last {
    width: 80px;
}
.pagination a, .pagination span {
    border-radius: 0 !important;
}


.rmbg-color-testi {
	background-color: var(--white-color);
}

/* .rmbg-color-testi .content {
	background-color: var(--bg-color);
}

.rmbg-color-testi .area::before {
	border-right: 80px solid var(--bg-color);
} */

section.industries {
    display: none;
}