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

:root {
  --primary-color: #1B75BA;
  --primary-color-hover: #126cb1;
  --primary-color-dark: #033b66;
  --secondary-color: #D98051;
  --yellow-color: #FFCB04;
  --white-color: #fff;
  --light-blue-color: #d0e9fc;
  --heading-color: #212529;
  --body-color: #555555;
  --black-color: #000000;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--body-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}
b, strong {
  font-weight: 600;
}
.products .more-link a,
.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1em;
  padding: 18px 55px 18px 20px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.products .more-link a::before,
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  background-image: url('../img/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
}
.products .more-link a::after,
.btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 102%;
  border-radius: 99px;
  background: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.products .more-link a,
.btn-primary {
  color: var(--white-color);
  background: var(--primary-color);
  text-transform: capitalize;
}
.products .more-link a:hover::before,
.btn-primary:hover:before {
  background-color: var(--primary-color);
}
.products .more-link a:hover:after,
.btn-primary:hover::after {
  width: 106%;
}
.product-item .product-content p a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.gap-5 {
  gap: 5px !important
}

.gap-10 {
  gap: 10px !important
}

.gap-20 {
  gap: 20px !important
}

.gap-30 {
  gap: 30px !important
}

.gap-40 {
  gap: 40px !important
}

.top-bar {
  padding: 12px 0;
  background: var(--primary-color);
  color: var(--white-color);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

#block-kap-aboutus ul {
  display: flex;
  column-gap: 50px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  background-color: var(--light-blue-color);
  color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 15px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

#testimonials h2,
.title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 20px;
}

#about {
  padding: 120px 0;
}

/****************************/
/***     Navigation css     ***/
/****************************/
.navbar {
  padding: 15px 0;
}

header .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 18px;
  color: var(--heading-color);
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

/******************/
/** slide **/
#slide .item {
  height: 700px;
  position: relative;
}

#slide .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#slide .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

#slide .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
  max-width: 700px;
}

#slide .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: var(--white-color);
}

#slide .item .cover .header-content h1 a {
  font-size: 44px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: var(--white-color);
  text-decoration: none;
  line-height: 52px;
  display: block;
  margin-bottom: 25px;
}

#slide .item .cover .header-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: var(--white-color);
}

#slide .item .cover .header-content a.btn {
  margin-left: 0;
}

#slide .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#slide .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#slide .owl-item.active h4,
#slide .owl-item.active a,
#slide .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

#slide .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#slide .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

#slide .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: var(--white-color);
}

#slide .owl-nav .owl-prev:focus {
  outline: 0;
}

#slide .owl-nav .owl-prev:hover {
  background: var(--black-color) !important;
}

#slide .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

#slide .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: var(--white-color);
}

#slide .owl-nav .owl-next:focus {
  outline: 0;
}

#slide .owl-nav .owl-next:hover {
  background: var(--black-color) !important;
}

#slide:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

#slide:hover .owl-next {
  right: 0px;
  opacity: 1;
}


/****************************/
/***     Services css     ***/
/****************************/

#services .view-header {
  margin-bottom: 50px;
}

.view-display-id-page_services .views-view-responsive-grid__item,
#services .views-view-responsive-grid__item,
.view-display-id-page_services .views-view-responsive-grid__item .views-view-responsive-grid__item-inner,
#services .views-view-responsive-grid__item .views-view-responsive-grid__item-inner {
  height: 100%;
}

#services {
  padding: 50px 0 70px;
  background: #f7f8fb;
  position: relative;
}

.service-item {
  padding: 30px;
  background: #fff;
  border: 2px solid #1c75ba21;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.service-item:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0px;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
  height: 100%;
  z-index: 1;
}

.service-item:hover:before {
  top: 0;
}

