:root {
  --primary-color: #242424;
  --secondary-color: #cc1616;
  --white-color: #fff;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
   overflow-x: hidden;
   /* background-color: rgba(0, 0, 0, 0.1) !important; */
   color: #777777;
}
ul,ol{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 5px;
    font-style: normal;
    color:#272727;
}
p{
    margin-bottom: 0;
    font-style: normal;
}
a{
    text-decoration: none;
}
input[type=text]:focus{
    /* border: none; */
    outline: none;
}
/*preloader*/
#loading{
  position: fixed;
  width: 100%;
  height: 100vh;
  background:url(../images/Loader.webp)  no-repeat center;
  z-index: 999;
}
.section_gapping{
    padding: 70px 0;
    scroll-margin-top: 70px;
}
.section_bg{
    background:ghostwhite
}
.section_title h2{
  display: inline-block ;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  color:#272727;
}
.section_title h2::before{
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: var(--secondary-color);
  left: 0;
  bottom: 4px;
}
.section_title h2::after{
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: var(--secondary-color);
  left: 0;
  bottom: 0;
}
.sub_heading span{
  color: var(--secondary-color);
  padding-left: 5pxt;
}
.main_btn a{
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 3px;
  color: white;
  font-size: 14px;
}
.btn_orange a{
   background: var(--secondary-color);
   border: 2px solid var(--secondary-color);
}
.btn_orange a:hover{
  border: 2px solid var(--secondary-color);
  color: #fff;
  background: rgb(232, 50, 50);
}
.btn_dark a{
   background: #212121;
   border: 2px solid #212121;
}
.btn_dark a:hover{
  border: 2px solid #212121;
  background: transparent;
  color: white;
}
.text_orange{
  color: var(--secondary-color);
}
.center_heading .section_title{
  text-align: center;
}
.center_heading .section_title h2::before,.center_heading .section_title h2::after{
  left: 50%;
  transform: translateX(-50%);
}
.preloader {
  position: fixed;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.custom-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  height: 115px;
}

