@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000

.nunito-sans-<uniquifier> {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.roboto-condensed-<uniquifier> {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.hind-light {
  font-family: "Hind", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.hind-regular {
  font-family: "Hind", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hind-medium {
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.hind-semibold {
  font-family: "Hind", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.hind-bold {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-style: normal;
}


body{
	margin: 0;
	padding: 0;
	font-family: var(--font-hint);
}

:root{
	--primary-color : #cb1e47;
	--secondary-color : #004a77;
	--black : #454545;
	--white : #fff;
	--grey : #e0e0e0;
    --dark-blue : #001d45;
	--dark-grey : #8b8a8a;
    --dark-grey2 :#2c2c2c;
    --dark-grey3 : #a8a8a8;

    --font-nunito : "Nunito Sans", sans-serif; 
    --font-roboto : "Roboto Condensed", sans-serif;
    --font-hint :  "Hind", sans-serif;
}



.bg-blue{
    background: var(--secondary-color) !important;
}

a{
	text-decoration: none;
	color: var(--black);
}

a:hover{
	color: var(--primary-color);
}

ul{
	margin: 0;
	padding: 0;
}

li{
	list-style: none;
}

section{
    padding-top: 80px;
    padding-bottom: 80px;
}

p{
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    font-weight: normal;
    font-family: var(--font-hint);
    color: var(--black);
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-roboto);
}

.text-blue{
    color: var(--secondary-color);
}

/*----------------------HEADER-------------------------*/

/*topbar*/

.topbar{
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--grey);
}

.topLinks li a{
	font-family: var(--font-roboto);
}

.socialLinks li a{
	color: var(--dark-grey);
}

.socialLinks li a:hover{
	color: var(--primary-color);
}

.logo{
	height: 120px;
}

.contactBox {
  align-items: center;
}

.contactBox .contactDetails h6{
	margin-bottom: 0;
}

.contactBox i {
  font-size: 25px;
  position: relative;
  top: 0px;
  margin-right: 12px;
  font-weight: 100;
  color: var(--secondary-color);
}

.contactBox .contactDetails strong{
	margin-bottom: 0;
	font-family: var(--font-roboto);
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
}


/*abrecoMenu*/

.abrecoMenu{
	border-top: 1px solid var(--grey);
	border-bottom: 1px solid var(--grey);
	padding: 0;
}

.abrecoMenu .menuList li {
  border-left: 1px solid var(--grey);
  padding: 15px 25px;
  position: relative;
}

.abrecoMenu .menuList li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px; 
    background-color: var(--secondary-color);
    transition: width 0.3s ease; 
}

.abrecoMenu .menuList li a.active::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 4px; 
    background-color: var(--secondary-color);
    transition: width 0.3s ease; 
}

.abrecoMenu .menuList li:hover::before {
    width: 100%;
}

.abrecoMenu .menuList li:last-child{
	border-right: 1px solid var(--grey);
}

.abrecoMenu .menuList li a{
  font-family: var(--font-roboto);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.abrecoMenu .menuList li a.active{
	color: var(--secondary-color);
}

.abrecoMenu .nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #ffffff; 
    border: none;
    border-radius: 0; 
    border-top: 1px solid #eee;
    animation: dropdownAnimation 0.3s ease forwards; 
}

.abrecoMenu .nav-item.dropdown:hover .dropdown-menu {
    display: block; 
}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(10px); /* Initial position, adjust as needed */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Final position, adjust as needed */
    }
}

.abrecoMenu .dropdown-menu li {
  list-style: none;
  padding: 4px 10px;
  border-left: none;
  border-right: none !important;
}

.abrecoMenu .dropdown-menu li a{
	text-transform: capitalize;
	font-weight: 400;
	border-bottom: 1px solid var(--grey);
    transition: background-color .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out;
}

.abrecoMenu .dropdown-menu li:last-child a {
    border-bottom: none; 
}


.abrecoMenu .dropdown-menu li a:hover {
    color: var(--secondary-color);
    background: none;
    border-bottom-color: var(--secondary-color);
}

.abrecoMenu .dropdown-menu li:hover {
    background-color: none;
}

.abrecoMenu .dropdown-menu li::before {
    height: 0;
}

