@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300&display=swap');
:root{
	--primary:#f7931d;
	--secondary:#d1161e;
	--black:#111;
	--white:#fff;
	--gray:#f5f5f6;
}
body {
	margin:0;
	padding:0 !important;
	font-family: 'Poppins', sans-serif;
	font-family: 'Noto Sans', sans-serif;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea {
    background: var(--white);
    border: solid 1px #ddd;
    color: #444;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 11px 20px;
    width: 100%;
    outline: 0;
    border-radius: 6px;
    font-family: 'Noto Sans', sans-serif;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 11px 25px;
    font-size: 15px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    border-radius: 4px;
    font-family: 'Noto Sans', sans-serif;
}
input[type="submit"]:hover {
	background: var(--secondary);
	color: var(--white);
	transition: 0.8s;
}
textarea {
    height: 85px;
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px 0;
	font-family: 'Teko', sans-serif;
	color: #242424;
	font-weight: 500;
	text-transform: inherit;
	line-height: inherit;
	letter-spacing: 1px;
}
h1 {
	font-size:35px;
}
h2 {
	font-size:30px;
}
h3 {
	font-size: 25px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size:18px;
}
h6 {
	font-size:16px;
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 24px;
}
ul, li, a {
	list-style-type: none;
	font-family: 'Noto Sans', sans-serif;
	color: #333;
	line-height: 24px;
	font-size: 14.5px;
}
th {
    text-align: inherit;
    background-color: var(--primary) !important;
    color: white !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
}
td {
    border: 1px solid #e1e1e1 !important;
}
a:hover {
	transition:0.8s;
	text-decoration:none;
}
.heading {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    font-size: 42px;
    letter-spacing: 1px;
    position: relative;
    display: block;
    line-height: 55px;
}
/* .heading:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 43%;
    width: 35px;
    border-bottom: solid 3px var(--primary);
    transform: translateX(-50%) rotate(90deg);
} */
.subheading {
	width: 60%;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 17px;
	display: block;
	letter-spacing: 0.5px;
	font-weight: 500;
	font-family: 'Noto Sans', sans-serif;
}

.zoomeffect {
	overflow: hidden;
	position:relative;
}
.zoomeffect img {
	transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
	transform: scale(1.1);
}

.stickyform {
    position: fixed;
    top: 50%;
    right: -106px;
    z-index: 111;
    transform: translateY(-50%) rotate(90deg);
}
.stickyform .btn-primary {
    font-size: 18px;
    letter-spacing: .5px;
	animation: blink-bg 2s infinite;
}

.topbar {
    background: var(--primary);
    padding: 8px 0;
}
.topbar .col-sm-9 {
    display: flex;
    column-gap: 30px;
}
.topbar p {
	margin: 0;
	font-size: 14px;
}
.topbar p, .topbar p a, .smoicons ul li a {
	color:var(--white);
}
.topbar p, .topbar p a {
	font-family: 'Poppins', sans-serif;
}
.topbar p i {
margin-right: 6px;
    font-size: 14px;
    color:var(--white);
}
.smoicons ul {
	display: flex;
	align-items: center;
	justify-content: end;
}
.smoicons ul li, .smoicons ul li a {
	color: var(--white);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}
.smoicons ul li a {
    padding-left: 25px;
    margin-left: 25px;
    border-left: 1px solid #ffffff42;
}

.smoicons ul li:first-child a {
    border-left: 0;
}


/* Header */

header {
    position: relative;
}
header .logo img {
    width: 155px;
}
.menubar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: all ease-in-out .5s;
    box-shadow: 3px 3px 13px #eee;
    z-index: 1;
}
.menubar.fixed .menutop li a {
    color: var(--black) !important;
}
.menubar.fixed .menutop li.menu-item-has-children:after {
    color: var(--black);
}

header.fixed {
	position: fixed;
	width: 100%;
	background: var(--white);
	top: 0;
	z-index: 9999;
	box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
}
.header.fixed .logo img {
	width: 110px;
	padding: 5px 0;
}

/* Main Slider */

