:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #F27E00;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}


/*button css*/
button.buton {
	--border: 3px;
    --slant: 0.6em;
  width: 200px;
  font-size: 18px;
  padding: 7px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--bs-red);
  background: linear-gradient(to bottom left, var(--bs-red) 50%, #0000 50.1%) top
      right,
    linear-gradient(to top right, var(--bs-red) 50%, #0000 50.1%) bottom left;
  background-size: calc(var(--slant) + 1.3 * var(--border))
    calc(var(--slant) + 1.3 * var(--border));
  background-repeat: no-repeat;
  box-shadow: 0 0 0 200px inset var(--s, #0000),
    0 0 0 var(--border) inset var(--bs-red);
  clip-path: polygon(
    0 0,
    calc(100% - var(--slant)) 0,
    100% var(--slant),
    100% 100%,
    var(--slant) 100%,
    0 calc(100% - var(--slant))
  );
  transition: color var(--t, 0.3s), background-size 0.3s;
}
button.buton:focus-visible {
  outline-offset: calc(-1 * var(--border));
  outline: var(--border) solid #000c;
  clip-path: none;
  background-size: 0 0;
}
button.buton:hover,
button.buton:active {
  background-size: 100% 100%;
  color: #fff;
  --t: 0.2s 0.1s;
}
button.buton:active {
  --s: #0005;
  transition: none;
}
/*button css end*/

/*button2 css*/
button.buton2 {
    --border: 3px;
    --slant: 0.6em;
  width: 200px;
  font-size: 18px;
  padding: 7px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to bottom left, var(--bs-red) 50%, #0000 50.1%) top
      right,
    linear-gradient(to top right, var(--bs-red) 50%, #0000 50.1%) bottom left;
   background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 200px inset var(--s, #0000),
    0 0 0 var(--border) inset var(--bs-red);
  clip-path: polygon(
    0 0,
    calc(100% - var(--slant)) 0,
    100% var(--slant),
    100% 100%,
    var(--slant) 100%,
    0 calc(100% - var(--slant))
  );
  transition: color var(--t, 0.3s), background-size 0.3s;
}
button.buton2:focus-visible {
  outline-offset: calc(-1 * var(--border));
  outline: var(--border) solid #000c;
  clip-path: none;
  background-size: 0 0;
}
button.buton2:hover,
button.buton2:active {
  --border: 3px;
  --slant: 0.6em;
  background-size: calc(var(--slant) + 1.3 * var(--border))
    calc(var(--slant) + 1.3 * var(--border));

  color: var(--bs-red);
  --t: 0.2s 0.1s;
}
button.buton2:active {
  --s: #0005;
  transition: none;
}
/*button2 css end*/

.about-page h2{
    color: #fff;
}
.carousel-control-next, .carousel-control-prev{
    opacity: 1;
}
.h-size{
	    font-size: 3rem;
}
p{
	font-size: 16px;
  font-weight: 300;
}
body{
	overflow-x: hidden!important;
}

.socials{
	display: flex;
    position: absolute;
    z-index: 20;
    bottom: 16%;
    left: 9%;
}
.socials .fab, .far {
    font-weight: 400;
    margin: 10px;
    padding: 10px;
    color: #000;
    font-size: medium;
}
.shape{
	margin: -300px 0 0 0;
    z-index: 1;
    position: relative;
}
.shape-f{
    z-index: 1;
    position: relative;
    transform: rotate(180deg);
}
/*button css*/
.suraj.button {
    display: inline-block;
    text-decoration: none;
    position: relative;
    width: 200px;
}
.suraj.button .bottom {
    position: absolute;
    left: 7px;
    top: 7px;
    width: 200px;
    height: 100%;
    background-color: var(--bs-red);
    display: block;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.suraj.button .top {
    position: relative;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    padding: 15px;
    border: 2px solid #04049d;
}
.suraj.button-dark .top {
    border: 2px solid #fff;
}
.suraj.button .top .label {
    font-family: sans-serif;
    font-weight: 600;
    color: #04049d;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.suraj .button-dark .top .label {
    color: #fff;
}
.suraj.button:hover .bottom {
    left: 0;
    top: 0;
    background-color: #fff9f9;
}
.suraj.button:hover .top .label {
    color: var(--bs-red);
}
.suraj .button-border {
    position: absolute;
    background-color: var(--bs-red);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.suraj.button:hover .top .button-border-left,.suraj.button:hover .top .button-border-right {
    height: calc(100% + 2px);
}
.suraj.button:hover .top .button-border-top,.suraj.button:hover .top .button-border-bottom {
    width: calc(100% + 2px);
}
.suraj .button-border-left {
    left: -2px;
    bottom: -2px;
    width: 2px;
    height: 0;
}
.suraj .button-border-top {
    left: -2px;
    top: -2px;
    width: 0;
    height: 2px;
}
.suraj .button-border-right {
    right: -2px;
    top: -2px;
    width: 2px;
    height: 0;
}
.suraj .button-border-bottom {
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 2px;
}
/*button css end*/

.cta-align{
    color: #fff;
    height: 400px;
    h4{
        font-size: 2.6rem;
    }
    p{
        margin: 5px 0 20px;
    }
}

.gear{
    width: 800px;
    position: absolute;
    right: -43%;
    margin-top: -7%;
    transform: rotate(145deg);
    filter: opacity(0.05);
}
.gear2 {
    width: 800px;
    position: absolute;
    right: -31%;
    margin-top: -30%;
    transform: rotate(145deg);
    filter: opacity(0.05);
}
.gif-gear{
	position: relative;
}
.box-height{
	height: 230px;
}
.img-align{
	align-self: center;
    text-align: right;
}
#products hr {
    margin: 1rem 0 1.5rem;
    color: var(--bs-red);
    border: 2px solid var(--bs-red);
    border-top: 1px solid;
    opacity: 1;
    width: 35px;
}
.overlayer {
	filter: opacity(0);
	transition: 0.35s linear;
    width: 100%;
    height: 230px;
    position: absolute;
    background: #11335A;
    top: 0;
    align-content: center;
    text-align: center;
}
.boxx{
	width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
 
}
#brand-products .boxx
{
   background: #a2bff32b;
}
.pos{
	margin-bottom: 25px;
}
.pos:hover .overlayer {
	filter: opacity(1);
	transition: 0.35s linear;
}

/*.box-height{
	    --border: 0px;
    --slant: 2.5em;
    --color: #efefef;
    cursor: pointer;
    background: linear-gradient(to bottom left, var(--color) 50%, #0000 50.1%) top right, linear-gradient(to top right, var(--color) 50%, #0000 50.1%) bottom left;
    background-size: calc(var(--slant) + 1.3* var(--border)) calc(var(--slant) + 1.3* var(--border));
    background-repeat: no-repeat;
    clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant), 100% 100%, var(--slant) 100%, 0 calc(100% - var(--slant)));
}*/



#brand-icon .gif-gear{
    z-index: -1;
}

/*brands product css*/
#brand-products hr {
    margin: 1rem 0 1rem;
    color: var(--bs-red);
    border: 2px solid var(--bs-red);
    border-top: 1px solid;
    opacity: 1;
    width: 35px;
}
#brand-products .img-align{
        text-align: center;
}
#brand-products{
.w80{
    width: 80%;
}
.brand-image{
        width: 88%;
        margin-top: -5%;
        max-height: 80px;
        object-fit: contain;
}
}
/*end brand product css*/

/*counter css*/

	.test{
		    font-weight: 600;
		    color: #fff;
	}
	.backround{
		background:linear-gradient(to right, rgb(7 32 60 / 85%) 100%,rgb(0 0 0 / 100%)),  url('../img/factory.jpeg');
		background-attachment:fixed;
		background-size:cover;		
	}
	.backround .container-fluid{
		background-color: #0000005c;
		min-height: 600px;
		display: flex;
	    flex-direction: column;
	    justify-content: center;

	}
	#counter{
		color: #fff;
	}
	.ico_siz{
		width:45px;
	}
	h4.counter{
		font-size: 35px;
		font-weight: 700;
	}
	.stastic p{
		font-size: 18px;
	}
	h4.counter.plus::after{
		content: "+";
		font-weight: 700;
		font-size: 35px;
	}
	h4.counter.percent::after{
		content: "%";
		font-weight: 700;
		font-size: 35px;
	}