.abrecoMenu .dropdown-toggle::after {
  content: "\f078";
  font: var(--fa-font-solid);
  border:none;
  font-size: 13px;
  position: relative;
  top: 3px;
}

/*---------------------------main Slider----------------------------*/

.mainSlider{
    height: 670px;
}

.mainSlider .item {
  position: relative;
  height: 670px;
  width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
}

.mainSlider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    filter: grayscale(1);
}

.mainSlider .bannerSlider::before {
    filter: grayscale(1);
}


.mainSlider .banner1::before {
    background-image: url(../images/banner1.jpg);
    filter: grayscale(1);
}

.mainSlider .banner2::before{
    background-image: url(../images/banner2.jpg);
    filter: grayscale(1);
}

.mainSlider .banner3::before{
    background-image: url(../images/banner3.jpg);
    filter: grayscale(1);
}

.mainSlider .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}

.owl-prev {
  font-size: 74px !important;
  color: #fff !important;
  left: 30px;
  position: relative;
}

.owl-next {
  font-size: 74px !important;
  color: #fff !important;
  right: 30px;
  position: absolute;
}

/*------------------captions-------------------*/
.box{
    display: flex;
    align-items: center;
    height: 250px;
    padding: 30px;
    position: relative;
    z-index: 9;
}


.box1{
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px 0 0 0px;
}

.box2{
    background: var(--white);
    color: var(--black);
    border-radius: 0 0 30px 0px;
}

.box3{
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px 0 0 0px;
}

.box4{
    background: var(--white);
    color: var(--black);
    border-radius: 0 0 30px 0px;
}

.box5{
    background: var(--white);
    color: var(--black);
    border-radius: 30px 0 0 0px;
}

.box6{
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 0 0 30px 0px;
}

.box1 h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 29px;
  line-height: 41px;
  font-family: var(--font-roboto);
}

.box2 h1 {
  font-weight: 100;
  font-size: 35px;
  line-height: 41px;
}


.box3 h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 29px;
  line-height: 41px;
  font-family: var(--font-roboto);
}

.box4 h1 {
  font-weight: 100;
  font-size: 35px;
  line-height: 41px;
}

.box5 h1 {
  font-weight: 100;
  font-size: 35px;
  line-height: 38px;
}

.box6 h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 29px;
  line-height: 41px;
  font-family: var(--font-roboto);
}

/*------------------captions end-------------------*/

.bottomBar{
    background: var(--secondary-color);
    padding: 20px;
}

.bottomBar h2{
    font-weight: bold;
    font-family: var(--font-roboto);
}


/*-----------------footer----------------*/

footer{
    background: var(--dark-grey2);
    padding-top: 100px;
}

.footerWidget h4{
    color: var(--white);
    font-size: 22px;
    margin-bottom: 40px;
    position: relative;
    font-weight: 600;
    font-family: var(--font-roboto);
}

.footerWidget h4::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: var(--secondary-color);
  left: 0;
  bottom: -12px;
}

.footerWidget ul li {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  left: 30px;
  color: var(--dark-grey);
}

.ftcolor a{
    color: var(--dark-grey);
}

.ftcolor a:hover{
    color: var(--secondary-color);
}

.footerWidget ul li span {
  position: absolute;
  left: -30px;
}

.linkss li {
  color: var(--white);
  margin-bottom: 11px !important;
  position: relative;
  left: 0 !important;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--dark-grey);
  transition: 0.5s ease;
}

.linkss li:last-child{
    border-bottom: none;
}

.linkss li:hover{
    border-color: var(--secondary-color);
}

.linkss li a:hover{
    color: var(--secondary-color);
}

.linkss li a{
    color: var(--dark-grey);
}

.footerWidget{
    padding-right: 30px;
}

.footerWidget h6{
    color: var(--dark-grey);
    margin-top: 12px;
}

.copyRight{
    border-top: 1px solid var(--dark-grey);
    padding-top: 12px;
    color: var(--dark-grey);
}

.copy p{
    color: var(--dark-grey);
}


.content h4{
    font-weight: bold;
    color: var(--dark-grey3);
}

.content h2{
    font-weight: bold;
}

.content p{
    text-align: justify;
}


.ser h3{
    font-size: 25px;
    font-weight: bold;
    color: var(--black);
    font-family: var(--font-roboto);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--grey);
    margin-bottom: 30px;
}

