@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Ubuntu:wght@300;400;500;700&display=swap');

@font-face {
	font-family: HelveticaBold;
	src: url(../fonts/Helvetica-Bold.otf);
	font-weight: bold;
}

@font-face {
	font-family: Proxima Nova;
	src: url(../fonts/Proxima-Nova-Bold.otf);
	font-weight: bold;
}



/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
	padding: 0;
}

/* Website background color and default font styles */
body {
	background: #fff;
	color: #000;
	font-family: 'poppins';
	font-size: 16px;
	line-height: 1.375;
	overflow-x: hidden;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container {
	float: none;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}


a {
	text-decoration: none;
	outline: none;
	color: #000;

}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #094cac;

}

hr {
	color: #ccc;
	background-color: #ccc;
	height: 1px;
	border: none;
}

/* Highlighted Text */
::-moz-selection {
	color: #fff;
	background: #3399ff;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #3399ff;
	text-shadow: none;
}

img,
svg {
	vertical-align: middle;
	max-width: 100%;
}

/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
	margin: 0 0 25px;
}

p:last-child {
	margin: 0;
}

small {}

strong {}

em {}

cite {}

code {}

pre {}

sup,
sub {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px 0 10px;
	font-weight: 700;
	font-family: 'Eczar', serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Lists */
ul,
ol {}

ul ul,
ul ol,
ol ol,
ol ul {}

li {}

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

/* Quotes */
blockquote {}

blockquote p {}

blockquote small {}

blockquote small:before {}

q:before,
q:after,
blockquote:before,
blockquote:after {}


/* header and banner section */

header#header {
    position: relative;
    z-index: 110;
}

.custom_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header_hyperlinks p,
.header_hyperlinks a {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #FFFFFF;
}

.header_hyperlinks {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.header_hyperlinks a.mail_icon {
	padding-right: 20px;
}

img.mail {
	padding-right: 11px;
}

img.phone {
	padding-right: 7px;
}

.col-md-3.col-3.logo {
	padding: 0px;
}

.row.menu-ul ul {
    display: inline-flex;
    list-style: none;
    justify-content: center;
    width: 100%;
    padding-left: 0;
}

.row.menu-ul ul li a {
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	line-height: 3.4;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 18px 11px;
}

.row.menu-ul ul li a:hover,
.header_hyperlinks a:hover {
	color: #ED2223;
}

.banner_content h1 {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	max-width: 988px;
	margin: 0 auto;
	padding-bottom: 50px;
}

.banner_content h1 span {
	color: #ED2223;
}

.banner_content p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	color: #FFFFFF;
	max-width: 835px;
	margin: 0 auto;
	padding-bottom: 50px;
}

a.global_button_1 {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	background: #ED2223;
	padding: 7px 36px;
	position: relative;
	padding-left: 13px;
	padding-right: 50px;
	border: 1px solid #ED2223;
}

a.global_button_2 {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	color: #ED2223;
	background: #ED222300;
	padding: 7px 36px;
	position: relative;
	padding-left: 13px;
	padding-right: 50px;
	border: 2px solid #ED2223;
}

a.global_button_2:hover {
	color: #fff;
	background: #000;
	border: 2px solid #fff;
}

a.global_button_2:hover:after {
	background-image: url(../images/button-icon.png);
}

a.global_button_2:after {
	content: "";
	background-image: url(../images/button-icon2.png);
	width: 22px;
	height: 19px;
	position: absolute;
	background-repeat: no-repeat;
	top: 14px;
	margin-left: 13px;
}

a.call_us_button {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background: #ED222300;
	padding: 7px 36px;
	position: relative;
	margin-top: 34px;
	padding-left: 13px;
	padding-right: 50px;
	border: 2px solid #ffffff;
}

a.call_us_button:hover,
a.labour_button_cta:hover {
	background-color: #000;
}

a.call_us_button:after,
a.labour_button_cta:after {
	content: "";
	background-image: url(../images/button-icon.png);
	width: 22px;
	height: 19px;
	position: absolute;
	background-repeat: no-repeat;
	top: 14px;
	margin-left: 13px;
}

.banner_content {
	text-align: center;
}

a.global_button_1:after {
	content: "";
	background-image: url(../images/button-icon.png);
	width: 22px;
	height: 19px;
	position: absolute;
	background-repeat: no-repeat;
	top: 14px;
	margin-left: 13px;
}

a.global_button_1:hover {
	background: #000;
	border: 1px solid #fff;
}

.custom_header .row.logo_row {
	border-bottom: 1px solid #D9D9D9;
	padding: 8px 0;
}