.service-item .icon-box {
  background-color: var(--light-blue-color);
  height: 52px;
  width: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.service-item .icon-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0px;
  background-color: var(--white-color);
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.service-item:hover .icon-box::before {
  top: 0;
}

.service-item .icon-box img {
  position: relative;
  z-index: 1;
  max-width: 30px;
}

.service-item .service-body {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.view-display-id-page_products .views-view-responsive-grid__item-inner h5 a,
.products .view-display-id-block_products .views-view-responsive-grid__item-inner h5 a,
.service-item .service-body h3 a {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.5s ease-in-out;
  color: var(--primary-color-dark);
  text-decoration: none;
  line-height: 23px;
  display: block;
  position: relative;
  z-index: 2;
}

.service-item:hover .service-body h3 a {
  color: var(--white-color);
}

.service-item .service-body p {
  margin: 0;
  transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body p {
  color: var(--white-color);
}

.service-item .service-footer a {
  background: var(--secondary-color) url('../img/arrow-white.svg') no-repeat center center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}


.service-item .service-footer a:hover {
  background-color: var(--primary-color-dark);
}

.service-cta-item {
  padding: 40px 100px;
  text-align: center;
}

.service-cta-item .icon-box {
  margin: 0 auto;
  margin-bottom: 20px;
}

.service-cta-item:hover .service-cta-btn .btn-default:after {
  width: 100%;
}

.service-cta-item:hover .service-cta-btn .btn-default:before {
  background-color: var(--secondary-color);
}


/****************************/
/****     Breadcrumb css    ***/
/****************************/


#title-breadcrumb {
  height: 300px;
  background: url('../img/bg-breadcrumb.jpg') no-repeat center center;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background-size: cover;
}

.breadcrumb .breadcrumb-item::before,
.breadcrumb .breadcrumb-item {
  color: var(--white-color);
}

.breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

#title-breadcrumb h1 {
  color: var(--white-color);
  font-weight: 600;
}

#title-breadcrumb ol.breadcrumb {
  justify-content: center;
}


/****************************/
/****     products css    ***/
/****************************/
#products {
  padding: 120px 0;
  position: relative;
}
.products {
  position: relative;
}
.view-display-id-page_products .views-view-responsive-grid__item-inner,
.products .view-display-id-block_products .views-view-responsive-grid__item-inner {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px #00000012;
  height: 100%;
}
.product-item img {
  height: 220px;
  width: auto;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}
/****************************/
/****     Projects css    ***/
/****************************/

#projects {
  padding: 120px 0;
  background: var(--primary-color-dark) url('../img/bg-projects.jpg') no-repeat center center;
  background-size: cover;
}

#projects .view-header,
#testimonials .view-header {
  margin-bottom: 50px;
}

#projects .view-header h2 {
  color: var(--white-color);
}

.project-item {
  margin-bottom: 30px;
}

.project-item .inner {
  position: relative;
}

.project-info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  color: #b7b7b7;
  background-color: #010b1fe6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.project-info {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.project-item .inner img {
  min-height: 450px;
  object-fit: cover;
}

.project-item .inner:hover .project-info {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.project-info a {
  color: #b7b7b7;
}

.project-info h3 a {
  color: #f2f4f6;
  text-decoration: none;
}

.project-info a:hover {
  color: #ffd100;
}

.project-info .project-meta {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0;
  padding: 30px;
  border-bottom: 1px solid rgba(183, 183, 183, 0.2);
}

.project-info .project-content {
  padding: 55px 30px;
}

.project-info .project-content p {
  margin-bottom: 50px;
}

.project-info .project-content i {
  margin-left: 10px;
}

.project-grid-2 {
  overflow: hidden;
  margin-left: -1px;
}

.project-grid-2 .project-item {
  margin-bottom: 0;
}

.project-detail-box {
  padding: 30px;
  background-color: #f2f4f6;
}

.project-detail-box ul {
  list-style: none;
  color: #707070;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.project-detail-box ul li {
  padding-bottom: 24px;
}

.project-detail-box ul li:last-child {
  padding-bottom: 0;
}

.project-detail-box a {
  text-decoration: underline;
}

.project-detail-box span {
  float: right;
  color: #03132b;
}

.project-share {
  text-align: left;
}

.project-share span {
  color: #707070;
  text-decoration: underline;
  line-height: 26px;
}

.projects-list {
  margin-bottom: 90px;
  position: relative;
  display: inline-block;
}

#testimonials {
  padding: 120px 0;
  background: #F6FBFF url('../img/bg-testimonials-min.png') no-repeat center center;
  background-size: cover;
  position: relative;
}
#testimonials .view-header {
  text-align: center;
}
#testimonials .testimonials-three__single {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #1c75ba21;
}
.testimonials .subtitle {
  background: var(--primary-color);
  color: var(--white-color);
}
.products .more-link a {
  position: absolute;
  right: 0;
  top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1em;
  text-decoration: none;
}
table thead th strong,
table thead th span {
  font-weight: 600;
}