.ser img{
    width: 100%;
    margin-bottom: 25px;
}

.serviceImages{
    height: 270px;
    object-fit:cover;
}

.serviceSection{
    background: linear-gradient(to bottom, #eee 10%, #fff 90%);
    border-top: 1px solid var(--grey);
}

.serBox.active{
    background: var(--secondary-color);
    color: var(--white);
}

.serBox{
    padding: 50px 40px;
    text-align: left;
    color: var(--black);
    margin-bottom: 30px;
/*    background: var(--white);*/
    border: 1px solid var(--grey);
}

.serBox h5{
    font-weight: bold;
    font-family: var(--font-roboto);
    margin-bottom: 12px;
}

.serBox img{
    width: 60px;
}

.abrecoClients{
    margin-top: 50px;
    height: 200px;
}

.abrecoClients .item {
  align-items: center;
  display: flex;
  border: 1px solid #f7f7f7;
  height: 150px;
  padding: 30px;
  text-align: center;
  justify-content: center;
}
.abrecoClients .item img{
    width: 180px;
}

.quoteBox{
    padding: 50px 40px;
    border:1px solid var(--grey);
    margin-top: 50px;
}

.quoteBox form label{
    font-weight: 500;
    font-family: var(--font-roboto);
    color: var(--black);
}

.quoteBox form label span{
    padding-left: 3px;
    color: var(--primary-color);
}


.quoteBox form input,
.quoteBox form select{
    width: 100%;
    height: 50px;
    border: 1px solid var(--grey);
    background: #eee;
    padding: 15px;
}

.quoteBox form textarea{
    width: 100%;
    border: 1px solid var(--grey);
}

.quoteBox form .submitBtn{
    width: auto;
    height: 50px;
    border: none;
    background: var(--primary-color);
    padding: 15px 20px;
    color: var(--white);
    text-transform: uppercase;
    transition: 0.5s ease all;
}

.quoteBox form .submitBtn:hover{
    background: var(--secondary-color);
}

.quoteBox h6{
    font-weight: bold;
    margin-bottom: 50px;
}

.counterSection{
    background: var(--dark-blue);
}

.counterBox {
  border: 1px solid var(--grey);
  background: #e0e0e00a;
  color: #fff;
  text-align: center;
  padding: 40px;
}

.counterBox h1{
    font-size: 50px;
    font-family: var(--font-nunito);
    font-weight: bold;
}

.counterBox p{
  margin-bottom: 0;
  color: var(--white);
}

.abrecoAccordation .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.abrecoAccordation .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.abrecoAccordation .accordion-button::after {
  transition: all 0.5s;
}

.abrecoAccordation .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: #fff;
  box-shadow: none;
  border-top: 4px solid var(--grey);
  border-radius: 0;
}

.abrecoAccordation .accordion-item:first-of-type{
    border-radius: 0;
}