.expertise_section {
	background-image: url(../images/expertise_section_bg_image.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	display: flex;
	padding-top: 60px;
	padding-bottom: 70px;
}

.banner_content_section {
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 90vh;
	display: flex;
	align-items: center;
}
.about_us_section {
	background-image: url(../images/why_choose_us_bg_image.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center 0;
	height: auto;
	display: flex;
}

.tigcrane_section {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	display: flex;
	overflow: hidden;
}
.col-lg-6.col-md-12.hire_crane_bg {
    padding: 0px;
}

.col-lg-6.col-md-12.hire_crane_bg img {
    height: 100%;
    width: 100%;
}
.hire_crane_bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.plant_equipment_section {
	background-image: url(../images/plantandequipment_bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	display: block;
	padding-top: 114px;
}

.our_project_section {
	background-image: url(../images/our_project_bg_background.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	display: flex;
	padding-top: 132px;
}

section.team-section {
	padding-top: 100px;
	background-image: url(../images/hire_team_bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
}

section.blogs {
	background-image: url(../images/blog_bg.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	padding-top: 130px;
}
section.blogs .our_blog_heading {
    text-align: center;
    position: relative;
    padding-bottom: 55px;
}
section.blogs .our_blog_heading {
    text-align: center;
    padding-bottom: 55px;
}

.our_blog_heading h3:after {
    left: 41% !important;
}

.our_blog_heading h3 {
    position: relative;
}
section.cta_section {
	background-image: url(../images/cta_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
}

.banner_content {
	padding-top: 323px;
	margin-bottom: 100px;
}
ul.banner-logo {
    list-style: none;
    display: flex;
    align-items: center;
	justify-content: space-evenly;
    margin: 0 auto;
    margin-bottom: 34px;
    width: 100%;
    padding: 0;
    margin-top: 24px;
}
ul.banner-logo li img {
    /* width: 50%; */
}
ul.banner-logo li {
    text-align: center;
	display: grid;
}
ul.banner-logo li a, .see-more-button a {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px; /* 230.769% */
    text-transform: capitalize;
    background: #ED2223;
    padding: 5px 10px;
    margin-top: 4px;
}
ul.banner-logo li a:hover, .see-more-button a:hover{
    background:#fff;
    color:#ed2223;
    transition: 0.5s ease-in-out;
}
.see-more-button a {
    width: 100%;
    max-width: 186px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    text-transform: uppercase;
}
/* header and banner section */

/* form section css */

.row.form_row {
    background-color: #fff;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 90px;
    width: 100%;
    max-width: 1280px;
    padding-top: 18px;
    padding-bottom: 47px;
    z-index: 9;
}

form#form_id {
	display: inline-flex;
}

.form_cnt h3 {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.1;
	text-transform: uppercase;
	color: #000;
	padding-bottom: 29px;
}

/*.form-group input::placeholder {
	color: #000 !important;
}
*/

.form-group input {
	display: block;
	width: 100%;
	padding: 9px;
	border-radius: 0px !important;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: #000;
	border: 1px solid #000;
	max-width: 100%;
	background-color: #00000000;
}

.form-group {
	width: 21.5%;
}

.form-group.form_btn_grp {
	width: 14%;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit.btn.btn-block.submit {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	background-color: #F00;
	padding: 4px 26px;
	border-radius: 0px;
	border: 1px solid #F00;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit.btn.btn-block.submit:hover {
	background-color: #FFFFFF;
	color: #F00;
}

.form-control:focus {
	color: #000000;
	background-color: transparent;
	border-color: transparent;
	outline: none;
	border: 1px solid #000;
	box-shadow: none;
}

.main_form {
	padding: 0px 15px;
}

/* form section css */

/* why choose us section */

.why_section {
	padding-bottom: 42px;
	margin-right: calc(-.5* var(--bs-gutter-x));
	margin-left: calc(-.5* var(--bs-gutter-x));
	position: relative;
}

.why_choose_us_services_details p {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 46px;
	text-align: left;
	text-transform: uppercase;
	color: #FFFFFF;
	border-bottom: 1px solid #fff;
	padding-bottom: 13px;
	margin-bottom: 44px;
}

.why_choose_us_services_details img.why_choose_us_services_details_img {
	height: 400px;
	object-fit: cover;
	position: relative;
	transition: all 0.5s ease-in-out;
	width:100%;
}

.why_choose_us_services_details {
	position: relative;
}

.why_choose_us_services_container .icon_wrapper {
	display: inline-block;
	background-color: #ED2223;
	height: 80px;
	width: 80px;
	border-radius: 50px;
	position: absolute;
	bottom: 47%;
	left: 30px;
}

.icon_wrapper_content a {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 35px;
	line-height: 1.1;
	text-transform: capitalize;
	color: #000000;
	margin-bottom: 15px;
	display: block;
}

img.choose_icon {
	padding: 20px;
	transition: all 0.5s ease-in-out;
}

.why_choose_us_services_container .icon_wrapper_content {
	background: #FFFFFF;
	box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
	max-width: 100% !important;
	margin-top: -1%;
	position: relative;
	border-left: 5px solid #ED2223;
	padding: 30px 16px 0px 20px;
	z-index: 9;
	min-height: 230px;
}

.icon_wrapper_content p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.8;
	color: #000000;
	margin-bottom: 20px;
	border: 0px;
	text-transform: none;
}

.why_section .why_item_boxes:hover img.why_choose_us_services_details_img {
	padding: 36px;
	padding-bottom: 0px;
}

.why_section .why_item_boxes:hover .why_choose_us_services_details p {
	color: #ED2223;
}

.why_section .why_item_boxes:hover .why_choose_us_services_container .icon_wrapper {
	width: 167px;
	height: 167px;
	background: rgba(7, 29, 31, 0.8);
	border: 2px solid #ED2223;
	left: 18%;
	border-radius: 50%;
}

.why_section .why_item_boxes:hover img.choose_icon {
	padding: 20px;
	height: 120px;
	width: 120px;
	margin-left: 10%;
	margin-top: 9%;
	object-fit: contain;
}

.why_section .why_item_boxes:hover .why_choose_us_services_container .icon_wrapper_content {
	background: #ED2223;
	border-left: 5px solid #ffffff;
}

.why_section .why_item_boxes:hover .icon_wrapper_content p,
.why_section .why_item_boxes:hover .icon_wrapper_content a {
	color: #fff;

}
.customNavigation_why.prev_next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0px;
    width: 100%;
    height: 55px;
}

.customNavigation_why.prev_next a {
    display: block;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 100%;
}
a.whyprev {
	left: -86px;
	background-image: url(../images/a_prev.png);
	height: 55px;
	width: 55px;
	position: absolute;
}

a.whynext {
	right: -85px;
	background-image: url(../images/a_next.png);
	height: 55px;
	width: 55px;
	position: absolute;
}
.customNavigation_why.prev_next a:hover{
    box-shadow: 0px 0px 40px #fff;
}
.row.counter-section {
	background-color: #ED2223;
	margin-top: 200px;
	margin-bottom: 155px;
}

.counter_data span {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 100px;
	line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 2px white;
	position: relative;
}

.counter_data span:after {
	content: "";
	background-color: #ED2223;
	width: 65px;
	height: 3px;
	position: absolute;
	top: 0;
}

.counter_data p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	color: #FFFFFF;
	padding-top: 16px;
	margin-bottom: 33px;
}

.counter_section {
	margin-top: -47px;
}

.counter_data span:after {
	content: "";
	background-color: #ED2223;
	width: 65px;
	height: 3px;
	position: absolute;
	left: 0;
	top: 0;
}

.counter_data {
	text-align: center;
}

/* why choose us section */

/* expertiese section */

.expertise_heading h3,
.labour_section_content h3 {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 60px;
	line-height: 60px;
	text-transform: capitalize;
	color: #ffffff;
	padding-bottom: 35px;
	position: relative;
}

.labour_section_content h3:before {
	content: "";
	background-color: #fff;
	width: 237px;
	height: 3px;
	position: absolute;
	left: 0;
	top: -15px;
}

.labour_section_content {
	padding: 40px 60px;
	display: flex;
	align-items: center;
	height: 100%;
}

.labour_section_content h3 {
	color: #fff;
	padding-bottom: 0px;
}

.expertise_heading h3 span {
	color: #ED2223;
}

.expertise_heading h3 span {
	color: #ED2223;
	border-top: 3px solid #ED2223;
	padding-top: 19px;
}

.expertise_heading p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	color: #FFFFFF;
	margin-bottom: 50px;
}

.labour_heading {
	width: 100%;
}

.labour_section_content p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 25px;
	color: #FFFFFF;
	margin-bottom: 50px;
}

.labour_section_content p {
	color: #fff;
	margin-bottom: 40px;
}
.single-plant_equipment .labour_section_content p {
    font-size: 20px;
    line-height: 30px;
}

.expertise_listing_content ul li,
.labour_listing_content ul li {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 1.6;
	list-style: none;
	width: calc(100% / 2);
	position: relative;
	padding-left: 13%;
	margin-bottom: 26px;
}

.labour_listing_content.tag_crane ul li {
	width: calc(100% / 1);
}

.labour_section_content.tag_crane_content {
	padding: 25px 40px;
}

.labour_section_content.tag_crane_content h3:before {
	display: none;
}

.labour_listing_content ul li {
	color: #000;
}

.labour_button_wrapper {
}

img.labour_section_image {
	object-fit: cover;
	object-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.expertise_listing_content ul li:after,
.labour_listing_content ul li:after {
	content: "";
	background-image: url(../images/expertiseli-icon.png);
	background-position: center;
	background-size: cover;
	width: 41px;
	height: 41px;
	position: absolute;
	left: 0;
}

.expertise_section_content {
	padding-top: 70px;
}

.expertise_listing_content ul,
.labour_listing_content ul {
	padding: 0px;
	display: inline-flex;
	flex-wrap: wrap;
}

img.expertise_image {
	height: -webkit-fill-available;
}

.plant_section_content h3,
.our_project_heading h3,
.our_blog_heading h3 {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 60px;
	line-height: 1.3;
	text-transform: capitalize;
	color: #FFFFFF;
	position: relative;
}

.plant_section_content h3:after,
.our_project_heading h3:after,
.our_blog_heading h3:after {
	content: "";
	background: #ED2223;
	position: absolute;
	width: 237px;
	height: 3px;
	left: 0;
	top: -20px;
}

.our_project_heading h3 {
	margin-bottom: 55px;
}

.plant_section_content p,
.plant_section_content span {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	color: #FFFFFF;
}

.plant_section_content span {
	color: #ED2223;
	display: block;
	margin-bottom: 50px;
}

.row.craousel-row {
	width: 100%;
	padding-right: 0px !important;
	margin-right: 0px !important;
	--bs-gutter-x: 0px !important;
}


/* button.owl-prev span {
    font-size: 0px;
}
button.owl-next span {
    font-size: 0px;
}
button.owl-next {
    position: relative;
}
button.owl-prev span:after {
    content: "";
    background-image: url(../images/owl-left.png);
    background-position: center;
    background-size: cover;
    width: 26px;
    height: 36px;
    position: absolute;
}
button.owl-next span:after {
    content: "";
    background-image: url(../images/owl-right.png);
    background-position: center;
    background-size: cover;
    width: 26px;
    height: 36px;
    position: absolute;
    left:55px;
} */
.plant_section_content {
	padding-bottom: 130px;
}

/* button.owl-prev:before {
    content: "";
    background-color: #f00;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 22px;
}
button.owl-next:before {
    content: "";
    background-color: #f00;
    width: 25%;
    height: 1px;
    position: absolute;
    right: 0;
    left: 0;
    top: 19px;
}
.owl-nav {
    position: relative;
} */
.labour_section .row.labour {
	background-color: #fff;
}

.labour_section {
	padding: 110px 0px;
}

.row.labour .img-section {
	padding: 0px;
	background: #ED2223;
	position: relative;
}

.project_details_conatainer .project_image {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    background-color: transparent; /* Initially transparent */
    padding: 50px 30px;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
    flex-direction: column; /* Ensure vertical alignment */
}

.project_image .project_content {
    text-align: center;
}

.project_content h4 {
    margin-bottom: 10px;
    color: #FFF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 100% */
}

.project_content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 25px;
    display: none; /* Initially hidden */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.project_content a {
    font-size: 15px;
    margin-left: 0px;
    display: block;
    max-width: 140px;
    padding: 7px 12px;
    margin: 0 auto;
    padding-left: 0px;
}

.project_content a:after {
    top: 10px;
    margin-left: 4px;
}

.col-md-4.project-4 {
    padding: 6px;
}

.project_details_conatainer:hover .project_image {
    background-color: rgba(255, 0, 0, 0.85); /* #ED2223 background on hover */
}

.project_details_conatainer:hover .project_content p {
    display: block; /* Show paragraph on hover */
    opacity: 1; /* Fade in paragraph on hover */
}


.our_project_view_button a {
	display: block;
	margin: 0 auto;
	max-width: 200px;
}

.our_project_view_button {
	margin-bottom: 82px;
	margin-top: 60px;
}

.row.Team_section {
	text-align: center;
	padding-bottom: 78px;
}

.team_carousel_image_container {
	background-color: #FFFFFF;
	border-bottom: 13px solid #ff0205;
	padding: 50px;
}

.team_carousel_image_container img {
	width: 190px !important;
	height: 190px;
	border-radius: 50%;
	margin-bottom: 33px;
}

.team_carousel_image_container h4 {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	color: #000000;
	margin-bottom: 15px;
}

.team_carousel_image_container p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	color: #000000;
	text-align: center;
	position: relative;
}

.team_carousel_image_container p:before {
	content: "";
	background-color: #ff0205;
	height: 3px;
	width: 42px;
	position: absolute;
	left: 75px;
	right: auto;
	top: -10px;
}

.team_wrapper:hover .team_carousel_image_container {
	background-color: #ff0205;
	border-bottom: 13px solid #fff;
}

.team_wrapper:hover .team_carousel_image_container h4,
.team_wrapper:hover .team_carousel_image_container p {
	color: #fff;
}

.team_wrapper:hover .team_carousel_image_container p:before {
	background-color: #fff;
}

.plant_section_cta_buttons {
	display: flex;
	justify-content: center;
	margin-top: 77px;
}

.plant_section_cta_buttons a {
	width: 197px !important;
	padding: 7px 30px;
	font-size: 22px;
	padding-left: 0px;
}

.expertise_carousel_section {
	position: relative;
    
}

.customNavigation a {
	position: absolute;
	height: 55px;
	width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 1;
	margin-top: auto;
	margin-bottom: auto;
	top: calc(40% - 20px);
	cursor: pointer;
	font-size: 0px;
}

.customNavigation .bcprev {
	left: -70px;
	background-image: url(../images/team-prev.png);
}

.customNavigation .bcnext {
	right: -70px;
	background-image: url(../images/team-next.png);
}

.plantandequipmentwrapper {
	display: inline-flex;
	position: absolute;
	top: -65px;
	width: 100%;
}

.line1 {
	background: #ED2223;
	height: 1px;
	width: 71%;
	flex: 0 0 auto;
}


.plant_section_content .plant_section_cta_buttons {
	justify-content: flex-start;
}

.customNavigation.prev_next.plant_andequipment {}

.customNavigation.prev_next.plant_andequipment {
	flex: 0 0 auto;
	width: 8%;
	right: 0;
}

.customNavigation.prev_next.plant_andequipment a {
	position: relative;
	display: inline-flex;
	left: 30px;
	top: -18px;
}

a.next.plant {
	left: 25px;
}

.customNavigation.prev_next.plant_andequipment a.ctnext.plant {
	left: 60px;
	background-image: url(../images/owl-right.png);
	height: 37px;
	width: 26px;
}

a.blprev {
	left: -60px;
	background-image: url(../images/blog_left.png);
	height: 50px;
	width: 50px;
}

a.blnext {
	right: -60px;
	background-image: url(../images/blog-right.png);
	height: 50px;
	width: 50px;
}

.customNavigation.prev_next.plant_andequipment a.ctprev.plant {
	background-image: url(../images/owl-left.png);
	height: 37px;
	width: 26px;
}

.line2 {
	flex: 0 0 auto;
	width: 32%;
	background-color: #ff0101;
	height: 1px;
}

.blog_content {
	background: #F3F3F3;
}

.blog_content .blog_img img {
	max-height: 272px;
	padding: 15px;
}

.blog_content {
	background: #F3F3F3;
}

.blog_img {
	position: relative;
}

.blog_content .blog_img img {
	max-height: 272px;
	padding: 15px;
	object-fit: cover;
}

.blog_content h4 {
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	/* or 146% */
	text-align: center;
	text-transform: capitalize;
	color: #ED2223;
	padding: 0px 60px;
	text-align: center;
	padding-bottom: 10px;
}

.blog_content span {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	/* identical to box height, or 150% */
	text-align: center;
	color: #000000;
	display: block;
	padding: 0px 50px;
}

.blog_content p {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	/* or 150% */
	text-align: center;
	color: #000000;
	padding-top: 20px;
	padding-bottom: 40px;
	padding-left: 36px;
	padding-right: 36px;
}

.blog_img .blog-icon {
	position: absolute;
	content: "";
	background-image: url(../images/blog_vector_icon.png);
	width: 53px;
	height: 51px;
	bottom: 15px;
	right: 50px;
}

.cta-content p {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 35px;
	line-height: 1.9;
	color: #FFFFFF;
}

section.cta_section {
	background-image: url(../images/cta_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	padding: 66px 0px;
}

.cta-content p {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-size: 35px;
	line-height: 1.2;
	/* or 183% */
	color: #FFFFFF;
}
#sucuri-badge.sucuri-relative {
    margin-left: 2rem;
}
#sucuri-badge, #sucuri-badge:hover, #sucuri-badge:focus{
    margin-left:2rem !important;
        z-index: 10 !important;
}
.sucuri-badge-symbol.sucuri-tick:before {
    background-position: 0px -100px !important;
    margin-top: -10px !important;
    height: 24px !important;
}
#sucuri-badge.sucuri-relative {
    border-radius: 5px;
}
section.cta_section row {
	display: inline-flex;
}