.mainslider img {
	height:650px;
	object-fit:cover;
	filter: brightness(0.7);
}
.bnrformbtn {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.mainslider .handanmtn {
    position: absolute;
    width: 50px;
    height: auto;
    filter: invert(1);
    margin-left: 12px;
    transform-origin: bottom;
    animation-name: wave;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    transform: rotate(-20deg);
  }
  20% {
    transform: rotate(-20deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-20deg);
  }
  70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}

.mainslider .carousel-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.mainslider .carousel-content .btn-primary {
    font-size: 20px;
    padding: 12px 20px 13px 40px;
animation: blink-bg 2s infinite;
}
@keyframes blink-bg {
  0%, 100% { background-color:var(--primary); }
  50%      { background-color: var(--secondary); }
}
@keyframes blink {
  0%   { background-color: black; color: white; }
  50%  { background-color: white; color: black; }
  100% { background-color: black; color: white; }
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption h2, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.mainslider .carousel-content p {
    font-size: 20px;
    margin: 8px 0 25px;
    line-height: 30px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: #000 !important;
	color: var(--white);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider button i {
	font-size: 27px;
}
.mainslider .modal-title {
    font-size: 25px;
}

/* Home About */

.homeabout {
    padding: 60px 0;
    background: #f9f9f9;
}
.homeabout .row {
	align-items: center;
}
.homeabout img {
    width: 100%;
    height: 330px;
    border-radius: 6px;
}
.homeabout .homeabout-cnt h2 {
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 30px;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}
.homeabout .homeabout-cnt h2 span {
    display: block;
    color: var(--primary);
    font-weight: normal;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.homeabout .homeabout-cnt strong {
	color: #16537c;
	font-weight: 600;
	font-family: 'Rajdhani', sans-serif;
	font-size: 20px;
	letter-spacing: 1px;
}
.homeabout .homeabout-cnt p {
	text-align:justify;
}
.homeabout .homeabout-cnt .btn-primary {
    margin-top: 10px;
    background: none;
    border: solid 1px var(--primary);
    color: var(--primary);
    padding: 9px 18px 8px;
}
.homeabout .homeabout-cnt .btn-primary:hover {
    background: var(--primary);
	color: var(--white);
}
.homeabout iframe {
    width: 100%;
    height: 345px;
    border-radius: 4px;


/* Services */}

.services {
    padding: 50px 0 60px;
}
.services .row {
    row-gap: 45px;
}
.serviceslist {
    padding: 25px;
    background: var(--white);
    position: relative;
    transition: .5s;
    border-radius: 6px;
    box-shadow: 3px 3px 15px #ddd;
    height: 100%;
}
.serviceslist:hover {
    background: var(--primary);
}
.serviceslist a.serviceslink {
    background: var(--primary);
    height: 45px;
    width: 45px;
    padding: 17px;
    position: absolute;
    top: -20px;
    right: -10px;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.serviceslist figure img {
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
}
.serviceslist a.serviceslink img {
    filter: invert(1);
    width: 25px;
}
.serviceslist h3 {
    font-size: 28px;
    margin: 25px 0 8px;
    transition: .5s;
}
.serviceslist:hover h3, .serviceslist:hover p {
    color: var(--white);
}
.serviceslist p {
    transition: .5s;
}
.serviceslist:hover a.serviceslink {transform: translate(7px, -7px);box-shadow: -7px 7px var(--white);}

/* Services Details */ 


.sidebar-contactdtls {
    background: var(--primary);
    margin-top: 25px;
    border-radius: 6px;
}
.sidebar-inquiry, .sidebar-contactdtls {
    padding: 20px;
}
.sidebar-inquiry {
    background: #fbfdff;
    box-shadow: 2px 2px 13px #ddd;
    border-radius: 6px;
}
.sidebar-inquiry input, .sidebar-inquiry textarea, .sidebar-inquiry select {
    border: solid 1px #00000038;
}
.sidebar-inquiry input[type="submit"] {
    margin-top: 8px;
    background: var(--primary);
    border: none;
}
.contactus-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    border-bottom: solid 1px #eee;
    padding-bottom: 12px;
}
.sidebar-contactdtls .contactus-cnt h5 {
    font-size: 17px;
    margin-bottom: 5px;
}
.sidebar-contactdtls .contactus-details i {
    color: var(--white);
}
.contactus-details i {
    font-size: 25px;
    margin-right: 30px;
    color: #2e3191;
    height: 35px;
    width: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar-contactdtls .contactus-cnt p {
    margin: 0;
}
.sidebar-contactdtls .contactus-cnt h5, .sidebar-contactdtls .contactus-cnt p, .sidebar-contactdtls .contactus-cnt ul li, .sidebar-contactdtls .contactus-cnt a {
    color: #fff;
}
.sidebar-contactdtls .contactus-details {
    border-bottom: solid 1px #ffffff3b;
}
.sidebar-contactdtls .contactus-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.page-sidebar {
    position: sticky;
    top: 0;
}
.page-sidebar h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px;
}
.sidebar-contactdtls h3{
color:var(--white);
}
.details-content {
    background: #fbfdff;
    box-shadow: 2px 2px 13px #eee;
    padding: 20px;
    border-radius: 6px;
    position: sticky;
    top: 0;
}
.details-content p{
text-align: justify;	
}
.details-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* Gallery  */

.ourgallery {
    padding: 50px 0 65px;
    background: #e5f3f3;
}
.envira-lazy {
    border-radius: 20px !important;
}
.envira-gallery-item a img {
    transition: transform 0.3s ease;
}
.envira-gallery-item a:hover img {
	 filter: grayscale(1);
}
.ourgallery .row {
    justify-content: center;
    row-gap: 25px;
}
.home .gallery-item {
    outline: none;
}
.gallery-item {
    overflow: hidden;
    display: block;
    outline: dashed 2px var(--primary);
    outline-offset: 5px;
    border-radius: 2px;
}
.ourgallery .gallerylightboxlist {
    height: 280px;
    background-size: cover;
    transition: all 300ms ease;
    border-radius: 6px;
}
.gallery-item:hover .gallerylightboxlist {
    transform: scale(1.1);
    filter: grayscale(1);
}
.gallerylightbox {
    position: relative;
}
.gallerylightbox h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: var(--secondary);
    background: #ffffffc7;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 19px;
    padding: 10px;
    font-weight: 600;
}
img.fancybox-image {
    border-radius: 6px;
}
.ourgallery .slick-slide {
    margin: 0 5px !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}
.contaddr .row {
    row-gap: 25px;
}
.contaddr {
    margin-bottom: 25px;
}
.contaddr-item {
    border-radius: 8px;
    height: 100%;
    border: double 3px var(--primary);
    padding: 18px;
    text-align: center;
}
.contaddr-item img {
    width: 50px;
    margin-bottom: 18px;
}
.contaddr-item h4 {
    margin-bottom: 8px;
}


/* Why Choose Us */

.whychooseus {
    padding: 50px 0 70px;
    background: #f9f9f9;
}
.whychooseus .row {
    row-gap: 25px;
}
.whymount-top {
    border-bottom: dotted 1px var(--primary);
    margin-bottom: 35px;
    padding-bottom: 25px;
}
.whymount-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.whychooseuslist {
    background: var(--primary);
    padding: 28px 25px 15px;
    border-radius: 15px;
    box-shadow: 3px 3px 15px #00000014;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 0;
	text-align:center;
}
.whychooseuslist figure {
    margin-bottom: 15px;
}
.whychooseuslist figure img {
    width: 80px;
}

.whychooseuslist:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
    transition: .5s;
    border-radius: 13px;
}
.whychooseuslist:hover:before {
    transform: rotate(6deg) scale(1.01);
    box-shadow: 0 0 15px #00000014;
}
.commitment {
    padding-bottom: 40px;
}
.commitment .row {
    padding: 10px 0;
}
.commitment .row:nth-child(even) {
    flex-direction: row-reverse;
}
.commitment-info {
    padding: 30px;
    border-radius: 4px;
    box-shadow: 3px 3px 15px #00000014;
    border: 1px dashed #00adef33;
    height: 100%;
}
.commitment-info h3 {
    position: relative;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.commitment-info h3:before, .commitment-info h3:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    height: 3px;
    width: 60px;
    background: var(--primary);
}
.commitment-info h3:after {
    left: 65px;
    width: 5px;
}
.commitment img {
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}
.commitment-info p {
    line-height: 30px;
}


/* Products */

.products {
    padding: 50px 0 70px;
    background: linear-gradient(#f7931d, #f5f5f41f), url(https://peterscrapmetal.com.au/wp-content/uploads/2025/04/servicebg.jpg) center / cover;
    background-attachment: fixed;
}
.productslist {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.productslist-info {
    padding: 8px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(
    --white);
    border-radius: 4px;
    transition: .5s;
}
.productslist-info .productsbtn {
    background: var(--primary);
    height: 38px;
    width: 38px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}
.productslist figure{
	border-radius: 10px;
}
.productslist figure img {
    height: 350px !important;
    object-fit: cover;
    transition: .5s;
	border-radius: 10px;
}
.productslist-info h4 {
    transform: translateY(2px);
    transition: .5s;
    font-size: 24px;
    text-align: center;
}
.productslist:hover img {
    transform: scale(1.1) rotate(4deg);
}

.productslist:hover .productslist-info {
    background: var(--primary);
}
.productslist:hover h4 {
    color: var(--white);
}
.productslist:hover .productsbtn {
    background: var(--white);
    color: var(--primary);
}
.topcontent {
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 3px 3px 13px #ddd;
    padding: 20px;
	border-radius:6px;
}
.topcontent p:last-child {
    margin-bottom: 0;
}

/* Countdown */


.counter {
    padding: 60px 0;
}
.counterlist {
    text-align: center;
    border: dotted 1px var(--primary);
    padding: 15px;
    height: 100%;
    border-radius: 6px;
}
.counterlist figure {
    height: 100px;
    width: 100px;
    background: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 5px #00000045;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.counterlist figure img {
    width: 54px;
    filter: brightness(1) invert(1);
}
.counterlist figure {
    margin: 0;
}
.counterlist h3 {
    margin: 24px 0 5px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
}
.counter .heading span {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
}

/* Sectors */
.sectors{
	padding:50px 0 65px;
}
.sectorslist {
    border: solid 1px #ddd;
    padding: 15px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
}
.sectorslist figure img {
    height: 290px;
    object-fit: cover;
    border-radius: 8px;
}
.sectorslist h3 {
    font-size: 26px;
    color: var(--primary);
    border: solid 1px var(--primary);
    width: fit-content;
    margin: 30px auto 20px;
    padding: 5px 35px 3px;
    border-radius: 8px;
}
/* Gallery */

.gallery{
	padding:50px 0 60px;
}
.gallery figure{
	overflow:hidden;
	border: solid 2px var(--primary);
	border-radius: 6px;
}
.gallery figure img {
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
	transition:all ease-in-out .5s;
}
.gallery figure:hover img{
	transform:scale(1.1);
} 

/* About Us */

.aboutus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutus-content {
    background: linear-gradient(90deg, #f7931d1c, #2e98e012);
    padding: 30px;
}
.aboutus-content h2 span{
	display: block;
    color: var(--secondary);
    font-weight: normal;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.aboutus-content h2 {
    font-size: 35px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Footer */

footer {
    background: #0a111a;
    position: relative;
    padding: 45px 0 0;
}
footer a.footer-logo {
    padding: 8px;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
}
footer a.footer-logo img {
    width: 180px;
    margin: 0 auto;
    display: block;
}
footer .col-sm-3:first-child p {
    margin: 20px 0 0;
}

.footer-details li {display: block;margin-bottom: 19px;position: relative;padding-left: 42px;}
.footer-details li i {
    position: absolute;
    top: -3px;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    border: 1px dashed var(--primary);
    color: var(--primary);
    height: 32px;
    width: 32px;
}
footer ul li.menu-item a {
    margin-bottom: 13px;
    display: inline-block;
    position: relative;
    padding-left: 17px;
}
footer ul li.menu-item a:before {
    position: absolute;
    content: '\f061';
    top: 1px;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: var(--primary);
    font-size: 11px;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}

footer ul li.menu-item a:hover {
    color: var(--primary);
}

footer h3 {
    color: var(--white);
    padding-bottom: 15px;
    margin-bottom: 28px;
    position: relative;
    font-size: 26px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 400;
}
footer h3:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}

footer ul li,
footer ul li a,
footer p,
footer p a {
    color: #cbcbcb;
}
.copyright {
    padding: 20px 0;
    border-top: 1px solid #ffffff36;
    margin-top: 40px;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: .2px;
}
.copyright p a {
    color: var(--primary);
    font-weight: 600;
}

footer ul.socialicon {
    display: flex;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff0d;
    width: 45px;
    height: 45px;
    color: var(--primary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
    padding: 0;
    background: var(--primary);
    width: 50px;
    height: 50px;
    color: var(--white);
    text-align: center;
    padding-top: 14px;
    font-size: 22px;
}
#GoToTop.show {
	display: block;
}
#GoToTop img {
    width: 24px;
}

#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
#whatsappbtn img {
    width: 30px;
    margin-top: 10px;
}


.breadcrumb {
    background: linear-gradient(#00000075, #000000a8), url(https://peterscrapmetal.com.au/wp-content/uploads/2025/04/slider2.webp) center / cover;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
}
.breadcrumb h1 {
    margin-bottom: 10px;
}
.breadcrumb h1 .breadcrumb_last {
    font-size: 28px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}
.breadcrumb h1 span a {
	display: none;
}
.breadcrumb span a:after {
	content: '\f101';
	font-family: 'Font Awesome 5 Free';
	padding: 0 7px;
	font-weight: 600;
	font-size: 12px;
}
.breadcrumb h1 p#breadcrumbs {
	text-align:center;
}
.breadcrumb p, .breadcrumb p a {
    margin: 0;
    color: var(--white);
}
.secondary-container {
	padding:60px 0;
}

/* Contact Us */

.contactus .row{
row-gap:25px;
}
.contactus .contact-details-cnt {
    text-align: center;
    border: 1px dashed var(--primary);
    padding: 15px;
    transition: all ease-in-out .5s;
    background: var(--white);
    height: 100%;
    border-radius: 6px;
}
.contactus .contact-details-cnt iframe {
    width: 100%;
    height: 350px;
	border-radius:6px;
}
.contactus .contact-details-cnt h3 {
	margin: 0;
}
.contactus form input[type="submit"] {
	width: auto;
	background: var(--primary);
	border: 1px solid var(--primary);
	color: var(--white);
	padding: 8px 25px;
	text-transform: uppercase;
	margin: 0;
}
.contactus form input[type="submit"]:hover{
background: var(--secondary);
border: 1px solid var(--secondary);
}
.contactus form label{
	display:block;
}
.contactform form {
    box-shadow: 3px 3px 13px #ddd;
    height: 100%;
    padding: 25px 20px 16px;
    background: var(--white);
    border-radius: 6px 6px 0 0;
}
.contactus_details {
    position: relative;
    padding: 25px 30px;
    padding-left: 100px;
    transition: .5s;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    border: solid 1px var(--primary);
}
.contactus_details:last-child {
    margin-bottom: 0;
}
.contactus_details i {
    font-size: 28px;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 18px;
    border-radius: 6px;
    box-shadow: 3px 0px 12px #0e54912b;
    background: var(--primary);
}
.contactus_info h3 {
    margin-bottom: 0;
    font-weight: 500;
    line-height: normal;
}
.contactus_info p {
    margin: 0;
}
.contactform iframe {
    width: 100%;
    height: 305px;
    border-radius: 0 0 6px 6px;
}
.aboutstandardlist {
    border: solid 1px var(--primary);
    padding: 20px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
}
.aboutstandardlist img {
    width: 70px;
    height: auto;
    margin-bottom: 22px;
}
.finance {
    overflow: hidden;
}
footer.omm-footer {
    padding: 0;
}
footer.omm-footer .omm-s2--footer, footer.omm-footer .omm-s2--footer a, footer.omm-footer .text{
    color: var(--white) !important;
}

@media only screen and (max-width: 991px) {
.menutop {
    display: none;
}
.carousel-caption {
    width: 80%;
}
.mainslider img {
    height: 500px;
}
.mainslider .carousel-caption h1 {
    font-size: 35px;
    line-height: 45px;
}
.mainslider .carousel-content p {
    font-size: 18px;
}
.homeabout {
    text-align: center;
}
.homeabout img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.homeabout .col-sm-5, .homeabout .col-sm-7 {
    width: 100%;
}	
.homeabout-cnt {
    padding-left: 0;
    text-align: center;
}
.homeabout .homeabout-cnt p {
    text-align: center;
}
.products .row {
    row-gap: 15px;
}
.products .col-md-6 {
    width: 100%;
}
.whychooseus .row {
    row-gap: 15px;
}
.whychooseus .col-md-3 {
    width: 50%;
}
.counter .row, .services .row{
    row-gap: 15px;
}
.commitment .col-sm-7, .commitment .col-sm-5 {
    width: 100%;
}
.secondary-container.industries.solution .col-sm-4 {
    width: 50%;
}
.secondary-container.aboutus .col-sm-5, .secondary-container.aboutus .col-sm-7 {
    width: 100%;
    padding: 0 !important;
}
.secondary-container.aboutus .row {
    row-gap: 15px;
}
.about-banner img {
    height: 400px;
}
.manufacturing .row:nth-child(even) .col-sm-7 {
    padding: 0 !important;
}
.custom-structure .col-sm-2, .custom-structure .col-sm-10 {
    width: 100%;
}
#pills-tab {
    display: flex;
    justify-content: space-between;
}
.customstructurelist-info {
    padding: 30px;
}
.manufacturing .col-sm-7 {
    order: 2;
}
.secondary-container.career .col-sm-6 {
    width: 100%;
}
.pe-0 {
    padding-right: 12px!important;
}
.ps-0 {
    padding-left: 12px !important;
}
.careertop .row {
    row-gap: 20px;
}
.careertop .col-sm-6.pe-0 {
    order: 2;
}
.currentopening .col-md-4 {
    width: 50%;
}
.careerapply .row {
    row-gap: 20px;
}
.contactform .col-sm-6, .contact-details .col-sm-6 {
    width: 100%;
}
.row.products .col-sm-3 {
    width: 50%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 100% !important;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    width: 100% !important;
}
.mountpanel-table {
    width: 100%;
    overflow-x: scroll;
}
}

@media only screen and (max-width: 768px) {
.topbar {
    display: none;
}
.secondary-container.aboutus .row .col-sm-5, .secondary-container.aboutus .row .col-sm-7 {
    padding: 0 15px !important;
}	
.details-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
#rmp_menu_trigger-1381 {
    width: 45px !important;
    height: 45px !important;
    background: #f7931d !important;
    border-radius: 6px !important;
}	
.smoicons ul li a {
    padding-left: 10px;
    margin-left: 10px;
}
.topbar p:nth-child(3) {
    display: none;
}
.mainslider .carousel-caption h1 {
    font-size: 25px;
    line-height: 35px;
}
.mainslider .carousel-content p {
    font-size: 15px;
    margin: 5px 0 15px;
}
.mainslider img {
    height: 400px;
}
.homeabout .homeabout-cnt h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 35px;
    letter-spacing: 0;
}
.heading {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 0;
}
.products {
    padding: 35px 0 50px;
}
.whychooseus {
    padding: 35px 0 50px;
}
.solution {
    padding: 35px 0 40px;
}
.counter {
    padding: 50px 0 40px;
}
.ourclient {
    padding: 35px 0 40px;
}
.commitment .col-sm-7 {
    order: 2;
}
.secondary-container.industries.solution .col-sm-4 {
    width: 100%;
}
.industries.solution .row {
    row-gap: 15px;
}
.customconetnt .col-sm-7, .customconetnt .col-sm-5 {
    width: 100%;
}
.customstructurelist-info {
    height: auto;
}
.custom-structure figure img {
    height: 300px;
}
.manufacturing img {
    height: 300px;
}
.commitment-info h3 {
    font-size: 25px;
}
.currentopening .col-md-4 {
    width: 100%;
}
.mdmessage {
    display: block;
}
.mdmessage-desination, .mdmessage-content {
    width: 100%;
}
.mdmessage-content {
    text-align: center;
    margin-top: 10px;
}
.mainslider .carousel-content .btn-primary {
    font-size: 15px;
    padding: 8px 10px 8px 15px;
    animation: blink-bg 2s infinite;
}
.stickyform .btn-primary {
    font-size: 15px;
    letter-spacing: 0px;
	    width: 100%;
    padding: 12px;
    border-radius: 6px 6px 0 0;
}	
.stickyform {
    right: 0;
    left: 0;
    width: 100%;
    transform: inherit !important;
    bottom: 0 !important;
    top: inherit !important;
}
.menubar.fixed {
    position: relative;
}	
.mainslider .handanmtn {
    width: 30px;
    margin-left: 12px;
}	
}