.loader {
  width: calc(90% - 0px);
  height: calc(100% - 0px);
  border-top: 8px solid var(--secondary-color);
  border-radius: 50%;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg)
  }
}
/*navbar*/
.top_nav{
  background: #212121;
  padding: 10px 0;
}
.top_list ul li{
  color: white;
  font-size: 14px;
  padding-left: 25px;
  display: inline-block;
  align-items: center;
}
.top_list ul li:first-child {
  padding: 0;
}
.top_list ul li a{
  color: #fff;
}
.top_list ul li i{
  padding-right: 8px;
} 
.social ul{
  display: flex;
  justify-content: end;
}
.social ul li{
  display: inline-block;
  padding-left: 10px;
}
.social ul li a{
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #373737;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: white;
  transition: all 0.3s;
}
.social ul li a:hover{
  background:var(--secondary-color);
  color:white;
}
/* .navbar-brand img{
  width: 100px;
  height: 36px;
} */
.navbar{
  background: white;
  padding: 8px 0;
  box-shadow: 0px 13px 10px -16px #1111117a;;
}
.navbar-brand img{
  width: 130px;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
  padding: 8px 15px;
  font-size: 14px;
}
.dropdown-menu li{
  margin-right: 0px !important;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.dropdown-menu li a{
  color: rgba(0,0,0,.55);
}
.dropdown-item{
  padding: 8px 15px;
}
.navbar-light .navbar-nav .nav-link:hover, .dropdown-item:hover {
  color:white;
  background: var(--secondary-color);
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color:white;
  background:var(--secondary-color);
}
.dropdown-toggle::after {
 display: none;
}
.navbar ul li{
  margin-right: 5px;
}

.form {
  display: flex;
  align-items: center;
}
.nav_icon{
  position: relative;
}
.nav_icon i{
  font-size: 20px;
}
.nav_icon span{
  position: absolute;
  width: 20px;
  right: -9px;
  top: -11px;
  height: 20px;
  line-height: 20px;
  border-radius: 50px;
  background: var(--secondary-color);
  color: white;
  text-align: center;
}
.form button{
  margin-left: 30px;
  background-color: transparent;
  border: none;
  background: var(--secondary-color);
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  line-height: 35px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: 70px;
  border-radius: 0;
  border-top: 3px solid black;
  width: 250px;
  padding: 0;
}
.navbar-light .navbar-toggler {
  background: var(--secondary-color);
  border:none;
  padding: 5px 8px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.navbar-toggler span{
  display: block;
  width: 23px;
  height: 3px;
  background: white;
  margin-bottom: 5px;
}
.navbar-toggler span:last-child{
  margin-bottom: 0;
}




/*banner*/
.banner{
  width: 100%;
  height: 70vh;
background-image: url(../images/banner.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
  /* background:rgba(0, 0, 0, 0.1); */
}
.banner_content{
  width: 100%;
  max-width: 80%;
  padding: 0 100px;
}
.banner_content h2{
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}
.banner_content h5{
  color: white;
  font-size: 1.5rem;
}

/*working process*/
.service_process{
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius:50%;
  text-align: center;
  background-color: var(--secondary-color);
  outline: 2px solid var(--secondary-color);
  outline-offset: 5px;
  box-shadow: 0px 4px 10px 0px rgb(230 230 230);
  color: #fff;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.service_process::before{
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 50px;
  background-image: url('../images/arrrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 139%;
  transform: translate(-50%, -50%);
}
.row > .col-lg-4:last-child .service_process::before{
  display: none;
}
.service_process_icon i{
  color: #fff;
}
.service_process:hover{
  background-color: white;
}
.service_process:hover i, .service_process:hover p{
  color: #cc1616;
}
.service_process p{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.service_process_icon i{
  font-size: 42px;
  color: #fff;
}
.working .section_title h2::before,.working .section_title h2::after{
  left: 50%;
  transform: translateX(-50%);
}

/**************************our expirence*******************/
.experience-counter {
  gap: 20px 0px;
  /* background-color: var(--secondary-color); */
}
.expirence .exp-content{ 
  height: 200px;
  padding: 30px 20px 20px 20px;
  background:var(--secondary-color);
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  transition: all 0.3s;
  text-align: center;
}
.exp-content:hover{
  box-shadow: 0 0 50px rgb(48 52 66 / 20%);
}
.exp-content img{
  border: 1px solid #fff;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  max-width: 90px;
  margin-bottom: 15px;
}
.exp-content span.count {
  display: block;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}
.exp-content h6{
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 400!important;
  color: #fff;
}
.mj-experience-img {
  background: url(../images/Vanguard-Citgo-2019-256-1080x675.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
}


/*lable*/
.contact_label{
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}
.contact_label::before{
  content:"";
  position: absolute;
  width: 19%;
  height: 179px;
  background-image: url(../images/service_engli.png);
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
  top: 0;
  left: 0px;
  background-size: cover;
}
.contact_label::after{
  content:"";
  position: absolute;
  width: 19%;
  height: 179px;
  background-image: url(../images/Socla-BA.webp);
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
  top: 0;
  right: 0px;
  background-size: cover;
}

.label_content h4{
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
}
.label_content h2 a{ 
  color: #f95959;
}
/*about*/
.about_left{
  background: #212121;
  color: white;
  padding: 50px 40px;
}
.about_left .sub_heading{
  font-weight: 700;
  margin: 30px 0;
}
.about_left .paragraph{
  opacity: 0.5;
  margin-bottom: 35px;
}
.about_left h6{
  text-transform: capitalize;
  font-weight: 700;
}
.about_left h6 span{
  color: #9e9e9e;
  font-weight: 400;
  font-style: italic;
}
.des{
  color: #fff;
  font-style: italic;
  text-transform: capitalize;
}
.about_right .about_list:last-child {
  margin-bottom: 0;
}
.about_list{
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
.about_icon i{
  font-size: 42px;
  color:#272727;
}
.about_content h5{
  font-weight: 600;
  font-size: 20px;
  color:#272727;
}
.about_content .about_paragraph{
   opacity: 0.5;
   font-size: 14px;
   line-height: 22px;
   margin-top: 20px;
}
/*service*/

.service_box{
  position: relative;
  min-height: 200px;
  background: white;
  box-shadow: 0px 4px 10px 0px rgb(230 230 230);
  padding: 25px 35px;
  display: flex;
  gap: 15px;
  transition: all 0.5s;
  z-index: 0;
  margin-bottom: 25px;
}
.service_box::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(252, 30, 30, 0.9);
  z-index: -1;
  visibility: hidden;
  transition: all 0.3s;
}
.service_box:hover::before{
  visibility: visible;
}
.service_box:hover{
  color: white;
  background-image: url(../images/Vanguard-Citgo-2019-256-1080x675.jpg);
}
.service_box:hover .service_icon{
  background: white;
  color: var(--secondary-color);
}
.service_box:hover .service_content h5{
  color: white;
}
.service_box:hover p{
  opacity: 1;
}
.service_box:hover .service_btn a{
  color: white;
}
.service_icon{
  background: var(--secondary-color);
  width: fit-content;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  color: white;
  text-align: center;
  font-size: 22px;
  /* flex-basis: 15%; */
}
.service_content{
  /* flex-basis: 85%; */
}
.service_content h5{
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
}
.service_content p{
  margin-bottom: 15px;
  opacity: 0.5;
}
.service_btn a{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  color: #212121;
}
/*recent news*/
.recent .nav{
  margin: auto;
  width: 100%;
  max-width: 800px;
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
}
.recent .nav::before{
  position: absolute;
  content: '\f03e';
  font-family: 'FontAwesome';
  color: var(--secondary-color);
  font-size: 26px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-tabs .nav-link{
  color:#999999;
  padding: 12px 20px;
}
.recentProject_box{
  position: relative;
}
.recent_overlay{
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  padding: 15px 15px;
  background:rgba(0,0,0,0.85);
  border: 5px solid var(--secondary-color);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.recentProject_box:hover .recent_overlay{
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.recent_overlay .recent_icon{
  width: 50px;
  height: 50px;
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.recent_overlay .recent_content{
  position: absolute;
  bottom: 5px;
  left: 15px;
}
.recent_content h5 a{
  color: white;
  font-size: 18px;
  margin-top: 0;
  transition: all 0.3s;
}
.recent_content h5 a:hover{
  color: var(--secondary-color);
}
.recent_news_slider.slick-initialized .slick-slide {
  display: flex;
}
.recent_news_slider .slick-dots li button:before
{
    margin-top: 15px;
    font-size: 18px;
}
.recent_news_slider .slick-dots li.slick-active button:before {
  color:var(--secondary-color);
}
.recet_project_btn a{
  color:white;
  background: #272727;
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px 35px;
  border: 5px;
}
/*shop*/
.shop{
  position: relative;
  background-image: url(../images/fire-pump-banner-image.jpeg);
  background-size: cover;
  z-index: 0;
  color: white;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding: 120px 0px 110px;
  text-align: center;
}
.shop::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.40);
  left: 0;
  bottom: 0;
  z-index: -1;
}
.shop_content h5{
  font-weight: 400;
}
.shop_content h3{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 2px;
}
.shop_btn{
  display: flex;
  justify-content: center;
}
.product_slider .slick-arrow::before{
  color: #272727;
  background:#e9e9e9;
  border: none;
}
.product_slider .slick-next:hover::before{
  background: var(--secondary-color);
  color: white;
}
.product_slider .slick-prev:hover::before {
  color: green !important;
  background: var(--secondary-color) !important;
}
.slick-slider button{
  z-index: 1;
}
/*character*/
.chareter .section_title h2{
  margin-bottom: 25px;
}
.chareter_left p{
  opacity: 0.8;
}
.chareter_box{
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.chareter_icon{
  background: #f4f4f4;
  width: fit-content;
  height: fit-content;
  color: black;
  font-size: 20px;
  text-align: center;
}
.chareter_icon i{
  font-size: 25px;
  padding: 10px;
}
.chareter_content h5{
  font-weight: 700;
}
.custom-input{
  padding-bottom: 20px;
}
.text_box{
  background: #f4f4f4;
  color: #212121;
  padding: 13px 20px;
  border: none;
  border-radius: 0;
}
.text_box:focus{
  border: 1px solid var(--secondary-color);
  box-shadow: none;
  background: white;
}
.text_box::placeholder{
  color: #373737;
}
.chareter_right form{
  border: 2px solid #f4f4f4;
  padding: 18px 18px 35px 18px;
}
.chareter_right form button{
  display: block;
  border: 0;
  width: 100%;
  padding: 10px 20px;
  background: #212121;
  color: white;
  text-transform: uppercase;
  border-radius: 0;
}
/*slider*/
.custom_container{
  width: 100%;
  max-width: 900px;
}
.slider{
  position: relative;
  background-image: url(../images/backflow_banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  height: 100%;
  min-height: 500px;
  z-index: 0;
}
.slider::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  left: 0;
  bottom: 0;
  z-index: -1;
}
.slider_grid{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.slider .slick-initialized .slick-slide {
  display: flex;
}
.slider_content{
  text-align: center;
}
.slider_content img{
  display: inline-block;
  width: 100%;
  max-width: 65px;
}
.slider_content h5{
  font-style: italic;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.slider_icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.slider_content img{
  border-radius: 50%;
  margin-bottom: 25px;
}
.slilder_div .slick-arrow::before{
  background:transparent;
  border: 1px solid white;
  border-radius: 2px;
  font-size: 15px;
}
.slilder_div button{
  top:auto;
  bottom: 100px;
  transform: none;
}
/*mobile menu*/
.mobile_menu .navbar-nav {
  flex-direction: column;
}
.btn-canbas{
  border: none;
  background:#f4f4f4;
  width: 40px;
  height: 40px;
  color: #212121;
}
.offcanvas{
  background: #212121;
}
.offcanvas-body {
  padding:0;
}
.mobile_menu ul li a{
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}
.mobile_menu ul li a:hover{
  color: white;
}
.mobile_menu ul li a:visited{
  color: white;
}
.mobile_menu ul li a:active{
  color: white;
}
.mobile_menu .dropdown-item {
  background: #212121;
}
.mobile_menu ul li{
  width: 100%;
  border-top: 1px solid gray;
  border-bottom:0;
}
.offcanvas-body .navbar{
  display: block;
  background:  #212121;;
}
.mobile_menu .dropdown-menu{
  padding: 0;
}
.mobile_menu .navbar-nav .nav-link {
    padding: 12px 17px;
}
.mobile_menu .dropdown-toggle{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_menu .dropdown-toggle i{
  width: 40px;
  height: 30px;
  border: 1px solid gray;
  text-align: center;
  line-height: 30px;
}
/*product*/
.product_box{
  height: 370px;
  border: 1px solid #e0e0e0;
  padding: 15px 15px;
}
.product_img{
  width: 100%;           
  height: 200px;        
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
}
.product_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;   
}
.product_content{
  text-align: center;
  padding: 15px 0;
}
.product_content h5 a{
  color: #212121;
  font-weight: 700;
  text-transform: capitalize;
}
.product_content .offer{
  font-size: 14px;
  font-weight: 500;
}
.product_content .des{
  font-weight: 600;
}
.bottom_grid{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.bottom_grid .icon{
  background: #212121;
  color: white;
  padding: 10px 10px;
  flex-basis: 25%;
}
.bottom_grid .content{
  background: var(--secondary-color);
  color: white;
  flex-basis: 75%;
  padding: 10px 10px;
  display: flex;
  align-items: center;
}
/*logo slider*/
 /* the slides */
.logo_box{
  border: 1px solid #e0e0e0;
  position: relative;
  text-align: center;
  height: 100%;
  min-height: 110px;
  padding: 12px;
}
.logo_content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background-color: rgba(252, 30, 30, 0.9);
  color: white;
  transition: all 0.3s;
  visibility: hidden;
}
.logo_box:hover .logo_content{
  visibility: visible;
  transition: all 0.3s;
}
.logo_content span{
  display: block;
  font-size: 25px;
  padding-right: 20px;
  border-right: 1px solid white;
}
.logo_content h5{
  font-weight: 400;
  font-size: 18px;
}
.autoplay_logo .slick-slide img {
  display: inline-block;
}
/*recent news*/
.recent_news_img{
  position: relative;
}
.recent_news_img .icon{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  text-align: center;
  background-color: rgba(245, 45, 45, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  visibility: hidden;
}
.recent_news_grid:hover .recent_news_img .icon{
  visibility: visible;
}
.recent_news_content h5 a{
  color: #212121;
  font-weight: 400;
  text-transform: capitalize;
}
.recent_news_content ul{
  margin: 8px 0;
}
.recent_news_content ul li{
  display: inline-block;
  padding-right: 15px;
}
.recent_news_content ul li a{
  font-size: 14px;
  color: #afafaf;
}
.recent_news_content li i{
  padding-right: 7px;
  color: var(--secondary-color);
}
.recent_news_content .paragraph{
  opacity: 0.8;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
.line{
  width: 100%;
  height: 1px;
  background: #afafaf;
  position: relative;
  z-index: 0;
}
.line::after{
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  background: var(--secondary-color);
  left: 0;
  bottom: 0;
  z-index: 1;
}
.user_gird{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.user_gird .avtar img{
  border-radius: 50%;
  width: 100%;
  max-width: 50px;
}
.user_gird .content .des{
  font-size: 14px;
}
/*newsletter*/
.newsletter{
  background: var(--secondary-color);
  padding: 40px 0;
}
.newsletter_content h4{
  font-size: 30px;
  font-weight: 700;
}
.newsletter_content p{
  font-size: 14px;
}
.newsletter_input input{

  box-shadow: 1px 2px 5px 2px rgb(0 0 0 / 10%) inset;
  border: none;
  padding: 10px 20px;
  position: relative;
}
.newsletter_input input[type="text"]::placeholder{
   color:#373737;
   font-size: 14px;
}
.newsletter_input{
  position: relative;
}
.newsletter_input i{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #373737;
}
.newsletter_btn a{
  display: inline-block;
  background: white;
  color: var(--secondary-color);
  padding: 13px 35px;
  font-size: 15px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
/*footer*/
.footer_top{
  padding: 50px 0;
  background: #212121;
}
.text,.text:hover{
  color: white;
  opacity: 0.8;
  font-size: 14px;
  line-height: 25px;
}
.widegts img{
  width: 170px;
}
.social-link{
  display: flex;
  gap: 10px;
}
.social-link li a{
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 15px;
  border: 1px solid var(--white-color)  ;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--secondary-color);
  background-color: #fff;
  transition: all 0.3s;
}
.social-link li a i{
  padding-right: 0 !important;
}
.social-link li a:hover{
  background-color: #0a0806;
  border-color: var(--secondary-color);
  color: #ffff;
  text-decoration: none;
}
.widegts ul li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fff;
  text-decoration: none;
}
.social-link li{
  border-bottom: 0 !important;
} 
.widegts ul li:last-child{
  border: none;
}
.widegts ul li a{
  color: white;
}
.widegts ul li i{
  color: var(--secondary-color);
  padding-right: 10px;
}
.widegts .section_title h2{
  font-size: 22px;
  color: white;
}
.widegts form{
  margin-top: 10px;
}
.widegts form .text_box{
  background: transparent;
  margin-bottom: 20px;
  padding: 8px 15px;
  border:1px solid rgba(255,255,255,0.10);
  color: #fff;
}
.widegts form .text_box::placeholder{
  font-size: 14px;
  color: #777777;
}
.widegts form .text_box:focus{
  outline: none;
  box-shadow: none;
  background: transparent;
  border: 1px solid var(--secondary-color);
}
.widegts form button{
  padding: 10px 25px;
  background: white;
  color: #272727;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.widegts form button:hover{
  background: var(--secondary-color);
  color: #fff;
}
.latest_news{
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.latest_news ul li a:hover{
  text-decoration: underline;
}
.latest_news_img{
  position: relative;
}
.latest_news .overlay{
  position: absolute;
  content: "";
  width: 100%;
  height:55%;
  left: 0;
  top: 0;
  background-color: rgba(252,114,30,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  visibility: hidden;
}
.latest_news:hover .overlay{
  visibility: visible;
}
.latest_news:last-child{
  border: none;
}
.latest_news_content p:last-child{
  font-style: italic;
}
.latest_news_content p i{
  color:var(--secondary-color);
  padding-right: 8px;
}
.footer_bottom{
  padding: 20px 0;
  background: black;
}
.footer_bottom a{
  color: var(--secondary-color);
}
.copy_right a{
  color: var(--secondary-color);
}
.footer_bottom ul{
  text-align: right;
}
.footer_bottom ul li{
  display: inline-block;
  padding: 0 13px;
}
.footer_bottom ul li a{
  color: white;
  text-transform: capitalize;
  font-size: 14px;
  opacity: 0.6;
}
.footer_bottom ul li a:hover{
  color: var(--secondary-color);
  opacity: 1;
}
.scroll_top a{
  display: inline-block;
  background-color:black;
  color: white;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  position: fixed;
  bottom: 15px;
  right: 15px;
  border: 2px solid var(--secondary-color);
}
.scroll_top a:hover{
  background: var(--secondary-color);
  color: white;
}
#myBtn{
  display: none;
}
/*canvas*/
.slick-arrow::before{
  font-family: 'FontAwesome';
  color: white;
  font-size: 25px;
  background:rgba(201,201,201,0.75);
  border: 2px solid white;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.slick-prev:before {
  content: '\f104';
}

.slick-next:before {
  content: '\f105';
}

.slick-track {
  display: flex;
  gap: 1rem;
}

.slick-prev {
  left: 0px;
}
.slick-next {
  right: 20px;
}

/*=================================================about page=========================================*/
/*about banner*/
.about_banner_content h2{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 30px;
}
.about_banner_content h2::after{
  position: absolute;
  content: "";
  width: 100px;
  height: 3px;
  background: var(--secondary-color);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
/*page info*/
.page_info{
  border-bottom: 1px solid gainsboro;
}
.page_list ul{
  display: flex;
  justify-content: end;
}
.page_list ul li{
  display: inline-block;
  padding-left: 15px;
}
.page_list ul li a{
  color: #9e9e9e;
}
.page_info .active:hover{
  color: var(--secondary-color);
}
.purchase_content h4{
  font-weight: 400;
}
.purchase_content .paragraph{
  margin: 25px 0;
}
.purchase_img{
  position: relative;
}
.purchase_img::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.30);
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.purchase_img_icon{
  position: absolute;
  font-size: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white;
  z-index: 1;
}
.purchase_img:hover::after{
   visibility: visible;
   opacity: 1;
}

/*=================== whychoose page css*/
.detailsPage ul{
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}
.detailsPage ul li{
  padding-bottom: 10px;
}
.detailsPage .section_title h2::before,.detailsPage .section_title h2::after{
  left: 50%;
  transform: translateX(-50%);
}
.whyChooseWrapper{
    position: relative;
    background-image: url(../images/prime-inspection-workflow-banner.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.whyChooseWrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80vh;
  left: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.7;
  z-index: -1;
}
.why_choose_content h4{
  color: #fff;
  font-size: 4rem;
}
.content_wrapper{
  padding: 15px 0;
}
.content_wrapper a{
 color: var(--secondary-color);
}
.content_wrapper a:hover{
  text-decoration: underline;
}
/*form validation css*/
.required-asterisk{
  position: relative;
}
.required-asterisk::after {
  content: " *";
  color: red;
}
.error {
  color: red;
  font-size: 0.9rem;
}
.form-control.invalid {
  border: 1px solid red;
}