.cta-content {
	flex: 0 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cta_button {
	flex: 0 0 auto;
	width: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
}

section.cta_section row {
	display: inline-flex;
}

/* footer css */
footer {
    background-color: #000;
}
footer .row.footer1 {
    padding-top: 88px;
    padding-bottom: 48px;
}
.footer_heading span.h {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #ED2223;
    position: relative;
	padding-top: 0px;
	padding-left: 2rem;
	margin-bottom: 35px;
    display: block;
}
.footer_heading span.h:before {
	content:"";
	width: 72px;
height: 1px;
position:absolute;
background: #ED2223;
top: -25px; 
}
.col-md-3.footer_logo_section p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    padding-top: 17px;
	margin-bottom: 30px;
}
.footer_social_links span {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #ED2223;
	margin-bottom: 18px;
    display: block;
}
.footer_social_links ul li a {
    color: #fff;
}

.footer_social_links ul {
    padding-left: 0px;
    display: inline-flex;
}

.footer_social_links ul li {
    padding-right: 35px;
}

.footer_social_links ul li i {font-size: 28px;}

.footer_social_links ul li i:hover {
    color: #f00;
}
ul#menu-footer-menu li a, ul#menu-services-menu li a{
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    padding-bottom: 17px;
	display: block;
}
/*ul#menu-footer-menu li a:hover, ul#menu-services-menu li a:hover {*/
/*    color:#ED2223;*/
   