/*counter css end*/

.flut a p:hover{
    color:var(--bs-red);
}
 footer form .inputs{
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #fff;
    display: block;
    width: 100%;
    color: #fff!important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
 }
  footer form .inputs:focus{
    color: #fff;
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #BF2518;
    outline: 0;
  }


/*brand partners section css*/
.Marquees{
	overflow-x: hidden;
}
.Marquee{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200vw;
  height: 13vh;
}
.marquee{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 11vh;
  width: 12.5vw;
	/*line 43 is very important. since we have 16 items, width of the Marquee which is 200vw must be devided between them. which turns out to be 12.5vw*/
  margin: 10px;
  border-radius: 15px;
}

.icon {
	color: #cccccc;
  transform: scale( 1.5 );
}
.FirstRow{
animation: Scroll 35s linear infinite;}
.SecondRow{
  animation: Scroll 35s linear infinite;
  animation-direction: reverse;
}
@keyframes Scroll {
    0% {transform: translateX(-20vw);
        -webkit-transform: translateX(-20vw);}
      100% {transform: translateX(-100vw);
          -webkit-transform: translateX(-100vw);}
}
/*end brands css*/



/*footer social icon css*/
.social-links {
  display: flex;
}

.social-links a {
	width: 52px;
    height: 52px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
    margin: 0px 15px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.social-links a .fab {
    font-size: 24px;
    line-height: 55px;
    position: relative;
    z-index: 10;
    color:#fff9;
    transition: color 0.5s;
}
footer .contact-links a{
    color:#fff9;
}
footer iframe{
        opacity: 0.6;
}
footer iframe:hover{
        opacity: 1;
}

.foo-patti{
        border-top: 1px solid #fff3;
}
footer .contact-links i{
    font-size: 18px;
}

.social-links a::after {
  content: '';
  width: 100%;
  height: 100%;
  top: -90px;
  left: 0;
/*  background: #FF0000;*/
  position: absolute;
  transition: 0.5s;
}
.social-links a:hover i{
    color:#ff0000;
}
.social-links a:hover::after {
  top: 0;
}

.social-links a:hover .fab {
  color: var(--bs-red);
}

.social-links a:hover {
  transform: translateY(-10px);
}
/* end footer social icon css*/

.contact-links a{
	text-decoration: none;
	color: #000;
}
.contact-links a:hover{
	color: var(--bs-red);
}
.foo-patti p{
	font-weight: 300;
	font-size: 14px;
	margin: 0;
    opacity: 0.6;
}

/*animation css*/
.fade-in-bottom {
	-webkit-animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	        animation: fade-in-bottom 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-top {
	-webkit-animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	        animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-right {
	-webkit-animation: fade-in-right 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
	        animation: fade-in-right 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}


@keyframes fade-in-right {
  0% {
    width: 0px;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.vibrate-1 {
	-webkit-animation: vibrate-1 5s linear infinite both;
	        animation: vibrate-1 5s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.vibrate-2 {
	-webkit-animation: vibrate-2 10s linear infinite both;
	        animation: vibrate-2 10s linear infinite both;
}

@-webkit-keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}


/*animation css end*/

.scroll-down {    
    width: 10%;
    left: 45%;    text-align: center;
    margin-top: -250px;    z-index: 9;
    position: absolute;
}
.scroll-down img{
	    width: 60px;
	    opacity: 0.5;
}

/*#aboutus{
	    height: 1000px;
    background: aliceblue;
    padding-top: 100px;
}*/
.head{
	    font-size: 2.5rem;
}


/*About page css*/
.back-about{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/about.webp)!important;
    background-position: center!important;
}
.back-contact{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/cont.webp)!important;
    background-position: center!important;
}
.back-gallry{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/gallery.webp)!important;
    background-position: bottom!important;
}
.back-equipment{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/equip.webp)!important;
}
.back-product{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/proimg.webp)!important;
    background-position: center !important;
}
.about-page{
    background: linear-gradient(to right, rgb(28 62 111 / 90%) 100%, rgb(28 62 111 / 90%)), url(../img/2.jpg);
    background-repeat: no-repeat!important;
    background-size: cover!important;
    color: #fff;
    background-position: center;
}
ul.breadcrumb {
   list-style: none;
   text-transform: capitalize;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: inherit;
  content: "/\00a0";
}
ul.breadcrumb li a {
	color: inherit;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: var(--bs-red);
  text-decoration: none;
}
.about-img{
	width: 45%;
	margin: 25px 0 0 0;
	    height: 100%;
}
.about-img2{
	width: 45%;
	margin: 0 0 0 20px;
	    height: 100%;
}
.about-img3{
	width: 45%;
	margin: 0 20px 0 0;
	height: 100%;
}
.poss{
	position: relative;
}
.vision{
    width: 550px;
    padding: 50px 30px 30px;
    margin: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: #fff;
    z-index: 1025;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.vision2{
    width: 550px;
    padding: 50px 30px 30px;
    margin: 40px 0 40px 100px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: #fff;
    z-index: 1025;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.gear-about {
    width: 1000px;
    left: -63%;
    position: absolute;
    margin-top: 3%;
    transform: rotate(1deg);
    filter: opacity(0.1);
}
.gif-icon{
    width: 50px;
    margin-top: -40px;
}
.vision-wheel{
	width: 100%;
	height: 100%;
}
.whyus .accordion-item{
	border: none;
}

.whyus .accordion-button:not(.collapsed){
	background: none;
	box-shadow:none;
	color:#11335A;
}
.whyus .accordion-header {
    border-bottom: 1px solid #00000021;
}
.whyus .accordion-button{
    font-size: 1.4rem;
    color: #00000094;
}
.question{
	width: 90%;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F27E00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F27E0075'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}



/*product page css*/

#product .box-heigh {
    min-height: 260px;
    background: linear-gradient(0deg, #cee5ff57, transparent);
}
#product .img-align{
    height: 180px;
    padding: 10px 20px;
    text-align: center;
    align-content: center;
    object-fit: contain;
    overflow: hidden;
    transition: 1s linear;
}

#product .boxx:hover .img-align{
    scale: 1.1;
    transition: 1s linear;
}

.caps-title{
    min-height: 60px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    position: relative;
}
.caps-title p{
    font-weight: 500;
    color: #11335A;
    line-height: 1.4;
    text-transform: capitalize;
}
.caps-title p, a{
        text-decoration: none;
    }
.line{
    border: 2px solid #ff00001c;
    width: 35px;
    height: 2px;
    position: absolute;
    top: -5px;
    border-radius: 50px;
}
#brand .caps-title {
    min-height: 66px;
}

