/* Fonts start */
@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla/Karla-Regular.ttf');
  src: url('../fonts/karla/Karla-Regular.ttf?#iefix') format('TrueType'),
    url('../fonts/karla/Karla-Regular.ttf') format('TrueType');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla/Karla-Medium.ttf');
  src: url('../fonts/karla/Karla-Medium.ttf?#iefix') format('TrueType'),
    url('../fonts/karla/Karla-Medium.ttf') format('TrueType');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla/Karla-Bold.ttf');
  src: url('../fonts/karla/Karla-Bold.ttf?#iefix') format('TrueType'),
    url('../fonts/karla/Karla-Bold.ttf') format('TrueType');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla/Karla-SemiBold.ttf');
  src: url('../fonts/karla/Karla-SemiBold.ttf?#iefix') format('TrueType'),
    url('../fonts/karla/Karla-SemiBold.ttf') format('TrueType');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla/Karla-Light.ttf');
  src: url('../fonts/karla/Karla-Light.ttf?#iefix') format('TrueType'),
    url('../fonts/karla/Karla-Light.ttf') format('TrueType');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* second font start */
@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-Regular.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-Regular.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-Regular.ttf') format('TrueType');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-Medium.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-Medium.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-Medium.ttf') format('TrueType');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-SemiBold.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-SemiBold.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-SemiBold.ttf') format('TrueType');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-Bold.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-Bold.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-Bold.ttf') format('TrueType');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-ExtraBold.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-ExtraBold.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-ExtraBold.ttf') format('TrueType');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'playfair';
  src: url('../fonts/playfair/PlayfairDisplay-Black.ttf');
  src: url('../fonts/playfair/PlayfairDisplay-Black.ttf?#iefix') format('TrueType'),
    url('../fonts/playfair/PlayfairDisplay-Black.ttf') format('TrueType');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Fonts end */

/* Root start */
:root {
  /* Font style */
  --primary-font: 'Karla', sans-serif;
  --second-font: 'playfair', sans-serif;
  --black-color: #000000;
  --white-color: #ffffff;
  --primary-color: #353535;
  --p-tag-color: #7e7e7e;
  --red-color: #d9232d;
}

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

/* Root end */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

a {
  color: black;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.preloader img{
  animation: fadeInAnimation 1s infinite;
}

.loading__bar {
	position: relative;
	height: 5px;
	width: 12rem;
	background-color: rgb(169, 169, 169);
	border-radius: 1em;
	overflow: hidden;
}

.loading__bar::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, #fff5, rgba(230, 230, 230, 0.891));
	animation: loading-animation 1.3s infinite;
	border-radius: 1em;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}

.pdf-button{
  padding: 10px !important;
  margin: 0px 15px 0px 15px;
  background-color: var(--red-color);
  border: none;
  color: #fff !important;
}
.pdf-button:hover{
  background-color: #d9232d87;
}
/* Genral css start */
.img-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-cover {
  object-fit: cover;
  width: 100%;
}

.rounded-50 {
  border-radius: 50%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  font-family: var(--primary-font);
  font-size: 20px;
  line-height: 32px;
  color: var(--black-color);
  margin: 0;
}

.small {
  font-size: 16px;
}