/*}*/
.row.footer1 .col-md-3 {
    border-left: 1px solid #d9d9d9cc;
    padding-left: 15px;
}

.row.footer1 .col-md-3.footer_logo_section {
    border: none;
}

.row.footer1 .col-md-3.footer_logo_section.\31 st_section {
    flex: 0 0 auto;
    width: 28%;
}
div#es_form_f1-n1 {
    padding-left: 34px;
}

.col-md-3.\34 th_section a {
    padding-left: 34px;
}


.row.footer1 .col-md-3.\32 nd_section {
    width: 19%;
    flex: 0 0 auto;
}


.row.footer1 .col-md-3.\33 rd_section {
    flex: 0 0 auto;
    width: 28%;
}

.row.footer1 .col-md-3.\34 th_section {
    flex: 0 0 auto;
    width: 25%;
}
.col-md-12.contact_info {
    border-top: 1px solid #d9d9d9cc;
    border-bottom: 1px solid #d9d9d9cc;
}
.col-md-12.contact_info ul {
    padding-left: 0px;
}
.col-md-12.contact_info ul li a {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
}
.col-md-12.contact_info ul li a:hover {
    color: #f00;
}
.col-md-12.contact_info ul li i {
    font-size: 18px;
    margin-right: 16px;
    color: #f00;
}
.col-md-12.contact_info ul {
    display: flex;
    justify-content: center;
    margin: 19px 0px;
}
.row.footer2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-md-12.contact_info ul li {
    padding-right: 55px;
}
.col-md-12.copyright p {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
}
span#spinner-image {
    display: none;
}
form.es_subscription_form.es_shortcode_form.es_ajax_subscription_form {
    display: inline-flex;
}
input.es_requi#ED2223_field.es_txt_email.ig_es_form_field_email {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.5;
    color: #707070;
    padding: 16px 16px;
}
.es-field-wrap {
    margin-bottom: 0.6em;
    margin-left: 20%;
}
.row.menu-ul .current-menu-item a {
    color: red !important;
}
input.es_subscription_form_submit.es_submit_button.es_textbox_button {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    padding: 10px !important;
    line-height: 1.5;
    background: #ED2223;
    border: none;
    color: #FFFFFF;
    height: 51px;
}
input.es_required_field {
    height: 51px;
}
.es_subscription_message.success {
    color: #e70000;
    font-size: 16px;
    line-height: 1.1;
}
span.es_subscription_message:before, span#spinner-image:before {
    display: none;
}
input.es_requi#ED2223_field.es_txt_email.ig_es_form_field_email:focus-visible{
	outline: none;
}
h4.blog-title a {
    color: #ED2223;
}
.labour_content{
    background: #ED2223;
}
a.labour_button_cta {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #ED222300;
    padding: 7px 36px;
    position: relative;
    padding-left: 13px;
    padding-right: 50px;
    border: 2px solid #ffffff;
    display: inline-block;
}
.tigcrane_section h3, .tigcrane_section p {
    color: #000;
    margin-bottom: 20px;
}
.tigcrane_section table {
    width: 94%;
    margin-bottom: 30px;
}