article .field--name-field-image img {
  margin-bottom: 30px;
}

.view-display-id-page_industrial .views-field-field-image img {
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}

.view-display-id-page_industrial .views-view-responsive-grid__item .views-field-title a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  padding: 10px 25px 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.view-display-id-page_industrial .views-view-responsive-grid__item:hover .views-field-title a {
  color: var(--white-color);
}

.view-display-id-page_industrial .views-view-responsive-grid__item {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 0 30px #0000001a;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.view-display-id-page_industrial .views-view-responsive-grid__item:hover {
  background: var(--primary-color);
}

#views-exposed-form-products-page-products .form-item label {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 500;
}
/* Style de base pour le conteneur */
.bef-links {
  margin: 20px 0;
}

/* Style pour la liste */
.bef-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Pour permettre le wrapping si nécessaire */
  gap: 10px; /* Espace entre les éléments */
}

/* Style des éléments de la liste */
.bef-links ul li {
  margin: 0;
}

/* Style des liens de la liste */
.bef-links ul li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #007bff; /* Couleur de fond des boutons */
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
}

/* Style lorsque le lien est sélectionné */
.bef-link--selected {
  background-color: #28a745; /* Couleur du bouton sélectionné */
  border-color: #218838;
}

/* Effet hover sur les liens */
.bef-links ul li a:hover {
  background-color: #0056b3; /* Couleur au survol */
}

/* Style responsive pour petits écrans */
@media (max-width: 768px) {
  .bef-links ul {
      flex-direction: column; /* Empile les filtres sur petits écrans */
  }
}

#views-bootstrap-projects-block-projects-sidebar > div {
  margin-bottom: 20px;
}
#views-bootstrap-projects-block-projects-sidebar > div a {
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 22px;
}
.block-views-blockprojects-block-projects-sidebar h2 {
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: capitalize;
}
#content-page-article .region-content {
  text-align: justify;
}
.one-project-page .views-field-title a {
  text-decoration: none;
  color: var(--primary-color);
  display: block;
  margin: 10px 0;
  font-weight: 600;
  font-size: 18px;
}



/****************************/
/****     Footer css    ***/
/****************************/
.footer_rs img {
  height: 18px;
  width: auto;
}

footer.footer {
  position: relative;
  color: var(--white-color);
  padding: 60px 0 0 0;
  background: #161616;
  border-top: solid 8px var(--yellow-color);
}

.footer_newsletter h5,
.footer_menus h5 {
  font-size: 26px;
  color: var(--white-color);
}

.footer_copyright {
  background: var(--black-color);
}

.footer_copyright,
.footer_widgets {
  position: relative;
  z-index: 3;
  padding: 20px 0;
  font-size: 14px;
}

footer.footer::before {
  position: absolute;
  content: '';
  width: 100%;
  background: url('../img/circles-pattern-w.svg') no-repeat center top 30px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}

footer .navbar-nav a.nav-link {
  padding: 8px 20px !important;
  color: #b2b2b2;
  font-size: 16px;
  font-weight: initial;
  line-height: normal;
  position: relative;
}

footer .navbar-nav a.nav-link::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  left: 3px;
  top: 16px;
}

.footer_widgets {
  position: relative;
  z-index: 2;
}

.footer_newsletter {
  padding: 10px 30px;
  border-radius: 20px;
}

.footer_newsletter h5,
.footer_menus h5 {
  font-size: 28px;
  color: var(--white-color);
}

.footer_newsletter h3 {
  color: var(--white-color);
}

.footer_newsletter p {
  margin-bottom: 0;
}