/* Scroll top button */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: #e31e25;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background: rgb(253, 101, 101);
  color: white;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.whatsapp-button{
	position:fixed;
	width:60px;
	height:60px;
	bottom:15px;
	left:15px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-button:hover{
  color: #000000;
}
.brochure_download{
  position: fixed;
  top: 33%;
  right: 0px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex;
  flex-direction: column;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
}
.brochure_download_link{
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    height: 50px;
    margin-right: -150px;
    margin-bottom: 10px;
    padding: 10px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white !important;
    border-color: #46b8da;
    border-radius: 5px 0 0 5px;
    background-color: var(--red-color);
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 20px;
}
.brochure_download_link:hover{
  margin-right: 0;
  background-color: #b00009;
  -webkit-box-shadow: 0 2px 4px #7d7d7d;
  box-shadow: 0 2px 4px #7d7d7d;
}

.brochure_download_link i{
  padding-right: 20px;
}
.achievement img{
    width: 500px;
    height: 600px;
  }

/* header css start */

#header {
  background: var(--white-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header .logo img {
  max-height: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 500;
  color: #21252b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--red-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--red-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--black-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--white-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--red-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--red-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/* feature section css start */
.features-section {
  padding: 100px 0;
}

.feature-box {
  position: relative;
  transition: all .5s ease;
}

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

.feature-img img {
  width: 100%;
  height: 200px;
  transition: all .3s ease;
}

.feature-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature-text {
  border: 1px solid #e0e2ec;
  padding: 15px;
  position: relative;
  height: 270px;
}

.feature-text h4 {
  font-size: 22px;
  color: var(--black-color);
  text-transform: capitalize;
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 15px;
  line-height: 28px;
}


.base-header h3 {
  padding-bottom: 50px;
  margin: 0;
  position: relative;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 40px;
  line-height: 50px;
  color: var(--black-color);
  font-family: var(--primary-font);
  text-align: center;
}

/* feature section css end */

/* product section css start */
.product {
  padding: 20px 0 100px 0;
}

.product .nav-tabs {
  border: 0;
}

.product .nav-link {
  border: 0;
  padding: 25px 8px;
  color: #485664;
  background-color: var(--white-color);
  box-shadow: 0px 2px 15px rgb(25 119 204 / 10%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  text-align: center;
}

.product .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.product .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 0 0;
  font-family: var(--primary-font);
}

.product .nav-link.active {
  transition: 0.3s;
  background: #d9232d87;
}

.product .nav-link.active h4 {
  color: var(--black-color);
}

.product .tab-content {
  margin-top: 30px;
}

.tab-pane img {
  width: 100%;
}

/* product section css end */

/* offer section css start */
.social-section {
  padding: 70px 0;
  background: #f0f0f0;
}

.social-box {
  text-align: center;
}

.social-box h5 {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 25px;
  margin-top: 30px;
  font-weight: 700;
}

.social-box p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 18px;
  margin-top: 15px;
}

.offer-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.offer-img img {
  width: 100%;
  height: 450px;
}

.offer-img {
  position: relative;
}

.offer-text {
  position: absolute;
  top: 40px;
  left: 40px;
}

.offer-text h5 {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 35px;
  font-weight: 600;
}

.offer-text p {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 18px;
  margin-bottom: 25px;
}

.custom-btn {
  padding: 15px 25px;
  background-color: var(--white-color);
  border-radius: 5px;
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}

.custom-btn:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

/* offer section css end */

.cta-section {
  padding: 100px 0;
  background-image: url(../img/home-page-img/cta-img.jpg);
  background-repeat: no-repeat;
}

.cta-text {
  text-align: center;
}

.cta-text h3 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-text p {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  max-width: 770px;
  margin: 0 auto 40px;
}

/* Manufacture */

.mnf-section {
  background-image: url(../img/Manufacture.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  
}
.mnf-container{
  padding: 100px 0;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.mnf-text {
  text-align: center;
}

.mnf-text h3 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mnf-text p {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  max-width: 770px;
  margin: 0 auto 40px;
}

/* footer section css start */
.footer-section {
  width: 100%;
  padding: 100px 0 0;
  color: #fff;
  background: #fafafa;
}

.subfooter {
  width: 100%;
  padding: 35px 0;
  margin-top: 85px;
  background: #141414;
}

.subfooter p {
  color: #acaba9;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.subfooter a {
  color: #acaba9;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.footer-col-1 p {
  font-size: 15px;
  line-height: 28px;
  color: var(--black-color);
  margin-bottom: 20px;
  margin-top: 15px;
}

.footer-li li {
  display: inline-block;
  margin-right: 10px;
}

.footer-li li a i {
  color: black;
  font-size: 25px;
  transition: all .6s ease-in-out;
 
}

.footer-li li a i:hover {
  color: var(--red-color);
}

.widget-title {
  color: var(--black-color);
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 22px;
  margin-bottom: 30px;
  font-family: var(--primary-font);
 
}

.footer-col-2 ul li a {
  color: var(--black-color);
  font-size: 15px;
  font-family: var(--primary-font);
}

.footer-col-2 ul li {
  padding-bottom: 15px;
  transition: all .5s ease-in-out;
}

.footer-col-2 ul li:hover {
  padding-left: 15px;
}

.footer-col-2 ul li a i {
  font-size: 12px;
  color: var(--red-color);
  margin-right: 7px;
}

.footer-col-2 {
  padding-left: 50px;
}

.footer-col-33 p {
  font-size: 15px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-col-33 span {
  font-size: 15px;
  line-height: 22px;
  color: var(--white-color);
}

.footer-col-33 h6 {
  font-size: 15px;
  color: var(--white-color);
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-col-33 h5 {
  font-size: 15px;
  color: var(--white-color);
}

.col-4-p {
  font-size: 15px;
  line-height: 28px;
  color: var(--black-color);
  margin-bottom: 20px;
}

.email_field {
  background: var(--white-color);
  box-shadow: none;
  color: #ddd;
  line-height: 40px;
  padding-left: 20px;
  width: 100% !important;
  margin-top: 5px;
  margin-bottom: 15px;
  border: none;
  outline: none;
}

.submit-btn {
  display: inline-block;
  font-size: 16px;
  padding: 10px 25px;
  color: #fff;
  font-weight: 400;
  vertical-align: middle;
  background: var(--p-tag-color);
  border-radius: 50px;
}

.submit-btn:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.footer-section .container {
  position: relative;
}

.footer-logo {
  width: 85px;
}
.subfooter-inner{
  display: flex;
  justify-content: space-between;
}
/* footer section css end */

/* contact us css start */
.main-top {
  padding-top: 100px;
}

.header-img {
  padding: 150px 0;
  background-image: url(../img/home-page-img/header-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: 100%;
  text-align: center;
}

.header-title {
  position: relative;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .5px;
  font-size: 45px;
  line-height: 50px;
  color: var(--black-color);
  font-family: var(--primary-font);
}

.title-h4 {
  color: var(--black-color);
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.title-h4 a {
  color: var(--black-color);
}

.title-h4 a:hover {
  color: var(--red-color);
}

/* .contact-section {
  padding: 100px 0;
} */

.contact-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title h3 {
  font-weight: 700;
  font-size: 45px;
  color: var(--black-color);
  font-family: var(--primary-font);
  margin-bottom: 30px;
}

.contact-title p {
  color: var(--p-tag-color);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--primary-font);
  line-height: 30px;
  margin: auto;
  max-width: 800px;
}

/* .contact-mt {
  margin-top: 50px;
} */

.contact-form h4 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--primary-font);
  margin-bottom: 40px;
}

.con-field {
  outline: inherit;
  border-image: none;
  width: 100%;
  margin-bottom: 30px;
  padding: 5px 15px;
  line-height: 38px;
  border: none;
  background: #e9e9e9;
  height: auto;
  border-radius: 0;
  font-family: var(--primary-font);
  color: #61657a;
}

.black-bg {
  background-color: black;
  color: var(--white-color);
}

.contact-info {
  padding-left: 50px;
}

.contact-icon {
  display: flex;
  align-items: center;
}

.contact-icon label {
  padding-right: 8px;
}

.contact-icon i {
  font-size: 2.75rem;
  color: var(--red-color);
  margin-right: 20px;
}

.contact-icon p a {
  color: var(--p-tag-color);
}

.contact-icon span {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
}

.contact-icon p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.card-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.flip-card {
  background-color: transparent;
  height: 200px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  border-radius: 10px;
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card-front {
  background-color: #fff;
  color: black;
}

.flip-card-back {
  background-color: #ffffff;
  color: black;
  transform: rotateY(180deg);
}
/* contact us css end */

/* about us css start */
.about-section {
  padding: 100px 0;
}

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

.about-us {
  text-align: center;
}

.about-mt {
  margin-top: 100px;
}

.about-us h5 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--primary-font);
  margin: 25px 0;
}

.about-us p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  max-width: 850px;
  margin: auto;
}

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

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

.about-text {
  padding-left: 50px;
}

.about-text-left {
  padding-right: 50px;
}

.about-text h4 {
  color: var(--black-color);
  font-size: 28px;
  font-weight: 500;
  font-family: var(--primary-font);
  margin-bottom: 20px;
}

.about-text p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.about-text-left h4 {
  color: var(--black-color);
  font-size: 28px;
  font-weight: 500;
  font-family: var(--primary-font);
  margin-bottom: 20px;
}

.about-text-left p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

/* about us css end */

/* product page css start */
.abl-tube-section {
  padding: 100px 0;
  background-color: #e4e4e4;
}

.product-text h5 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  font-family: var(--primary-font);
  text-align: center;
}

.product-text p {
  font-family: var(--primary-font);
  color: var(--p-tag-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  max-width: 860px;
  margin: auto;
}

.product-mt {
  margin-top: 90px;
}

.tube-img h4 {
  color: var(--black-color);
  font-size: 27px;
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 20px;
}

.tube-text p {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 25px;
  text-align: justify;
}

.tube-text h6 {
  font-family: var(--primary-font);
  color: var(--red-color);
  font-size: 23px;
  font-weight: 500;
  margin-top: 20px;
}

.tube-text ul li {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}

.tube-text ul li i {
  padding-right: 10px;
  color: var(--red-color);
  font-size: 12px;
}

.img-pr {
  padding-right: 30px;
}

.img-pl {
  padding-left: 30px;
}

/* product page css end */


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 90px 0 0 0;
  position: relative;
}



.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-size: cover;
  background-repeat: no-repeat;
  height: 880px;
}

.slider-content {
  position: absolute;
  top: 30%;
  left: 10%;
}

.slider-content h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

.slider-content p {
  margin: 0 auto 50px auto;
  color: var(--white-color);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
  bottom: 90px;
  left: 0;
  width: 100%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--red-color);

}
.form-bg{
  background-color:white;
  border:1px solid rgb(244, 244, 244);
  padding: 50px 90px;
  margin: 0 280px;
}
label{
  font-size: 20px;
}
/* form input{
  width: 550px !important;
} */
form input:focus{

  border:1px solid #00000026 !important;
  
}
form textarea{
  border:1px solid #00000026 !important;
}