.abrecoAccordation .accordion-button {
  background-color: #fcfcfc;
  text-transform: uppercase;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.abrecoAccordation .accordion-button:focus {
  box-shadow: none;
}

.abrecoAccordation .accordion-body ul li{
    margin-bottom: 30px;
}

.abrecoAccordation .accordion-body ul li h6{
    font-weight: bold;
    padding-bottom: 10px;
}

/*-----------about us page---------------*/

.bannerMain {
  background-size: cover !important;
  background-position: center center !important;
  height: 600px;
  position: relative;
  align-items: center;
  display: flex;
  color: #fff;
}

.bannerMain::after {
  position: absolute;
  content: "";
  background: rgba(37,37,49,0.54);
  width: 100%;
  top: 0;
  left: 0;
  height: 600px;
}

.bannrCaptions{
    position: relative;
    z-index: 9;
}

.bannrCaptions h1{
    font-size: 50px;
    line-height: 90px;
    font-weight: 600;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.bannrCaptions p{
    font-size: 25px;
    line-height: 1.5;
    color: #fff;
}

.aboutus .content h5{
    font-weight: 600;
    margin-bottom: 15px;
}

.aboutus .content p{
    font-family: var(--font-hint);
}

.line-blue{
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
}

/*tab*/

.verticalTabDiv ul {
  flex-direction: column;
}

.verticalTabDiv ul li button, .accordion-header button {
  width: 100% !important;
  text-align: left;
  padding: 18px 24px;
  text-transform: uppercase;
  font-family: var(--font-roboto);
  font-weight: 500;
  border-right: 1px solid var(--grey) !important;
  border-radius: 0 !important;
  color: var(--black) !important;
  box-shadow: none;
  outline: none;
}

.accordion-header button:focus{
    box-shadow: none;
  outline: none;
}

.verticalTabDiv ul li button i, .accordion-header button i{
    padding-right: 12px;
}

.accordion-item{
    border: none;
}

.verticalTabDiv ul li button.active {
  width: 100% !important;
  text-align: left;
  background: none !important;
  color: var(--secondary-color) !important;
  border: 1px solid #eee !important;
  border-radius: 0 !important;
  border-left: 4px solid #ddd !important;
  border-right: none !important;
}

.list-with-style li{
    list-style: disc;
    margin-left: 20px;
}

/*service page*/

.serviceBanner {
  background-size: cover !important;
  background-position: center center !important;
  height: 300px;
  position: relative;
  align-items: center;
  display: flex;
  color: #fff;
}

.serviceBanner::after {
  position: absolute;
  content: "";
  background: rgba(37,37,49,0.54);
  width: 100%;
  top: 0;
  left: 0;
  height: 300px;
}

.bannrCaptionsBreadcrumb{
    position: relative;
    z-index: 1;
}

.text-black{
    color: #2c2c2c !important;
}

.serviceSlider img{
    height: 450px;
    object-fit: cover;
}

.serviceSlider .owl-dots {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}

.serviceSlider .owl-dot {
  width: 10px;
  height: 10px;
  background: #fff !important;
  border-radius: 50px;
  margin-left: 6px;
}

.serviceSlider .owl-dot.active {
  background: var(--secondary-color) !important;
}

.text-pink{
    color: var(--primary-color);
}

.serviceBox{
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--grey) ;
    background-color: #fcfcfc;
    padding: 40px 20px;
    margin-left: 40px;
    margin-bottom: 50px;
}

.serviceBox .boxIcon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: -40px;
  padding: 20px 18px;
}

.serviceBox .boxIcon img{
    height: 40px;
}

.serviceBox h5{
    position: relative;
    left: 20%;
    color: #000;
    font-weight: bold;
}

.cForm input{
    width: 100%;
    height: 45px;
    border-radius: 0;
    background: #f5f5f5;
}

.cForm textarea{
    width: 100%;
    border-radius: 0;
    background: #f5f5f5;
}

.cForm label{
    font-family: var(--font-roboto);
}

.cForm .submitBtn {
  width: auto;
  height: 50px;
  border: none;
  font-weight: bold;
  font-family: var(--font-roboto);
  background: var(--secondary-color);
  padding: 15px 20px;
  color: var(--white);
  text-transform: uppercase;
  transition: 0.5s ease all;
}

.cForm .submitBtn:hover{
    background: var(--grey);
}

.item_inner{
    margin-bottom: 30px;
}

.icon_wrap{
    background: #fcfcfc;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 30px;
    transition: all .5s ease-in-out;
    border: 10px solid var(--secondary-color);
    position: relative;
}

.item_inner:hover .icon_wrap {
    border: 10px solid #fcfcfc;
}

.icon_wrap::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 120px;
  background: #f0ecec;
  top: 100%;
  left: 50%;
  z-index: -1;
}

.icon-wrap-last::after{
    display: none;
}

.icon_wrap img {
  height: 25px;
  margin: 28px;
}

.item_title{
    font-weight: 15px;
    color: var(--black);
}

.border-b{
    border-bottom: 1px solid #eee;
}

.scroll {
  position: fixed;
  text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
  
  background-color: var(--secondary-color);
  transition: all 150ms ease;
  transform: scale(0);
    outline: none;
    cursor: pointer;
    border: none;
}
.scroll:focus {
  outline: none;
}

.scroll i{
    color: #fff;
}

.scroll:hover {
  animation: jump 800ms infinite;
  background: var(--grey);
}

@keyframes jump {
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}



/*team section*/

.teamBanner::after {
  display: none !important;
}



.contact-button {
  position: fixed;
  top: 40%;
  right: -55px;
  z-index: 99;
}