.brans-img{
    filter: grayscale(1);
    width: 80px;
    object-fit: contain;
    height: 35px;
}
#product .boxx:hover .line{
    border-color:var(--bs-red);
}


/*single product page css*/
.upper{
    text-transform: uppercase;
}
#single-product p,#single-product li {
    font-size: 15px;
}
.category-name{
    color: var(--bs-primary);
}
.side-bar ul{
    list-style-type: none;
    padding: 0;
}

.side-bar ul li:hover{
    margin-left: 10px;
    transition: 1s linear;
    background: #f1f6ff;
}
.shadows{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.radius{
    border-radius: 5px;
}
.stick{
    position: sticky;
    top: 50px;
}

.side-bar ul li:hover .arro{
    width:16px;  
    margin-right: 15px;
}
.side-bar ul li:hover .arro2{
    display: none;
}
#single-product .carousel-indicators [data-bs-target] {
    width: 90px;
    height: 100px;
    object-fit: contain;
    background: #ffffff00;
    margin: 0 15px;
}
#single-product .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -135px;
}
.owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 104%;
    top: 42%;
    font-size: 35px;
    z-index: -1;
    left: -30px;
}
.owl-carousel .owl-stage-outer {
    padding-left: 25px;
}
.owl-dots {
    display: none;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #00000000!important;
    color: #f00!important;
}