/* form textarea{
  width: 550px !important;
} */
.space{
  padding-bottom: 50px;
}
.pad-top{
  padding-top: 100px;
}
.contform{
  background-image: url(../img/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px 100px 0;
}
.contact-card{
  background: white;
  border-radius: 0.375rem;
  padding: 100px 40px 100px 40px;
}
.contact-card input{
  border: none;
  background-color: #E7E9EB;
}
.contact-card input:focus{
  border: none !important;
  background-color: #E7E9EB;
}
.contact-card textarea{
  border: none !important;
  background-color: #E7E9EB;
}
.contact-card textarea:focus{
  border: none !important;
  background-color: #E7E9EB;
}
.contact-card button{
  background-color: var(--red-color);
  border: none;
}
.contact-card button:hover{
  background-color: #d9232d87;
  border: none;
}
/* responsive css start */
@media (max-width: 1024px) {
  .feature-box {
    margin-bottom: 30px;
  }

  .feature-img img {
    height: 250px;
  }

  .product .nav-link h4 {
    font-size: 13px;
  }

  .product .nav-link {
    padding: 25px 0px;
  }

  .social-box {
    margin-bottom: 30px;
  }

  .contact-info {
    padding-left: 10px;
  }

  .contact-mt .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }

  .footer-section .col-sm-12 {
    flex: 0 0 auto;
    width: 50%;
  }

  .footer-col-2 {
    padding-left: 0px;
  }

  .product .nav-link h4 {
    font-size: 18px;
  }

  .footer-col-1 {
    margin-bottom: 30px;
  }

  .offer-img {
    margin-bottom: 25px;
  }

  .product {
    padding: 0px 0 100px 0;
  }

  .about-reverse {
    flex-direction: column-reverse;
  }

  .about-text {
    padding-left: 0px;
    margin-top: 25px;
  }

  .about-text-left {
    padding-right: 0px;
    margin-top: 25px;
  }

  .contact-mt .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }

  .contact-info {
    padding-left: 0px;
    margin-top: 40px;
  }

  .abl-tube-section .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }

  .img-pr {
    padding-right: 12px;
  }

  .img-pl {
    padding-left: 12px;
    margin-top: 50px;
  }

  .product-mt {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .subfooter-inner{
    display: block;

  }
  .testimonials .testimonial-item {
    height: 680px;
  }

  .slider-content {
    position: absolute;
    top: 26%;
    left: 4%;
  }

  .footer-section .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .base-header h3 {
    padding-bottom: 30px;
    font-size: 25px;
  }

  .slider-content h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .slider-content p {
    font-size: 15px;
  }

  .offer-text {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  #hero .carousel-container {
    top: 0px;
    left: 15px;
    right: 15px;
  }

  .feature-text {
    height: 245px;
  }

  .offer-text h5 {
    font-size: 25px;
    line-height: 35px;
  }

  .offer-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .cta-text p {
    font-size: 14px;
    line-height: 28px;
  }

  .custom-btn {
    padding: 10px 15px;
    font-size: 15px;
  }

  .footer-col-2 {
    margin-bottom: 20px;
  }

  .footer-col-3 {
    margin-bottom: 30px;
  }

  .social-section {
    padding: 50px 0;
  }

  .header-title {
    margin-bottom: 10px;
    font-size: 35px;
  }

  .about-us h5 {
    font-size: 22px;
    line-height: 35px;
  }

  .contact-title h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .contact-title p {
    font-size: 15px;
  }

  .contact-form h4 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .contact-icon {
    display: flex;
    margin: 0 0 30px 0;
  }
}
@media (width:425px){
  .achievement img{
    width: 413px;
    height: 550px;
    margin-top: 50px;
  }
}
@media (width:768px) {
  .achievement{
    text-align: center !important;
    
  }
  .achievement img{
    margin-top: 50px;
  }
  .achievement h3{
    text-align: center !important;
  }
}
@media (min-width: 320px) and (max-width: 390px) {
  .product .nav-link h4 {
    font-size: 15px;
  }
  .achievement img{
    width: 294px;
    height: 400px;
    margin-top: 50px;
  }
  .social-box p {
    font-family: var(--primary-font);
    color: var(--p-tag-color);
    font-size: 15px;
    margin-top: 0px;
  }

  .social-box h5 {
    font-size: 20px;
    margin-bottom: 0;
  }

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

  .about-us p {
    font-size: 13px;
    line-height: 25px;
  }

  .about-text h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .about-mt {
    margin-top: 50px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 27px;
  }

  .about-text-left h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .about-text-left p {
    font-size: 14px;
    line-height: 27px;
  }

  .contact-icon i {
    font-size: 30px;
  }

  .contact-icon p {
    font-size: 14px;
    font-weight: 500;
  }
  

  .footer-section {
    padding: 65px 0 0;
  }

  .product-text h5 {
    font-size: 20px;
  }

  .product-text p {
    font-size: 14px;
    line-height: 25px;
  }

  .tube-img h4 {
    font-size: 20px;
  }

}

@media (max-width: 320px) {

  .slider-content h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .slider-content p {
    font-size: 14px;
    line-height: 27px;
  }

  .product .nav-link h4 {
    font-size: 14px;
  }

  .contact-title h3 {
    font-size: 25px;
  }

  .contact-title p {
    font-size: 12px;
    line-height: 25px;
  }

  .con-field {
    font-size: 14px;
  }

  .tube-text p {
    font-size: 14px;
  }

  .tube-text ul li {
    font-size: 14px;
  }

  .tube-text h6 {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  padding: 100px 0 50px 0; 
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  z-index: 1111;
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}


/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
  
}