@media only screen and (max-width: 667px) {
.header-wrapper {
    padding: 8px 0;
}
.breadcrumb {
    padding: 30px 0;
}
.breadcrumb h1 .breadcrumb_last {
    font-size: 25px;
}
}

@media only screen and (max-width: 568px) {
.topbar .col-sm-9 {
    width: 80%;
}
.topbar .col-sm-3 {
    width: 20%;
}
.home .header-wrapper {
    top: 10px;
}
header .logo img {
    width: 120px;
}
.header-wrapper .col-sm-3, .header-wrapper .col-sm-9 {
    width: 50%;
}
.mainslider img {
    height: 350px;
}
.copyright {
    padding: 20px 0;
    margin-top: 20px;
}
.whymount-content p {
    text-align: center;
}
.whymount-top p {
    text-align: center;
}
}

@media only screen and (max-width: 414px) {

.mainslider .carousel-content p {
    display: none;
}
.mainslider img {
    height: 250px;
}
.mainslider .carousel-caption h1 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 26px;
    margin-bottom: 10px;
}
.carousel-caption {
    top: 50%;
    width: 80% !important;
}
.carousel-control-prev {
    left: 10px !important;
}
.carousel-control-next {
    right: 10px !important;
}
.homeabout img {
    width: 100%;
}
.homeabout .homeabout-cnt h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 30px;
    letter-spacing: 1px;
}
.products {
    padding: 30px 0 45px;
}
.whychooseus {
    padding: 30px 0 40px;
}
.whychooseus .row {
    row-gap: 15px;
}
.whychooseus .col-md-3 {
    width: 100%;
}
.solution {
    padding: 30px 0;
}
.heading {
    margin-bottom: 15px;
    font-size: 30px;
}
.solutionlist-info {
    justify-content: center !important;
}
.solutionlist figure img {
    height: 300px !important;
}
.counter {
    padding: 35px 0 25px;
}
.counter .row {
    row-gap: 15px;
}
.counterlist h3 span {
    font-size: 40px;
    line-height: 38px;
    margin-bottom: 5px;
}
footer {
    padding: 35px 0 0;
}
footer a.footer-logo {
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
}	
footer a.footer-logo img {
    width: 150px;
    margin: 0 auto;
    display: block;
}
footer h3 {
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.copyright {
    padding: 15px 0;
    margin-top: 15px;
}
.copyright p {
    font-size: 14px;
}
.commitment-info {
    padding: 20px;
}
.commitment-info h3 {
    font-size: 24px;
}
.breadcrumb h1 .breadcrumb_last {
    font-size: 22px;
}
.breadcrumb {
    padding: 20px 0;
}
#pills-tab {
    justify-content: center;
}
.custom-structure .nav-pills .nav-link {
    height: 130px;
    width: 130px !important;
    column-gap: 15px;
    justify-content: center;
    background-size: contain;
}
.custom-structure .nav-pills .nav-link.active {
    height: 130px;
    width: 130px !important;
    background-size: contain;
}
.about-banner img {
    height: auto;
}
.aboutus-content h2 span {
    margin-bottom: 5px;
}
.aboutus-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.aboutus-content {
    background: linear-gradient(90deg, #c3f0ff42, #c3f0ff42);
    padding: 20px;
    text-align: center;
}
.commitment-info {
    text-align: center;
}
.commitment-info h3:before, .commitment-info h3:after {
    left: 35%;
}
.commitment-info h3:after {
    left: 60%;
}
.commitment-info h3:before, .commitment-info h3:after {
    left: 40%;
}
.careertop-content h2 {
    font-size: 30px;
    margin: 5px 0 20px;
    padding-bottom: 5px;
}
.row.products .col-sm-3 {
    width: 100%;
}
.jobposition {
    text-align: left;
}
.jobposition ul {
    display: block;
}
.jobposition ul li {
    margin-bottom: 10px;
}
}


@media only screen and (max-width: 375px) {
.topbar p:nth-child(2) {
    display: none;
}
form.woocommerce-ordering {
    width: 100%;
}
}

li#menu-item-995>a {
    pointer-events: none;
}

.woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
}