@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    font-family: "Outfit", sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Header Css */

header {
    background-color: #ededed;
}

header .container {
    max-width: 1230px;
}

.req-btn {
    text-align: right;
    padding-top: 15px;
}

.req-btn>ul {
    display: flex;
    justify-content: end;
}

.req-btn>ul>li {
    padding: 8px 18px;
}

.req-btn>ul>li>a {
    color: #282828;
    font-size: 16px;
    font-weight: 600;
}

.req-btn>ul>li>a>img {
    width: 21px;
}

.req-btn>ul>li:first-child {
    border-right: 1px solid #c7c7c7;
}

.req-btn>ul>li.down a {
    font-size: 17px;
    padding: 6px 20px 7px 20px;
    background-color: #B3001D;
    color: #fff;
    border: 2px solid #B3001D;
    text-transform: capitalize;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.4s ease-in-out;
}

.req-btn>ul>li.down a:hover {
    background-color: transparent;
    color: #282828;
}

/* Navbar Start */

.logo {
    position: absolute;
    top: 27px;
    left: 35px;
}

nav {
    display: flex;
    position: relative;
    justify-content: end;
    padding-top: 20px;
    padding-bottom: 22px;
}

nav>ul {
    display: flex;
}

nav>ul>li {
    padding: 0 15px;
}

nav>ul>li>a {
    padding: 20px 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease all;
}

nav>ul>li>a:hover {
    color: #B3001D;
}

.pro-1 {
    position: relative;
}

.pro-2 {
    position: absolute;
    width: 300px;
    box-shadow: 0px 0px 5px 0px #ddd;
    z-index: 9999;
    background-color: #B3001D;
    padding: 0px;
    left: 0;
    transition: 0.3s all ease-in-out;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    top: 49px;
}

.pro-2>li {
    border-bottom: 1px solid #9d9dbd;
}

.pro-2>li>a {
    color: #fff;
    padding: 9px 15px 7px;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

.pro-2>li>a:hover {
    padding-left: 20px;
    color: #fff;
    /* background-color: #15465F; */
}

.pro-2>li:last-child {
    border-bottom: none;
}

.pro-1:hover .pro-2 {
    visibility: visible;
    opacity: 1;
    transform: translateX(0px);
}

.pwon a {
    color: #f79646 !important;
    font-size: 17px;
}

.pro-1>a>i {
    transition: 0.3s ease-in-out;
}

.pro-1>a:hover>i {
    transform: rotate(180deg);
}

.hamburger-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    justify-content: center;
    width: 30px;
}

.bar {
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #000;
    transition: 0.3s;
}

.bar:nth-child(2) {
    width: 15px;
}

.header-contact .bar:nth-child(2) {
    transform: translateX(-40px);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background-color: #000;
}

.header-contact .bar:nth-child(1) {
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #000;
}

.header-contact .bar:nth-child(3) {
    transform: rotate(225deg);
    top: -6px;
    background-color: #000;
    position: relative;
}



/* Banner */

#banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
  }
  
  .banner-slides {
    position: relative;
    overflow: hidden;
  }
  
  .banner-slides .banner-slide-img {
    width: 100%;
  }
  
  .slick-active .banner-slide-img {
    animation: zoom-in-out 12s linear infinite alternate;
  }
  
  @keyframes zoom-in-out {
  
    0% {
      transform: scale(1);
      transform-origin: center;
    }
  
    100% {
      transform: scale(1.08);
      transform-origin: center;
    }
  }
  .m-ban{
    display: none !important;
  }

/* .banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.banner::before {
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0.5;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.banner-content h1 {
    font-size: 28px;
}

.banner-content p {
    font-size: 52px;
    font-weight: 500;
}

.banner-content a {
    background-color: #B3001D;
    color: #fff;
    margin-top: 12px;
    border-radius: 25px;
    transition: 0.3s ease;
    padding: 7px 15px;
    display: inline-block;
}

.banner-content a:hover {
    background-color: #0071da;
} */

/* About us */

.about-us {
    padding: 56px 0 50px 0;
    position: relative;
    background-color: #ededed;
    margin-top: -7px;
}
.about{
    padding-left: 25px;
}

.about h1 {
    font-size: 42px;
    line-height: 1.05em;
    text-transform: uppercase;
}

.orange-dot {
    font-size: 1.5em;
    position: relative;
    font-weight: 700;
    color: #B3001D;
    display: inline-block;
    top: -20px;
}