/*services page css*/

:root {
  /* Colors */
  --brand-color: hsl(0 100% 50% / 1);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  /* Fonts */
  --font-title: "poppins", serif;
  --font-text: "Lato", sans-serif;
}

/* RESET */

.of{
    color: #fff9;
}


#Services{

.card__description{
    margin-top: 27px !important;
    margin-bottom: 10px;
}

h2 {
  font-size: 1.6rem;
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.1;
  display: flex;
  align-content: flex-end;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100px;
}

p {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

.card:hover .card__content {
    height: 92%;
}
/* CARD COMPONENT */

.card {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 21.875rem;
  height: 23.125rem;
  overflow: hidden;
  border-radius: 0.3rem;
}

.card > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.card__background {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.card__content {
    --flow-space: 0.5rem;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  justify-content: space-between;
  height: 72%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(    180deg,    hsla(212, 79%, 13%, 0) 3%,    hsla(212, 79%, 13%, 0.4) 25%,    hsl(212, 79%, 13%) 75%  );
}

.card__content--container {
  --flow-space: 1.25rem;
}

.card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  text-transform: capitalize;
}

.card__title::after {
  content: "";
  position: absolute;
  height: 0.24rem;
  width: calc(100% + 1.25rem);
  bottom: calc((1.25rem - 0.5rem) * -1);
  left: -1.25rem;
  background-color: var(--bs-red);
}

.card__button {
  padding: 0.75em 1.6em;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: var(--brand-color);
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--black);
}

.card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .card__content {
    transform: translateY(40%);
    transition: 0.5s linear;
  }

  .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }

  .card__background {
    transition: transform 500ms ease-in;
  }

  .card__content--container > :not(.card__title),
  .card__button {
    opacity: 0;
    transition: transform 500ms ease-out, opacity 500ms ease-out;
  }

  .card:hover,
  .card:focus-within {
    transform: scale(1);
    transition: transform 500ms ease-in;
  }

  .card:hover .card__content,
  .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
    .slide-in-bottom {
    -webkit-animation: slide-in-bottom 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
            animation: slide-in-bottom 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}
  }

  .card:focus-within .card__content {
    transition-duration: 0ms;
  }

  .card:hover .card__background,
  .card:focus-within .card__background {
    transform: scale(1.3);
  }

  .card:hover .card__content--container > :not(.card__title),
  .card:hover .card__button,
  .card:focus-within .card__content--container > :not(.card__title),
  .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }

  .card:hover .card__title::after,
  .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}

}






@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*end services page css*/

/*application page css*/
.pro-image{
    width: 75%;
}
/*end application page css*/