.tigcrane_section table tr {
     border-bottom: 0px solid #f1f1f1; 
    display: flex;
    justify-content: flex-start;
    padding: 5px 0px;
}
.tigcrane_section table tbody {
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
}

.tigcrane_section table tr:nth-child(7){
   border-top:1px solid #D3D3D3;
}
.tigcrane_section table tr td:nth-child(2), .tigcrane_section table tr td:nth-child(3){
    width:40%;
}


.tigcrane_section table tr td {
    width: 20%;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8; /* 150% */
	padding: 0px;
}
.project_details_conatainer {
    height: 100%;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #ED2223;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #575757;
}
/* footer css */

.footer_heading .emaillist .es-field-wrap {
    margin: 0;
}

.footer_heading ul {
	list-style: none;
}

/*===== Inner Banner Css =====*/

.custom_innerbanner {
    background-size: cover;
    background-position: center center;
    position: relative;
}
.custom_innerbanner .homebanner-wrp {
    height: 350px;
    width: 100%;
    display: table;
    padding: 200px 0 50px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.custom_innerbanner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0 0 0 / 85%);
}
.custom_innerbanner .breadcrumbs a{
	color: #fff;
}
.custom_innerbanner .breadcrumbs a:hover{
    color: #ED2223;
}
.ct_cmn_padd {
    padding: 50px 0;
}

/* innner banner  */

.banner_content_section.inner_banner {
    position: relative;
	height: auto;
	z-index: 100;
}

.banner_content_section.inner_banner:before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.40);
}

.banner_content_section.inner_banner .banner_content {
    z-index: 100;
    position: relative;
    padding-top: 269px;
    margin-bottom: 180px;
}