.floating-button {
  background-color: var(--secondary-color);
  border: none;
  border-radius: 0px;
  width: 155px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  transform: rotate(-90deg);
  
}



.contact-form {
  display: none;
  position: absolute;
  top: -97px;
  right: 99px;
  background-color: white;
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 380px;
  padding: 50px 30px;
  transition: 0.5 ease all;
}

.contact-button:hover .contact-form {
  display: block;
  right: 100px;
  animation: slideIn 0.5s forwards; 
}

@keyframes slideIn {
  from {
    right: -400px; /* Initial position off-screen */
  }
  to {
    right: 100px; /* Final position */
  }
}



.contact-form form input {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 25px;
  padding-left: 17px;
  border: 1px solid #eee;
}

.contact-form form textarea {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  border-radius: 25px;
  padding-left: 17px;
  padding-top: 12px;
  border: 1px solid #eee;
  font-size: 15px;
}

.contact-form form input[type="submit"]{
    width: 100%;
    text-align: center;
    border: none;
    background: #dd3333;
    color: #fff;
}

.sticky-icon  {
    z-index:1;
    position:fixed;
    top:53.7%;
    right:0%;
    width:200px;
    display:flex;
    flex-direction:column;}  

.sticky-icon a {
  transform: translate(155px,0px);
  border-radius: 0;
  text-align: left;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px;
  font-size: 16px;
  font-family: var(--font-roboto);
  transition: all 0.8s;
  margin-top: 0;
}

.sticky-icon a:hover  {
    color:#FFF;
    transform:translate(0px,0px);}  
.sticky-icon a:hover i  {
    transform:rotate(360deg);}

/*.search_icon a:hover i  {
    transform:rotate(360deg);}*/
.emailBox  {
    background-color:#1e73be;
    color:#FFF;}
    
.phoneBox  {
    background-color:var(--primary-color);
    color:#FFF;}
    

.sticky-icon a i {
  height: 40px;
  width: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
  display: inline-block;
}

#myBtn {
    height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
    line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
    font-size:30px;}

#myBtn:hover {
  background-color: #555;
}

.footSocial i{
    font-size: 40px;
    color: var(--secondary-color);
} 


.abrecoWarehouseTeam .item,
.abrecoLogisticsTeam .item {
    background: var(--secondary-color);
    height: 400px; /* Adjust the height as needed to fully display the image */
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden; 
}

.abrecoWarehouseTeam .item img,
.abrecoLogisticsTeam .item img {
    position: absolute;
    z-index: 9;
    top: -25px; 
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    object-fit: contain;
}


.personDetails {
  position: absolute;
  bottom: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  border-top: none !important;
  border: 1px solid #eff0f0;
  padding: 6px 14px;
}

.personDetails h4 {
  line-height: 27px;
  font-weight: 500;
  margin-top: 13px;
  font-family: var(--font-nunito);
  /*height: 56px;*/
}

.personDetails h6{
    font-weight: 300;
    font-family: var(--font-hint);
}

.abrecoTeam{
    padding-top: 100px;
    position: relative;
}

.abrecoWarehouseTeam .owl-nav.disabled, .abrecoLogisticsTeam .owl-nav.disabled {
  display: block;
}


.abrecoWarehouseTeam .owl-next,
.abrecoWarehouseTeam .owl-prev,

.abrecoLogisticsTeam .owl-next,
.abrecoLogisticsTeam .owl-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  background: var(--secondary-color) !important;
  font-size: 45px !important;
  color: #fff !important;
  border-radius: 50%;
  line-height: 13px !important;
}



.abrecoWarehouseTeam .owl-prev,
.abrecoLogisticsTeam .owl-prev {
  left: -50px;
}
.abrecoWarehouseTeam .owl-next,
.abrecoLogisticsTeam .owl-next {
  right: -50px;
}

.teamMainBanner::after {
  display: none !important;
}


.teamMainBanner{
    height:400px !important;
}

/* //career */
.careerSection{
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  background: rgba(230, 232, 233, 1);
}

.careerCaptions h5{
  font-family: var(--font-nunito);
  font-weight: bold;
}

.careerCaptions h3{
font-family: var(--font-nunito);
font-weight: bold;
color: var(--secondary-color);
font-size: 50px;
margin-top: 30px;
margin-bottom: 30px;
}