.about h2 {
    font-size: 22px;
    padding-bottom: 15px;
    font-weight: 500;
    color: #7A4D00;
    line-height: 32px;
}

.about p {
    padding-bottom: 10px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
}

.about-btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    background-color: #B3001D;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 5px 5px 20px;
    border-radius: 32px;
    transition: 0.5s all linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn i {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    margin-left: 8px;
    transition: 0.5s all linear;
    font-size: 15px;
}

.thm-btn:hover i {
    background-color: #000;
    color: #fff;
}

.about-img {
    text-align: right;
}

/* Services */

.service-time{
    padding: 50px 0;
}
.service-time h2{
    font-size: 44px;
    line-height: 40px;
    color: #000;
    padding-bottom: 25px;
    text-align: center;
}
.features-item {
    position: relative;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: auto;
    padding: 30px;
    overflow: hidden;
    border-radius: 5px;
}
.features-item:before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #B3001D;
    height: 100%;
    width: 100%;
    z-index: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}
.features-item:hover:before{
    top: 0;
	opacity: 1;
}
.features-item .icon-box{
	position: relative;
	background-color: #B3001D;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.features-item:hover .icon-box{
	background-color: transparent;
}
.features-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}
.features-item:hover .icon-box::before{
	transform: scale(1);
}
.features-item .icon-box img{
	position: relative;
	max-width: 45px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
    filter: brightness(0) invert(1);
}
.features-item:hover .icon-box img{
	filter: brightness(1) invert(0);
}
.features-content{
	position: relative;
	border-bottom: 1px solid #55617136;
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.features-item:hover .features-content{
	border-color: #ffffff54;
}
.features-content h3{
	font-size: 24px;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
    color: #7A4D00;
    font-weight: 600;
}
.features-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
    font-size: 17px;
    line-height: 28px;
}
.features-item:hover .features-content h3,
.features-item:hover .features-content p{
	color: #fff;
}
.features-item:hover .features-btn .readmore-btn{
	color: #fff;
}
.readmore-btn {
    position: relative;
    color: #B3001D;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}
.readmore-btn i{
    position: relative;
    top: 1px;
    font-size: 16px;
    transition: 0.3s ease all;
}
.features-item:hover i{
    padding-left: 3px;
}
.features-item.active::before {
    top: 0;
    opacity: 1;
}

.features-item.active .icon-box {
    background-color: transparent;
}

.features-item.active .icon-box::before {
    transform: scale(1);
}

.features-item.active .icon-box img {
    filter: brightness(1) invert(0);
}

.features-item.active .features-content {
    border-color: #ffffff54;
}

.features-item.active .features-content h3,
.features-item.active .features-content p {
    color: #fff;
}

.features-item.active .features-btn .readmore-btn {
    color: #fff;
}

/* Project */

.project{
    padding: 50px 0;
    background-color: #ededed;
    background-image: url(../images/about-bg.jpg);
    background-repeat: repeat-y;
}
.project .container{
    max-width: 1280px;
}
.project h2{
    font-size: 44px;
    line-height: 40px;
    color: #000;
    padding-bottom: 25px;
    text-align: center;
}
.elementor-divider {
    border-bottom: 1px solid #a3a3a3;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}
.elementor-divider::before {
    content: "";
    width: 10%;
    height: 4px;
    position: absolute;
    margin-top: -1px;
    /* margin-left: -7%; */
    background-color: #B3001D;
    transform: translateX(-50%);
}
.sk-img{
    position: relative;
    margin: 0 15px;
    perspective: 1500px;
}
.sk-img::before{
    background-color: #f79646;
    border-radius: 5px;
    content: "";
    height: 100%;
    position: absolute;
    transform: rotate(5deg);
    width: 100%;
    /* z-index: -1; */
}
.sk-img img{
    transition: 0.4s ease;
}
.sk-img:hover img{
    transform: rotateX(0deg) rotateY(12deg);
}
.sk-img img{
    border-radius: 5px;
    z-index: 9;
    position: relative;
}
.view-all-pro{
    text-align: center;
    margin-top: 60px;
}
.view-all-pro a{
    color: #fff;
    border: 2px solid #B3001D;
    background-color: #B3001D;
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 5px;
}
.view-all-pro a:hover{
    background-color: #fff;
    color: #000;
}

/* Quality */

.quality{
    padding: 50px 0;
}
.quality h2{
    font-size: 30px;
    line-height: 1.1em;
    margin-bottom: 20px;
}
.quality h2 span{
    color: #7A4D00;
}
.quality p{
    padding-bottom: 10px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
}
.quality h3{
    font-size: 26px;
    line-height: 1.1em;
    margin-bottom: 10px;
    margin-top: 5px;
}
.quality-info ul li{
    position: relative;
    font-size: 17px;
    padding-left: 25px;
    line-height: 24px;
    margin-top: 10px;
}
.quality-info ul li::before{
    position: absolute;
    content: "\f013";
    font-family: "FontAwesome";
    top: 0;
    left: 0;
    color: #7A4D00;
}

/* Clients */

.client-time{
    padding: 50px 0;
    overflow-x: hidden;
    background-color: #ededed;
  }
  .client-time h2{
    font-size: 44px;
    line-height: 40px;
    color: #000;
    padding-bottom: 25px;
    text-align: center;
  }
  .client-box {
    padding: 15px;
    border: 1px solid rgb(34 34 34 / 12%);
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: 0.8s all;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 10px 0px 10px;
  }
  .sli-cli{
    margin: 25px 10px 0px 10px !important; 
  }
  /* .client-box:hover {
    box-shadow: -2px 2px 20px 7px #0000001c;
    transform: translate(0, -10px);
  } */
  .cli-div{
    margin-bottom: 30px;
  }
  .client-time .slick-prev::before{
    display: none;
  }
  .client-time .slick-next::before{
    display: none;
  }

/* Footer */

.new-enq{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 66px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #f79646;
}
.footer{
    /* background-color: #2a2a2a; */
    background-image: url(../images/foot-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    padding: 10px 0 0;
    position: relative;
}
.footer-social-address{
    border-radius: 5px;
}
.footer-social-address-content p{
    font-size: 17px;
    color: #fff;
    line-height: 27px;
    margin-bottom: 15px;
    font-weight: 400;
    display: block;
}
.footer-social-address-content h4{
    font-size: 31px;
    color: #212121;
    font-weight: 700;
    line-height: 44px;
}
.why-contacts{
    text-align: right;
}
.why-contacts a{
    color: #212121;
    border: 2px solid #212121;
    padding: 12px 22px;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s ease;
    font-weight: 500;
    background-color: #fff;
}
.why-contacts a i {
    padding-left: 5px;
    font-size: 14px;
}
.why-contacts:hover a{
    background-color: #000;
    color: #fff;
}
.why-contacts:hover .two{
    filter: brightness(0) invert(1);
}
.add-footer-class{
    padding-top: 45px;
}
.foot-logo{
    width: 90%;
    /* width: 145px; */
    margin: auto;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 20px 10px;
}
.foot-logo img{
    width: 100%;
    border-radius: 6px;
}
.foot-first p{
    width: 90%;
    margin: auto;
    color: #fff;
    text-align: justify;
    padding-top: 20px;
    line-height: 28px;
    font-size: 17px;
}
.foot-second h2{
    color: #fff;
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 26px;
}
.foot-second{
    padding-left: 30px;
}
.qui a{
    color: #fff;
    display: inline-block;
    transition: 0.5s all ease;
    font-size: 17px;
    padding-bottom: 10px;
    line-height: 28px;
}
.qui a:hover{
    color: #FFA51A;
}
.qui a i{
    font-size: 14px;
    position: relative;
}
.foot-third{
    padding-left: 60px;
}
.foot-third h2{
    color: #fff;
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 26px;
}
.foot-last h2{
    color: #fff;
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 26px;
}
.foot-contact{
    display: flex;
}
.foot-contact address{
    margin-bottom: 0;
    color: #fff;
    line-height: 28px;
    font-size: 17px;
}
.foot-contact i{
    color: #fff;
    position: relative;
    padding-right: 14px;
    font-size: 15px;
    top: 2px;
}
.foot-contact p{
    color: #fff;
    font-size: 16px;
}
.foot-contact{
    margin-bottom: 10px;
}
.foot-contact a{
    color: #fff;
    font-size: 17px;
    transition: 0.5s all ease;
}
.foot-contact a:hover{
    color: #FFA51A;
}
.footer-bottom-area{
    padding: 29px 0 25px 0;
}
.footer-bottom{
    border-top: 1px solid #ffffff79;
    padding-top: 18px;
    text-align: center;
    color: #fff;
}
.footer-bottom p{
    padding-top: 6px;
    font-size: 17px;
}
.footer-bottom p span{
    color: #FFA51A;
}
.footer-bottom p a{
    color: #fff;
    transition: 0.5s all ease;
    line-height: 28px;
}
.footer-bottom p a:hover{
    color: #FFA51A;
}

/* About Us Page */

.in-about{
    margin-top: 0;
}
.bread {
    background-image: url(../images/bread.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 70px 0;
}
.bread::before {
    background-color: #000;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
}
.bread h1{
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-size: 40px;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 0 10px;
    padding-top: 15px;
}
.bread-last a {
    color: #fff;
    transition: 0.3s ease;
}
.bread-last a:hover{
    color: #B3001D;
}
.under-about{
    padding: 50px 0;
}
.un-img img{
    border-radius: 10px;
}
.our-comp{
    padding-right: 15px;
}
.our-comp h3{
    color: #7A4D00;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
.our-comp li{
    position: relative;
    padding-left: 35px;
    font-size: 19px;
    padding-bottom: 10px;
    line-height: 28px;
}
.our-comp li::before{
    position: absolute;
    content: "\f013";
    font-family: "FontAwesome";
    top: 1px;
    left: 0;
    color: #7A4D00;    
    font-size: 17px;
}
/* .our-comp p{
    padding-bottom: 10px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
}
.our-comp p:last-child{
    padding-bottom: 0;
} */
.weserve-sec{
    background-color: #f7f7f7;
    padding-bottom: 50px;
}
.this-bus{
    font-size: 24px !important;
    color: #B3001D;
    font-weight: 500;
}

/* Services Page */

.infea-item{
    height: 390px;
}

/* Enquiry Form Css */

.form-control-feedback {
    display: none;
  }
  
  .has-feedback label~.form-control-feedback {
    top: 0 !important;
  }
  
  .error {
    text-align: left !important;
    display: table !important;
  }
  
  .thnak4 {
    margin-top: 50px;
  }
  
  .has-feedback .form-control {
   
    padding: 20px;
  }
  
  .form-group {
    margin: 15px 0 !important;
  }
  
  .form-group input {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #B3001D;
    color: #000;
    font-weight: 500;
  }
  .has-feedback .form-control::placeholder{
    color: #000000;
  }
  .has-feedback .form-control{
    color: #000000;
  }
  .form-group textarea {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #B3001D;
    font-weight: 500;
  }
  
  .form-group select {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #B3001D;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #B3001D;
  }
  
  .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
  }
  
  .Submit-box {
    background-color: #B3001D;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #B3001D;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
    font-weight: 600;
  }
  
  .Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
  }
  
  .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-bottom: 2px solid #B3001D;
  }
  
  .input-group>.form-control,
  .input-group>.form-floating,
  .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .fill {
    font-size: 20px;
    font-weight: 600;
  }
  .get {
    font-size: 32px;
    color: #B3001D;
    padding-bottom: 10px;
  }
  .page-part{
    padding: 50px 0;
  }
  
  
  /* Enquiry Form Css End*/


  /* Contact Us Page */

  .contact-bg{
    background-image: url(../images/contact-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .contact-bg h3{
    color: #dc7d1e;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
  }
  .contact-bg h3::before{
    position: absolute;
    content: "";
    top: 70%;
    width: 40px;
    left: 41%;
    height: 2px;
    background-color: #dc7d1e;
  }
  .contact-bg h3::after{
    position: absolute;
    content: "";
    top: 70%;
    width: 40px;
    right: 41%;
    height: 2px;
    background-color: #dc7d1e;
  }
  .contact-bg h2{
    line-height: 34px;
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
    font-weight: 700;
    color: #AD000F;
  }
  .contact-info-section{
    background-color: #111111;
    border: 8px solid #fff;
    padding: 30px;
    color: #fff;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
    background-image: url(../images/bg-map2.webp);
  }
  .number-info{
    margin-bottom: 20px;
  }
  .contact-info-section .number-info h4{
    color: #FF707A;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.1;
  }
  .contact-info-section .number-info p{
    margin-bottom: 5px;
    color: #fff;
    font-size: 18px;
  }
  .contact-info-section .number-info a{
    color: #fff;
    transition: 0.3s ease;
    font-size: 18px;
  }
  .contact-info-section .number-info:last-child{
    margin-bottom: 0;
  }
  .contact-info-section .number-info address{
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .contact-info-sections{
    border: 8px solid #fff;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
  }
  .contact-info-sections iframe{
    width: 100%;
    /* height: -webkit-fill-available; */
    display: block;
  }
  .basir{
    display: flex;
    gap: 10px;
  }

/* Structural Fabrication Service */

.struc-sec{
    padding: 50px 0;
    background-image: url(../images/ser-bg.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.struc-sec::before{
    position: absolute;
    content: "";
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.88;
}
.fabri{
    position: relative;
}
.fabri img{
    border-radius: 10px;
}
.fabri-det{
    position: relative;
}
.fabri-det p{
    padding-bottom: 10px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
}
.fabri-det p:last-child{
    padding-bottom: 0;
}
.fabri-det h2{
    color: #7A4D00;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-para {
    /* margin-top: 10px; */
    position: relative;
}
.construction {
    box-shadow: 0 5px 15px 0 rgba(194.60164794921877, 194.60164794921877, 194.60164794921877, .5);
    border-radius: 10px;
    border-left: 5px solid #B3001D;
    padding: 20px 15px 20px 20px;
    background-color: #ffffff63;
}
.about-para p {
    line-height: 28px;
    padding-bottom: 10px;
    font-size: 17px;
}
.about-para p:last-child{
    padding-bottom: 0;
}
.st-metal{
    margin-top: 50px;
}
.beech-ser{
    padding-bottom: 15px;
    color: #99001a;
}

/* Projects Page */

.project-page{
    padding: 50px 0;
    background-image: url(../images/about-bg.jpg);
    background-repeat: repeat-y;
}

/* Gallery Page */

.gallery-page{
    padding: 50px 0;
}
.rows {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  .columns {
    -ms-flex: 33.33%; /* IE10 */
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 4px;
  }
  .columns img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  /* Clients */

  .client-page{
    padding: 50px 0;
    background-color: #ededed;
  }

  /* Other Services */

  .struc-sec h3{
    position: relative;
    color: #B3001D;
    padding-bottom: 25px;
    font-size: 32px;
  }
  .oth-ser{
    position: relative;
  }
  .oth-ser>ul>li{
    position: relative;
    padding-left: 25px;
    padding-bottom: 10px;
    font-size: 17px;
  }
  .oth-ser>ul>li::before{
    position: absolute;
    content: "\f101";
    font-family: "FontAwesome";
    top: 0;
    left: 0;
  }

  /* Fixed Whatsapp Button */

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
  }
  
  .btn-whatsapp-pulse i {
    font-size: 30px;
  }
  
  @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
  
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
  }

/* Media Query Start */

@media only screen and (max-width: 1199px){

    .hamburger-menu{
        display: block;
        text-align: -webkit-right;
        padding: 32px 22px 30px 0;
    }
    nav{
        display: none;
    }
    nav ul{
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        background-color: #7A4D00;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        z-index: 9999999999;
    }
    .header-contact nav ul{
        transform: translateX(0);
    }
    nav{
        display: initial;
    }
    nav ul{
        display: initial;
        flex-direction: column;
    }
    nav ul li a{
        padding: 13px 0;
        display: block;
        color: #fff;
        padding-left: 22px;
        font-weight: 500;
        font-size: 17px;
    }
    nav ul li{
        border-bottom: 1px solid #d4d4d4;
        padding-left: 0;
    }
    nav ul li a i {
        display: none !important;
    }
    nav ul li.pro-1 {
        padding-right: 60px;
        position: relative;
        overflow: hidden;
    }
    nav ul li.pro-1::after {
        position: absolute;
        top: 6px;
        right: 22px;
        content: "+";
        font-size: 27px;
        color: #fff;
    }
    li.pro-1.responsive-header::after {
        content: "-" !important;
    }
    .pro-2{
        position: initial;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        top: 0;
        left: 0;
        background-color: #8F410A;
        z-index: 9;
        height: 0;
        transition: none !important;
        padding: 0;
    }
    .responsive-header .pro-2 {
        height: 100%;
        overflow-y: scroll;
        width: 125%;
    }
    .features-item{
        height: 475px;
    }
    .about{
        padding-left: 10px;
    }
    .features-item {
        height: 520px;
    }
    .our-comp li{
        padding-bottom: 6px;
    }
    .infea-item{
        height: 410px;
    }

}

@media only screen and (max-width: 991px){

    .project .container {
        max-width: 720px;
    }
    .palat{
        display: flex;
        flex-direction: column-reverse;
    }
    .about-img {
        text-align: center;
        margin-top: 35px;
    }
    .about {
        padding-left: 0;
    }
    .qual-img{
        text-align: center;
        margin-top: 40px;
    }
    .foot-third {
        padding-left: 0px;
    }
    .foot-logo{
        width: 100%;
    }
    .foot-first p{
        width: 100%;
    }
    .foot-second {
        padding-left: 60px;
    }
    .foot-third{
        padding-top: 25px;
    }
    .foot-last{
        padding-top: 25px;
        padding-left: 50px;
    }
    .features-item {
        height: 460px;
    }
    .un-img{
        padding-top: 25px;
    }
    .our-comp {
        padding-right: 0px;
    }
    .fabri-det{
        padding-top: 0px;
    }
    .fabri{
        padding-top: 25px;
    }
    .req-btn>ul>li:first-child{
        display: none;
    }
    .req-btn>ul>li:nth-child(2){
        display: none;
    }

}

@media only screen and (max-width: 767px){

    .logo{
        width: 270px;
        top: 50%;
        left: 27%;
        transform: translate(-50%, -50%);
    }
    header{
        position: relative;
    }
    .hamburger-menu{
        padding: 25px 22px 25px 0;
    }
    .req-btn{
        padding-top: 10px;
    }
    .about-us{
        padding: 35px 0 35px 0;
    }
    .about h1{
        font-size: 36px;
        padding-bottom: 0;
    }
    .project{
        padding: 35px 0;
    }
    .view-all-pro{
        margin-top: 50px;
    }
    .service-time {
        padding: 35px 0;
    }
    .service-time h2{
        font-size: 38px;
        padding-bottom: 20px;
    }
    .project h2{
        font-size: 40px;
        padding-bottom: 20px;
    }
    .quality {
        padding: 35px 0;
    }
    .why-contacts{
        text-align: center;
        margin-top: 20px;
    }
    .footer-social-address-content h4{
        text-align: center;
    }
    .new-enq{
        padding: 20px 15px 20px;
    }
    .footer{
        background-color: #2b2c34;
        background-position: bottom right;
        background-size: initial;
        padding-top: 0;
    }
    .foot-last{
        padding-left: 0;
    }
    .client-time{
        padding: 35px 0;
    }
    .client-time h2{
        font-size: 40px;
        padding-bottom: 20px;
    }
    .client-box{
        margin-top: 10px;
    }
    .features-item {
        height: auto;
    }
    .columns {
        -ms-flex: 50%;
        flex: 50%;
        /* max-width: 50%; */
    }
    .under-about {
        padding: 35px 0;
    }
    .st-metal {
        margin-top: 35px;
    }
    .struc-sec{
        padding: 35px 0;
    }
    .bread h1{
        font-size: 36px;
    }
    .bread-last{
        padding-top: 10px;
        font-size: 19px;
    }
    .client-box{
        margin: 25px 0 0 0;
    }
    .contact-box{
        height: auto;
    }
    .get {
        font-size: 28px;
        padding-bottom: 5px;
    }
    .fill {
        font-size: 18px;
        font-weight: 500;
    }
    .our-comp li{
        font-size: 18px;
    }
    .contact-bg h2{
        display: none;
    }

}

@media only screen and (max-width: 576px){

    .req-btn>ul>li{
        padding: 8px 0;
    }
    .hamburger-menu{
        padding-right: 0;
    }
    .req-btn>ul{
        display: none;
    }
    .req-btn{
        padding-top: 0;
    }
    .logo{
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
        width: 240px;
    }
    .po-logo{
        align-items: center;
    }
    header{
        padding: 8px 0;
    }
    .about h1{
        font-size: 32px;
    }
    .about-btn{
        margin-top: 10px;
    }
    .thm-btn i{
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .thm-btn{
        font-size: 17px;
    }
    .foot-logo {
        width: 60%;
    }
    .foot-second{
        padding-left: 0;
        padding-top: 25px;
    }
    .foot-third {
        padding-top: 15px;
    }
    .foot-last{
        padding-top: 15px;
    }
    .foot-second h2{
        padding-bottom: 15px;
    }
    .foot-third h2{
        padding-bottom: 15px;
    }
    .foot-last h2{
        padding-bottom: 20px;
    }
    .footer-bottom-area {
        padding: 20px 0 20px 0;
    }
    .footer-bottom{
        padding-top: 15px;
    }
    .sk-img img{
        width: 90%;
    }
    .sk-img::before{
        width: 90%;
    }
    .sk-img{
        text-align: center;
    }
    .bread{
        padding: 50px 0;
    }
    .bread h1 {
        font-size: 30px;
    }
    .bread-last {
        padding-top: 8px;
        font-size: 18px;
    }
    .fabri-det h2{
        text-align: center;
        font-size: 28px;
    }
    .page-part {
        padding: 30px 0;
    }
    .get{
        font-size: 23px;
    }
    .fill{
        font-size: 17px;
        margin-bottom: 10px !important;
    }
    .our-comp li{
        font-size: 17px;
        padding-bottom: 3px;
    }
    .columns {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
    .struc-sec h3{
        font-size: 26px;
        padding-bottom: 20px;
    }
    .oth-ser>ul>li{
        padding-bottom: 8px;
    }
    .this-bus{
        font-size: 19px !important;
        text-align: center;
    }
    .desk-ban{
        display: none !important;
    }
    .m-ban{
        display: block !important;
    }

}

@media only screen and (max-width: 450px){

    .logo{
        width: 220px;
    }
    header {
        padding: 5px 0;
    }
    .about-us {
        padding: 30px 0 30px 0;
    }
    .about h2{
        line-height: 28px;
        font-size: 20px;
        padding-bottom: 10px;
        text-align: center;
    }
    .about h1 {
        font-size: 30px;
        text-align: center;
    }
    .about-btn{
        text-align: center;
    }
    .service-time {
        padding: 30px 0;
    }
    .service-time h2{
        font-size: 34px;
        padding-bottom: 12px;
    }
    .elementor-divider{
        margin-bottom: 40px;
    }
    .project h2 {
        font-size: 34px;
        padding-bottom: 12px;
    }
    .project {
        padding: 30px 0;
    }
    .view-all-pro a{
        padding: 7px 12px;
        font-size: 17px;
    }
    .quality h2{
        font-size: 24px;
        text-align: center;
        margin-bottom: 14px;
    }
    .quality {
        padding: 30px 0;
    }
    .quality h3{
        font-size: 24px;
        text-align: center;
    }
    .footer-social-address-content h4{
        font-size: 26px;
        line-height: 34px;
    }
    .why-contacts a{
        padding: 8px 15px;
        font-size: 17px;
    }
    .foot-second h2{
        font-weight: 600;
        padding-bottom: 12px;
    }
    .foot-third h2{
        font-weight: 600;
        padding-bottom: 12px;
    }
    .foot-last h2{
        font-weight: 600;
        padding-bottom: 15px;
    }
    .foot-second{
        padding-top: 20px;
    }
    .foot-third {
        padding-top: 10px;
    }
    .footer-bottom-area {
        padding: 15px 0 15px 0;
    }
    .footer-bottom {
        padding-top: 10px;
    }
    .footer-bottom p{
        font-size: 16px;
    }
    .quality-info ul li{
        margin-top: 6px;
    }
    nav ul li a{
        font-weight: 400;
    }
    nav ul li a{
        padding: 10px 0;
        padding-left: 20px;
    }
    nav ul li.pro-1::after{
        top: 2px;
        right: 20px;
    }
    .pro-2>li>a{
        font-weight: 400;
    }
    .client-time h2 {
        font-size: 34px;
        padding-bottom: 12px;
    }
    .client-box{
        margin-top: 0;
    }
    .client-time{
        padding: 30px 0;
    }
    .features-item{
        text-align: center;
    }
    .readmore-btn{
        padding-right: 0;
    }
    .features-item .icon-box{
        margin: 0 auto 30px auto;
    }
    .features-item{
        padding: 20px 15px;
    }
    .features-item .icon-box{
        margin-bottom: 15px;
    }
    .bread h1{
        font-size: 36px;
    }
    .bread-cont{
        padding-top: 5px;
    }
    .bread-cont p {
        font-size: 18px;
    }
    .bread {
        padding: 40px 0;
    }
    .under-about{
        padding: 25px 0;
    }
    .bread h1 {
        font-size: 26px;
    }
    .bread-last{
        font-size: 16px;
    }
    .fabri-det h2{
        font-size: 26px;
    }
    .struc-sec {
        padding: 25px 0;
    }
    .loc-box{
        width: 95px;
        height: 95px;
    }
    .loc-box img{
        width: 36px;
    }
    .contact-box{
        padding: 20px 25px 20px 25px;
    }
    .map-time{
        margin-top: 5px;
    }
    .get {
        font-size: 21px;
        padding-bottom: 0;
    }
    .page-part{
        padding: 20px 0;
    }
    .has-feedback .form-control {
        padding: 15px;
    }
    .footer-bottom p a{
        line-height: 26px;
    }
    .btn-whatsapp-pulse{
        right: 10px;
        bottom: 10px;
        padding: 26px;
    }
    .btn-whatsapp-pulse i {
        font-size: 26px;
    }
    .our-comp h3{
        font-size: 28px;
        margin-bottom: 15px;
    }
    .contact-info-section{
        padding: 20px;
    }
    .contact-info-section .number-info p{
        font-size: 17px;
    }

}

@media only screen and (max-width: 400px){

    .logo {
        width: 205px;
    }
    .about h1{
        font-size: 28px;
    }
    .orange-dot{
        top: -10px;
    }
    .about h2{
        font-size: 19px;
        line-height: 26px;
    }
    .thm-btn i {
        width: 32px;
        height: 32px;
        line-height: 33px;
    }
    .thm-btn {
        font-size: 16px;
    }
    .service-time h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    .project h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    .sk-img img {
        width: 100%;
    }
    .sk-img::before{
        width: 100%;
    }
    .view-all-pro a {
        padding: 6px 10px;
        font-size: 16px;
    }
    .footer-social-address-content h4 {
        font-size: 24px;
        line-height: 30px;
    }
    .why-contacts a {
        padding: 7px 12px;
        font-size: 16px;
    }
    .add-footer-class {
        padding-top: 35px;
    }
    .qui a{
        padding-bottom: 8px;
    }
    .foot-second h2{
        font-size: 24px;
    }
    .foot-third h2{
        font-size: 24px;
    }
    .foot-last h2{
        font-size: 24px;
    }
    .quality-info ul li::before{
        top: 1px;
        font-size: 15px;
    }
    .client-time h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    .features-content h3{
        font-size: 22px;
    }
    .features-item .icon-box img{
        max-width: 40px;
    }
    .features-item .icon-box{
        width: 75px;
        height: 75px;
    }
    .features-content p{
        line-height: 26px;
    }
    .bread h1 {
        font-size: 23px;
    }
    .bread-cont p {
        font-size: 17px;
    }
    .bread-last{
        padding-top: 5px;
    }
    .fabri-det h2 {
        font-size: 23px;
    }
    .construction{
        padding: 15px 10px 15px 10px;
    }
    .fabri-det p{
        font-size: 16px;
        line-height: 26px;
    }
    .about-para p{
        font-size: 16px;
        line-height: 26px;
    }
    .contact-box p{
        font-size: 17px;
        line-height: 26px;
    }
    .num-info a{
        font-size: 17px;
    }
    .contact-box h3{
        padding: 10px 0;
    }
    .loc-box {
        width: 85px;
        height: 85px;
    }
    .loc-box img {
        width: 32px;
    }
    .contact-box{
        margin-bottom: 5px;
    }
    .fill{
         font-weight: 400;
         margin-bottom: 5px !important;
         font-size: 16px;
    }
    .get {
        font-size: 18px;
    }
    .Submit-box{
        padding: 8px 12px;
        font-weight: 500;
    }
    .our-comp li{
        font-size: 16px;
        padding-left: 30px;
    }
    .our-comp li::before{
        font-size: 16px;
    }
    .oth-ser>ul>li{
        font-size: 16px;
    }
    .struc-sec h3 {
        font-size: 24px;
        padding-bottom: 15px;
    }
    .contact-info-section .number-info h4{
        font-size: 20px;
    }
    .basir{
        display: block;
    }
    .contact-info-section .number-info p {
        font-size: 16px;
    }
    .contact-info-section .number-info a{
        font-size: 16px;
    }


}

@media only screen and (max-width: 350px){

    nav ul{
        width: 270px;
    }

}