.banner_content_section.inner_banner .banner_content h1 {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb ul {
    display: inline-flex;
    padding-left: 0px;
    margin-bottom: 0px;
}

.breadcrumb ul li {
    list-style: none;
    color: #FFF;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 500% */
    text-transform: uppercase;
    padding: 0px 3px;
}
.breadcrumb ul li a{
    color:#fff;
}
.home .banner_content_section,
.page-template-Thankyou .banner_content_section.inner_banner {
    min-height: 100vh;
}

/* inner banner */

/* About PaGE CSS  */
.ohs_section {
   background: #000;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.ohs_con .our_project_heading h3, .no-pad .our_project_heading h3 {
    margin-bottom: 12px;
}
.ohs_inner{
	padding: 112px 0px;
}
.ohs_con p , .col-md-7.no-pad p{
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

.about_image img {
    width: 100%;
    padding-left: 50px;
}
.no-pad{
	padding: 0px;
}
.col-md-7.no-pad p {
    max-width: 716px;
    z-index: 100;
	position: relative;
}

.col-md-7.no-pad {
    padding: 56px 68px 56px 56px;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.col-md-7.no-pad:before {
    content: "";
    background: rgba(27, 27, 27, 0.80);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 0;
}
/* aBOUT pAGE CSS */

/* Plant and equipment page css  */
.container.plant_equipment {
    padding-top: 120px;
    padding-bottom: 105px;
}

ul.plant-equipment-list {
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto;
}

ul.plant-equipment-list li {
    list-style: none;
    width: 50%;
    text-align: center;
    padding-bottom: 60px;
    padding-top: 60px;
}

ul.plant-equipment-list li.plant-equipment-item:first-child {border-right: 1px solid #fff;border-bottom: 1px solid #fff;padding-top:0px}

ul.plant-equipment-list li.plant-equipment-item:nth-child(2) {border-bottom: 1px solid #fff;padding-top:0px}
ul.plant-equipment-list li.plant-equipment-item:nth-child(3) {border-right: 1px solid #fff;padding-bottom: 0px;}
ul.plant-equipment-list li.plant-equipment-item:nth-child(4) {padding-bottom: 0px;}

ul.plant-equipment-list.labour-service {
    display: flex;
    justify-content: center;
}

ul.plant-equipment-list.labour-service li.plant-equipment-item:first-child {
    border: none;
    padding: 0px;
}
/* Plant and equipment page css  */

.plant_content {
    position: relative;
    padding-top: 50px;
    background-color: #000;
    background-size: auto;
    background-repeat: repeat-y;
}
.plant_content:before {
    content: "";
    background: url(../images/2nd.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5%;
    z-index: -1;
}
.inner_plant_content_section {
    padding: 20px;
}
.plant_content_section {
    padding-left: 0px;
    margin-bottom: 60px;
	margin-top: 70px;
	padding-right: 0px;

}

.plant_content_section h3 {
    background: #ED2223;
    padding: 10px;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 100% */
    text-transform: capitalize;
    position: relative;
}

.plant_content_section h3:before {
    content: "";
    background-color: #F00;
    width: 338px;
    height: 3px;
    position: absolute;
    top: -20px;
    left: 0;
}

.plant_content_section p {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}


.toggle_content {
    margin: 0px;
    padding: 0px;
}
.toogle_inner_section h4.toggle_button {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
    background: #181717;
    padding: 20px;
    padding-right:15%;
    cursor:pointer;
}
.toogle_inner_section .toggle_icon {
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 11;
}
.table_i img.table_image {
    width: 100%;
    padding-right: 35px;
    margin-bottom: 32px;
	height: 100%;
	    max-height: 442px;
}

 a.image_button {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #000;
    background: #ED2223;
    padding: 10px 14px;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 333.333% */
    text-transform: capitalize;
    max-width: 145px;
    margin: 0 auto;
    margin-top: 13px;
    margin-left: 0px;
    padding-top: 8px;
    margin-bottom:10px;
}
a.image_button:hover{
    background:#fff;
    color:#ed2223;
}
.table_content h4 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 200% */
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: -5px;
}


.table_content table {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 0px solid #0000;
    border-right: 0px solid #0000;
}

.table_content table tr th:first-child, .table_content table tr td:first-child  {
    background: rgba(237, 34, 35, 0.85);
    padding-left: 11px;
    border-bottom: 1px solid #ffffffa8;
    vertical-align: top;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 220% */
    text-transform: capitalize;
    width:50%;
}
.table_content table tr td, .table_content table tr th {
    border-bottom: 1px solid #ffffffa8;
    vertical-align: top;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 220% */
    text-transform: capitalize;
    padding-left:25px;
    width:50%;
    background: #151515;
}
.table_content table tr td ul{
    padding-left:0px;
    margin-bottom: 0px;
}
.table_content table tr td ul li{
    list-style:none;
    position:relative;
  
}
.table_content table tr td ul li:before{
    content:"";
    background-color:#ffffffa8;
    left: -25px;
    position: absolute;
    top: 0;
    height: 0.5px;
    width: -webkit-fill-available;
}
.table_content table tr td ul li:first-child::before{
  background-color:transparent;  
}
.labour_section.ple h3 {
    font-size: 38px;
}

.labour_section.ple .labour_section_content {
    padding: 50px 40px;
}
.contact_content {
    background-color: #000;
    padding: 120px 0px 120px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}
.row.career_icon_section .content_heading h2 span {
    color: #ED2223;
}


.row.icon_section .col-md-4 {
    padding: 0px 5px;
}



/* .icon_content:after {
    content: "";
    background-color: #000;
    width: 126px;
    height: 3px;
    position: absolute;
    left: 35%;
    top: 47%;
} */




.icon_content a:hover {
    color: #ed2223;
}
.content_heading h2 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 133.333% */
    text-transform: capitalize;
    position: relative;
}

.content_heading h2 a {
    color: #ED2223;
}

.content_heading h2:before {
    content: "";
    background-color: #ED2223;
    width: 237px;
    height: 3px;
    position: absolute;
    top: -10px;
}

.content_heading p {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 125% */
}

.content_heading h6 {
    color: #ED2223;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px; /* 125% */
}

.row.map_row h4 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 35px;
}

input.wpcf7-form-control.wpcf7-text.contact_form, input.wpcf7-form-control.wpcf7-file.contact_form {
    border: 1px solid #9A9A9A;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #1A1A1A;
    margin-bottom: 15px;
    padding: 20px;
    width: 100%;
}

div#wpcf7-f955-o1 {
    padding-right: 104px;
}

input.wpcf7-form-control.wpcf7-text.contact_form::placeholder {
    color: #fff;
}

input.wpcf7-form-control.wpcf7-text.contact_form.w50 {
    width: 100%;
}


.row.map_row h4 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 35px;
}

input.wpcf7-form-control.wpcf7-text.contact_form, input.wpcf7-form-control.wpcf7-file.contact_form {
    border: 1px solid #9A9A9A;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #1A1A1A;
    margin-bottom: 15px;
    padding: 20px;
    width: 100%;
}

div#wpcf7-f955-o1 {
    padding-right: 104px;
}

input.wpcf7-form-control.wpcf7-text.contact_form::placeholder {
    color: #fff;
}

input.wpcf7-form-control.wpcf7-text.contact_form.w50 {
    width: 100%;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.contact_form {
    background: #ED2223;
    color: #FFF;
    font-family: Poppins;
    font-size: 23.997px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 77px;
    margin-top: 12px;
    border-radius: 10px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.contact_form:hover {
    color: #ed2223;
    background: #fff;
}
.row.career_icon_section .content_heading {
    padding-bottom: 90px;
}
.icon_career img {
    height: 123px;
    width: 123px;
    object-fit: contain;
    margin-bottom: 30px;
}
.icon_career h4 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 266.667% */
    margin-bottom: 25px;
}
.icon_career p {
    color: #FFF;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 163.636% */
    text-align:justify;
}
.row.career_icon_section {
    margin-bottom: 106px;
}
.custom_bg {
    padding: 102px 0px 112px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.custom_bg img {
    width: 100%;
    height: 100%;
    padding-right: 65px;
}

.custom_bg .row.map_row {
    margin-top: 0px;
    padding-top:0px;
}
.contact_content .cus-p p, .contact_content .cus-p .content_heading p {
    color: #FFF;
    text-align: justify;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 163.636% */
}
.p-32{
    padding-right:32px;
}
.page-id-1064 .contact_content {
    padding-bottom: 60px;
}

.col-md-12.cus-p {
    margin-top: 35px;
}

.row.commitment {
    padding-top: 135px;
}

.form_career {
    padding-top: 148px;
}

.form_career .content_heading h6 {
    padding: 60px 40px;
}

.form_career form.wpcf7-form.init {
    padding: 0px 40px;
}

.contact_content .content_heading p {
    line-height: 25px;
    font-size: 20px;
    margin-bottom: 30px;
}
input.wpcf7-form-control.wpcf7-text.career_page, input.wpcf7-form-control.wpcf7-file.career_page {
    border: 1px solid #9A9A9A;
    color: #7d7d7d;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    width: 100%;
}

input.wpcf7-form-control.wpcf7-text.career_page::placeholder, input.wpcf7-form-control.wpcf7-file.career_page::placeholder {
    color: #7D7D7D;
}
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
    color: #fff;
}

.row.career_page label {
    color: #ED2223;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 11px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.career_page {
    background: #ED2223;
    color: #FFF;
    font-family: Poppins;
    font-size: 23.997px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 77px;
    margin-top: 12px;
    border-radius: 10px;
    max-width:250px;
    width:100%;
    margin:0 auto;
    display:block;
    text-align:center;
    margin-top:48px;
    border: none;
    
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.career_page:hover{
    color:#ed2223;
    background-color:#fff;
}

input.wpcf7-form-control.wpcf7-file.career_page {
    padding: 45px 19px;
    position: relative;
}

::-webkit-file-upload-button {
 display:none;
}

input.wpcf7-form-control.wpcf7-file.career_page:before {
    content: "";
    background-image: url(/wp-content/uploads/2025/01/file.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 45%;
    width: 100%;
    height: 100%;
    top: 0;
    margin: 0 auto;
}
input.wpcf7-form-control.wpcf7-file.contact_form {
    position: relative;
    font-size: 14px;
    padding-top: 35px;
    padding-bottom: 15px;
}

input.wpcf7-form-control.wpcf7-file.contact_form:before {
    content: "Upload Your Resume";
    position: absolute;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    top: 10px;
}
input.wpcf7-form-control.wpcf7-file.contact_form:after{
    content:"";
    background-image:url(/wp-content/uploads/2025/01/resume_icon.png);
    width: 37px;
    height: 31px;
    position: absolute;
    background-repeat: no-repeat;
    right: 14px;
    top: 19px;
} 
.row.career_icon_section .col-md-4 .icon_career:first-child:after {
    content: "";
    background-color: #777;
    height: 580px;
    width: 1px;
    position: absolute;
    right: -10px;
    top: 100px;}
.row.career_icon_section .col-md-4 .icon_career {
    position: relative;
    padding: 0px 20px;
    text-align:center;
}
.icon_career.pl {
    padding-left: 0px ! IMPORTANT;
}

.icon_career.no-b:after {
    display: none;
}
.labour_section.ple {
    background-color: #000;
	padding: 60px 0px;
}


.toggle_icon img {
    transition: transform 0.3s ease;
}

.toggle_section.active ~ .toggle_icon img {
    transform: rotate(180deg); /* Rotate when expanded */
}

.toggle_section {
    max-height: 0; /* Default collapsed */
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.toogle_inner_section {
    position: relative;
}

.toggle_section.active {
    max-height: 100%; /* Adjust this value to accommodate all content */
    padding: 15px 0; /* Optional for padding transition */
    margin-bottom: 25px;
}

.our_fleet , .our_fleet img{
    height: 100%;
}
.footer_heading .emaillist .es-field-wrap {
    width: 65%;
}

input.es_subscription_form_submit.es_submit_button.es_textbox_button {
    width: 35%;
    border:none;
    border-radius:0px;
}

input.es_required_field.es_txt_email.ig_es_form_field_email {
    width: 100%;
    border: none;
    padding-left: 10px;
    border-radius:0px;
    font-size: 13px;

}
.row.career_icon_section ul {
    padding-left: 0px;
    width: 100%;
    gap: 33px;
    column-count: 2;
    column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.row.career_icon_section ul li {
    color: #FFF;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    list-style: none;
    position: relative;
    padding-left: 70px;
}

.row.career_icon_section ul li strong {
    color: #ED2223;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.row.career_icon_section ul li:before {
    content:"";
    background-image: url(/wp-content/uploads/2025/02/li_before.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 58px;
    height: 58px;
    position: absolute;
    left: 0;
    top: 7px;
}
.col-md-12.form_career p {
    font-size: 22px;
    line-height: 26px;
}
.col-md-12.form_career .content_heading h6 {
    font-size: 35px;
    font-weight: 500;
}

.es-field-wrap label {
    width: 100%;
}
.content_image {
    width: 11%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: #ED2223;
    z-index: 10;
    margin: -9px 0px;
}

.content_text {
    width: 89%;
    padding-left: 22px;
}

.content_text h4 , .content_text a{
    text-align:left;
    display:block;
}
.content_text h4{color: #000;font-family: Poppins;font-size: 22.703px;font-style: normal;font-weight: 400;line-height: normal;margin-bottom: 0px;}
.content_text a{
    color: #000;
font-family: Poppins;
font-size: 24.595px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.icon_content {border-radius: 12px;background: linear-gradient(88deg, #D9D9D9 4.39%, #E3D9D9 17.88%, #BABABA 33.81%, #C6C6C6 43.62%, #ABABAB 60.79%, #C3C3C3 86.13%);display: flex;padding: 3px 0px 3px 23px;}

.row.icon_section .col-md-12 {
    margin-bottom: 34px;
}
.p-62{
    padding-right:50px;
}
.p-20{
    padding-left:20px;
}

.form_wrap_contact.row {
    border-radius: 4px;
    border: 1px solid #9A9A9A;
    background: #474747;
    padding: 20px;
    gap: 10px;
    justify-content: space-between;
}
.form_wrap_contact.row input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control.item , .form_wrap_contact.row select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form_control, .form_wrap_contact.row textarea.wpcf7-form-control.wpcf7-textarea.form-control.item{
    border: 1px solid #9A9A9A;
    background: #191919;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px;
    width:100%;
}

.form_wrap_contact.row input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control.item::placeholder,.form_wrap_contact.row select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form_control::placeholder, .form_wrap_contact.row textarea.wpcf7-form-control.wpcf7-textarea.form-control.item::placeholder{
    color:#fff
}

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

.form-group-contact.w-50 {
    width: 48% !important;
}

.form-group-contact.form_btn_grp_contact input.wpcf7-form-control.has-spinner.wpcf7-submit.btn.btn-block.submit{
    color: #FFF;
    font-family: Poppins;
    font-size: 23.997px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding:13px 77px;
    margin: 0 auto !important;
    max-width:248px;
    text-align:center;
    border-radius: 5px;
}


.form-group-contact.form_btn_grp_contact {
    text-align: center;
    position: relative;
}
.form-group-contact.form_btn_grp_contact span.wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
}
.contact_content .wpcf7 form.invalid .wpcf7-response-output, 
.contact_content .wpcf7 form.unaccepted .wpcf7-response-output, 
.contact_content .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #fff;
    margin: 0;
    padding: 20px;
    width: 100%;
    border: 0 none;
    text-align: center;
}
.form-group-contact.form_btn_grp_contact input.wpcf7-form-control.has-spinner.wpcf7-submit.btn.btn-block.submit:hover{
    color:#ED2223;
    background:#fff;
}
textarea.wpcf7-form-control.wpcf7-textarea.form-control.item{
    height: 151px;
}
.row.map_row {
    padding-top: 80px;
}
.pad-83 .row.map_row {
    padding-top: 180px;
}

.row.map_row .col-md-7 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 18%;
}

a.join_button {
    background: #FFF;
    color: #000000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    padding: 10px;
}

a.join_button span {
    color: #ED2223;
}
.social-bar {
    position: fixed;
    top: 38%;
    right: 0;
    transform: translateY(-50%);
    display: flex
;
    flex-direction: column;
    background: transparent;
    padding: 3px;
    z-index: 1000;
    padding-right: 0px;
    gap: 0px;
}
       .social-bar a {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: #333;
    color: white;
    text-decoration: none;
    font-size: 24px;
    border-radius: 0;
    transition: 0.3s;
    padding:10px;
       padding-bottom: 5px;
}
.social-bar a i {
    border-bottom: 1px solid #fff;
    padding-bottom: 7px;
}
        .social-bar a:hover {
            background: #555;
        }
        
/* Basic 404 page styles */
.error-404 {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.error-404 .container {
    max-width: 960px;
    margin: 0 auto;
}

.error-404 .page-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins';

}

.error-404 .error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.error-404 .search-form {
    margin-bottom: 30px;
}

.error-404 .btn {
    padding: 10px 20px;
    background-color: #ed2223;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #fff;
}

.error-404 .btn:hover {
    background-color: #fff;
    color: #ed2223;
    border: 1px solid #ed2223;
}

form.es_subscription_form.es_shortcode_form.es_ajax_subscription_form input.es_required_field.es_txt_email.ig_es_form_field_email {
    display: block;
}

form.es_subscription_form.es_shortcode_form.es_ajax_subscription_form input.es_required_field {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .error-404 .page-title {
        font-size: 2.5rem;
    }

    .error-404 .error-message {
        font-size: 1rem;
    }
}
        
        
/*cta section*/
section.cta_section {
    position: relative;
}

section.cta_section:before {
    content: "";
    background-color: hsl(0deg 0% 0% / 80%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.cta_button {
    z-index: 10;
}

.cta-content {
    z-index: 10;
}

.cta_button a.call_us_button {
    background-color: #ED2223;
    border: 2px solid #0000;
}

.cta_button a.call_us_button:hover {
    background-color: #000;
}

.cta-content ul {padding-left: 0px;display: flex;gap: 50px;flex-wrap: wrap;justify-content: center;}

.cta-content ul li {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 33px; /* 165% */
    text-transform: uppercase;
    list-style: none;
    padding: 16px 20px;
    border: 1px solid #fff;
    padding-left: 50px;
    position: relative;
}

.cta-content ul li:before {
    content: "";
    background-image: url(../images/content_li_icon.png);
    position: absolute;
    width: 24px;
    height: 24px;
    left: 15px;
    top: 20px;
}

@media only screen and (min-width:1150px) and (max-width:1280px){
    .cta-content ul {
        gap: 35px;
    } 
    .cta-content ul li {
        font-size: 18px;
        padding-left: 45px;
    }
}

@media only screen and (min-width:768px) and (max-width:1150px){
    .cta-content ul li {
        width: 45%;
        text-align: left;
    }
    .cta-content ul {
        gap: 30px;
    }
    .plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-next {
        position: absolute;
        right: 7px !important;
    }
}

@media (max-width: 768px) {
    .cta-content ul li {
        width: 100%;
        text-align: left;
    }
    .cta-content ul {
       gap: 30px;
    }
    .plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-next {
        position: absolute;
        right: 7px !important;
    }
}

.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-prev {
    position: relative;
}
.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-prev span, button.owl-next span{
    display: none !important;
}
.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-prev:before {
    content: "<";
    font-size: 25px;
    color: #fff;
    background-color: #000000a3;
    padding: 15px 20px;
}

.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-next {
    position: relative;
}

.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-next:before {
    content: ">";
    font-size: 25px;
    color: #fff;
    background-color: #000000a3;
    padding: 15px 20px;
}
.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-prev span {
    display: none;
}

.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav {
    position: absolute;
    top: 39%;
    width: 100%;
}


.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-prev{
    position: absolute;
    left: 3px;
    opacity: 1 !important;
}

.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag button.owl-next {
    position: absolute;
    right: 6%;
}
.plant_slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav [class*=owl-]:hover{
    background:transparent;
}

/*labour page css*/

.reliable_section .col-md-7.ohs_con {
    width: 54%;
}

.reliable_section .col-md-5 {
    width: 46%;
}

.reliable_section .col-md-5 .about_image.reliable_image img {
    padding-left: 25px;
    height: 470px;
}
.ohs_section.labour_section_page {
    padding: 110px 0px 80px 0px;
}

.container.reliable_section {
   padding-bottom:94px;
}
.labour_service_image {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.labour_service_image .image-item1 {
    flex: 0 0 auto;
    width: 23.5%;
}

.labour_service_image .image-item1 h5 {
    background: #ED2223;
    padding: 10px;
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    height: 100%;
    max-height: 91px;
    vertical-align: middle;
    display: flex
;
    justify-content: left;
    align-items: center;
}
.mar-95{
    padding-bottom:95px;
}
.middle_cta_section {
    border: 4px solid rgba(217, 217, 217, 0.80);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cta_title_middle h3 {
    color: #FFF;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.75px; /* 124.106% */
    letter-spacing: 1.12px;
}
.labour_service_image .image-item1 img {
    width: 100%;
}

.cta_button_middle a {
    background: #ED2223;
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    padding: 21px 75px;
    display: block;
    border: 1px solid #0000;
}

.cta_button_middle a:hover {
    background: #000;
    border: 1px solid #fff;
}
.container.why_sect {
    padding-top: 100px;
}

.container.why_sect .our_project_heading {
    text-align: center;
}

.container.why_sect .our_project_heading h3::after {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 273px;
}
.why_image_inner_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.image-item {
    width: 32%;
    border: 1px solid #FFF;
    padding: 28px 20px;
}

.image-item svg {
    height: 100px;
    width: 100px;
}

.image-item svg path {
    fill: #fff;
}

.image-item h4 {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    margin: 29px 0px;
}

.image-item p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}

.image-item:hover {
    background: #D9D9D9;
}

.image-item:hover svg path {
    fill: #ED2223;
}

.image-item:hover p, .image-item:hover h4 {
    color: #000;
}
.plant_content .container .row .toggle_content:nth-child(11) .toogle_inner_section h4.toggle_button, .plant_content .container .row .toggle_content:nth-child(10) .toogle_inner_section h4.toggle_button {
    font-size:22px !important
}
        