.careerBtn {
width: auto;
height: 50px;
border: none;
background: var(--secondary-color);
padding: 15px 20px;
border-radius: 5px;
color: var(--white) !important;
text-transform: uppercase;
transition: 0.5s ease all;
display: inline-block;
}

.careerImage {
display: inline-block;
border-radius: 10px; 
border: 7px solid; 
border-image-source: linear-gradient(132.94deg, #004C83 0%, #9C263C 100%); /* Gradient colors */
border-image-slice: 1; 
height: 250px;
margin-top: 100px;

}

.careerImage img {
height: 337px;
position: relative;
top: -100px;
}

.careerBox img{
  height: 70px;
}

.careerList h3 {
font-family: var(--font-nunito);
font-weight: bold;
color: var(--secondary-color);
font-size: 35px;
margin-top: 30px;
margin-bottom: 40px;
}

.careerBtnView {
border: none;
background: var(--secondary-color);
padding: 7px 25px;
color: var(--white) !important;
text-transform: capitalize;
transition: 0.5s ease all;
}

.careerBtn:hover, .careerBtnView:hover{
  background: var(--primary-color);
}

.careerTbl tr td{
  vertical-align: middle;
  height: 80px;
}

.careerTbl tr{
  border-bottom: 2px solid rgba(230, 232, 233, 1);
}

.text-grey{
  color: rgba(173, 173, 173, 1) !important;
}


.careerFilterForm input[type="text"] {
width: 100%;
border: 2px solid var(--secondary-color);
padding: 16px 15px;
background: #fff;
margin-bottom: 30px;
}

.careerFilterForm select {
width: 100%;
border: 2px solid var(--secondary-color);
padding: 16px 45px 16px 15px; 
background: #fff;
-webkit-appearance: none; 
-moz-appearance: none; 
appearance: none; 
background-image: url('../images/arrow-down.svg'); 
background-repeat: no-repeat;
background-position: right 15px center; 
background-size: 20px;
margin-bottom: 30px;
}

/* For IE */
.careerFilterForm select::-ms-expand {
display: none; 
}


.careerFilterForm input[type="submit"] {
width: 100%;
height: 60px;
}
.careerSingle{
  background: linear-gradient(94.02deg, #004C83 26.1%, #BE1E2D 100%);
  height: 150px;
  display: flex;
  align-items: center;
}

.careerSingleCaptions img{
  height: 80px;
}

.careerSingleCaptions h3 {
color: #fff;
font-weight: bold;
font-size: 36px;
margin-top: 23px;
font-family: var(--font-nunito);
}

.careerApply h3{
  font-size: 30px;
  font-family: var(--font-nunito);
  margin-bottom: 15px;
}

.careerApply h5{
  font-family: var(--font-nunito);
  margin-bottom: 45px;
}

.careerApplyContent h4{
  font-size: 22px;
  font-weight: bold;
  font-family: var(--font-nunito);
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.applySections{
  margin-bottom: 50px;
}

.applySections ul li {
line-height: 35px !important;
list-style: none !important;
font-weight: 300 !important;
}

.applySections ul li img {
height: 16px;
margin-right: 9px;
}

.applyDetails img {
height: 18px;
color: var(--secondary-color);
position: relative;
top: 0px;
margin-right: 6px;
}

.applyForm h1 {
font-family: var(--font-nunito);
font-size: 35px;
font-weight: bold;
}

.applyForm .modal-content{
  padding: 40px;
  border-radius: 0;
}

.applyForm .modal-content label{
  font-family: var(--font-roboto);
  margin-bottom: 5px;
  font-weight: bold;
}

.applyForm .modal-content input[type="text"],
.applyForm .modal-content input[type="email"]{
  width: 100%;
  border-color: var(--secondary-color);
  border-radius: 0;
  height: 45px;
}

.file-input-container {
position: relative;
display: block;
top: 6px;
}

.file-input {
display: none; /* Hide the default file input */
}

.file-label {
display: inline-block;
color: rgba(0, 0, 0, 1);
border-radius: 4px;
font-weight: 300 !important;
font-family: var(--font-roboto);
cursor: pointer;
}

.file-label i {
margin-right: 8px;
color: var(--secondary-color);
}

