/**
* Template Name: Gp - v4.7.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #059FFF;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

.main-color {
  color: #059FFF !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.bkack {
  background-color: #000 !important;
}

.terms-content {
  margin-top: 141px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #059FFF;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #059FFF;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #059FFF;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 423px) {
  #topbar i span {
    font-size: 13px;
  }
  #topbar .ri-mail-line {
    margin-left: 11px !important;
  }
  
}

#topbar i {
  color: #059FFF;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgb(0 0 0 / 85%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 19px;
  }
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  position: relative;
  background: linear-gradient(90deg, #08d9ef 0%, #206bbc 100%);
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
  z-index: 1;
}

.book-a-table-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #206bbc 0%, #08d9ef 100%);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.book-a-table-btn:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 15px;
  line-height: 0;
  margin-left: 5px;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #059FFF !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #059FFF !important;
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #059FFF;
  
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s all ease-out;
}

.navbar a:hover::after {
  transform: scale(1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #059FFF;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #059FFF;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#hero #myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.79); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero-home {
  background: url("../img/hero-bg.webp") top center;
}

.hero-category {
  height: 70vh !important;
}
#hero .logo {
  margin-bottom: 24px;
  height: 138px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
  z-index: 2; 
}

#hero h1 {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #059FFF;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #059FFF;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #059FFF;
}

#hero .icon-box:hover {
  border-color: #059FFF;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 50px;
  }

  #hero .logo {
    margin-top: 25px;
    margin-bottom: 18px;
    height: 100px;
  }
}
#hero .bounce {
    animation: bounce 2s infinite;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
    z-index: 2;
    transform: translateX(-50%);
}

#hero .bounce i{
    color: white;
    font-size: 30px;
}
@keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title  {
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #7bccff;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  padding: 60px 0;
}

.import-export {
  padding: 0 0 60px;
}

.import-export img,
.about img {
  border-radius: 10px;
}

.import-export h3,
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #059FFF;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .relations {
  padding-bottom: 20px;
}

.clients img{
    width: 100%;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    margin: 10px 0px;
}

@media(max-width: 635px){
  .clients img{
      margin: 5px 0px;
  }
}


/* Start notre travail */
.notre-travail{
	padding: 60px 0 20px
}

.notre-travail h3 {
	margin-bottom: 50px;
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.notre-travail .travail-item
{
	position: relative;
    margin-left: 1.33333%;
    margin-right: 1.33333%;
    margin-bottom: 26px;
    border-radius: 10px;
    height: 400px;
    padding: 0;
	cursor: pointer;
		overflow: hidden;
		
	box-shadow: 0 1px 5px rgba(0,0,0,.20);
}

.notre-travail .travail-item img
{
	height: 100%
}

.notre-travail .travail-item .over{
  visibility: hidden;
  opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}

.notre-travail .travail-item .over
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 42, 74, 0.877);
	color: #fff
}

.notre-travail .travail-item:hover .over
{
  visibility: visible;
  opacity: 1;
}

.notre-travail .travail-item .over p:first-child
{
	font-size: 24px;
	margin-top: 50px;
	margin-bottom: 0
}
@media(max-width: 575px){
  .categories .category-item .over h3,
	.notre-travail .travail-item .over h3
  {
  	font-size: 18px;
  }
}

.categories .category-item .over p,
.notre-travail .travail-item .over p
{
	margin: 20px 10px 30px; 
	line-height: 1.7
}

.categories .category-item .over p {
  font-weight: 600;
}


@media(max-width: 575px){
  .categories .category-item .over p,
  .notre-travail .travail-item .over p
  {
  	font-size: 15px;
  }
}


.content-button
{
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	text-align: center;
}

.categories .category-item img,
.notre-travail .travail-item img
{
	width: 100%;
}

.categories .category-item .over a,
.categories .category-item .over-v a,
.notre-travail .travail-item .over a,
.notre-travail .travail-item .over-v a
{
	background-color: transparent;
	border-top: 2px solid #fff;
	width: 100%;
	padding: 10px 20px;
	display: block;
	color: #fff;
	cursor: pointer;
	text-decoration: none;

	border-top-right-radius: 40%;
	border-top-left-radius: 40%;
	-webkit-border-top-right-radius: 40%;
	-webkit-border-top-left-radius: 40%;
	-moz-border-top-right-radius: 40%;
	-moz-border-top-left-radius: 40%;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out
}

.categories .category-item .over a:hover,
.categories .category-item .over-v a:hover,
.notre-travail .travail-item .over a:hover,
.notre-travail .travail-item .over-v a:hover
{
	background-color: #fff;
	color: #185094;
}
/* End notre travail */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
  padding: 60px 0 0
}
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 30px 15px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 10px;
  height: 100%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon img {
  height: 80px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 {
  color: #151515;
  transition: ease-in-out 0.3s;
}


.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transform: translateY(-10px);
  cursor: pointer;
}

.services .icon-box:hover h4 {
  color: #059FFF;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 10px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  margin: 10px 0;

  border: 1px solid #ebebeb;
  border-radius: 10px;
}

.features .icon-box:hover {
  border-color: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transform: translateY(-2px);
  cursor: pointer;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-size: 15px;
  color: #493c3e;
  transition: ease-in-out 0.3s;

  max-height: 2.4em !important;
  line-height: 1.2em !important;
  overflow-y: hidden;
  /* see @Marco Bonnelli answer to improve this part */
  /* perhaps throw in some padding and margin control to be sure 
     - box-sizing ? */
  box-sizing: content-box !important;
}

.features .icon-box:hover h3 {
  color: #059FFF;
}

.features .icon-box .active h3 {
  color: #f00 !important;
}
    
.features .active h3 {
  color: #059FFF !important;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.webp") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #059FFF;
  border-color: #059FFF;
  color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #059FFF;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #059FFF;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #059FFF;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #059FFF;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 17px;
  background: transparent;
  border: 1px solid #059fff;
  color: #059fff;
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}


.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #059FFF;
}

.contact .php-email-form input {
  height: 50px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #059FFF;
  border: 0;
  padding: 10px 24px;
  color: #ffffff;
  transition: 0.4s;
  border-radius: 6px;
  border: 1px solid #059FFF;
}

.contact .php-email-form button[type=submit]:hover {
  background: transparent;
  border: 1px solid #059FFF;
  color: #059FFF;
}

.contact .php-email-form .g-recaptcha {
 margin-bottom: 17px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #000;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #059FFF;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #059FFF;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #059FFF;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #059FFF;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #059FFF;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .footer-logo img {
  height: 113px;
}


/*--------------------------------------------------------------
# Start Products
--------------------------------------------------------------*/
.products {
  padding: 0;
  overflow: hidden;
}

.navbar-search {
  padding: 0;
}

.navbar-search input{
  width: 350px;
}


@media (max-width: 768px) {
  .navbar-search input{
    width: 315px;
  }
  .navbar-search .title-search {
    display: none;
  }
  .products {
  padding: 0 10px;
}
}

@media (max-width: 778px) {
  .navbar-search .form-search{
    width: 100%;
  }
  .navbar-search input{
    width: 100%;
  }
}


.navbar-search-product {
  margin: 20px 0 !important;
  padding: 17px 10px !important;
  border-radius: 10px !important;
}

.products .sidebar {
  margin-top: 10px;
  margin-bottom: 10px;
}

.products .sidebar h4{
  color: #000;
}

.products .sidebar .list-group .list-group-item a{
  color: #000 !important;
  transition: all 0.4s;
}

.products .sidebar .list-group .list-group-item:hover a{
  color: #059FFF !important;
}

.products .sidebar .list-group .disabled a{
  color: #059FFF !important;
}

.products .product{
  padding: 2px;
}

.products .row-product {
  padding-right: 5px;
  padding-left: 5px;
}

.products .product .card{
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  margin: 10px;
  position: relative;
  border-color: #dfe2e1 !important;
  border-radius: 10px !important;
  overflow: hidden;
}

@media (max-width: 600px) {
  .products .product .card{
    margin: 5px;
  }
  .products .product .card-body {
    padding: 8px;
  }
}

@media (max-width: 441px) {
  .products .product .card-title {
    font-size: 16px;
  }
  .products .product .btn,
  .products .product .card-text {
    font-size: 14px;
  }
}

.products .product .card:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  cursor: pointer;
}

.products .product .img-thumbnail {
  padding: 0 !important;
  border: none !important;
}

.products .product .card-title {
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;

}

.label-top {
    position: absolute;
    background-color: var(--label-index);
    top: 8px;
    right: 8px;
    padding: 5px 10px 5px 10px;
}

.products .product .card-text {
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.products .product .btn {
  border-radius: 20px;
  width: 100%;
  background-color: #059FFF;
  color: #fff;
}

.products .no-products-message {
  padding-right: 30px;
  padding-left: 30px;
}

.sub-categories .sub-categories-box {
  margin: 10px 0 !important;
  border: 1px solid #dfe2e1 !important;
  border-radius: 8px;
  transition: ease-in-out 0.3s;
  padding: 0 !important;
}

@media (max-width: 762px) {
  .sub-categories .sub-categories-box {
    margin: 8px 0 !important;
  }
}


.sub-categories .sub-categories-box a{
  display: block;
  height: 100%;
  width: 100%;
  padding: 8px 16px !important;
}

.sub-categories .sub-categories-box a i{
  float: right;
}

.sub-categories .sub-categories-box:hover {
  border-color: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transform: translateY(-2px);
  cursor: pointer;
}
    
.sub-categories-box .disabled a {
  color: #059FFF !important;
}

/*--------------------------------------------------------------
# End Products
--------------------------------------------------------------*/

/* Start Categories */
.categories {
  background-color: #f3faff;
}
.categories .category-item img {
  object-fit: cover;
  height: 100%;
  -webkit-transition:all .5s ease-in-out;
  -moz-transition:all .5s ease-in-out;
  -o-transition:all .5s ease-in-out;
  transition:all .5s ease-in-out
}

.categories .category-item:hover img {
  transform: scale(1.1);
}
.categories .category-item
{
  position: relative;
    margin-left: 1.33333%;
    margin-right: 1.33333%;
    margin-bottom: 26px;
    border-radius: 10px;
    height: 176px;
    padding: 0;
  cursor: pointer;
    overflow: hidden;
    
  box-shadow: rgb(15 42 74 / 65%);
}
.categories .category-item .over,
.categories .category-item .over-v
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 42, 74, 0.6);
  color: #fff
}

.categories .category-item .over
{
    display: table;
    text-align: center;
}
.categories .category-item .over p
{
  font-size: 17px;
  display: table-cell;
  vertical-align: middle;
}
/* End Categories */

/* Start pagination */
 .pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px; /* Adjust as needed */
    }

    .pagination a {
        margin: 0 5px;
        padding: 6px 15px;
        text-decoration: none;
        border: 1px solid #dfe2e1;
        border-radius: 8px;
        background-color: #fff;
        color: #333;
    }

    .pagination a.active {
        background-color: #04a0ff;
        color: white;
        border: 1px solid #04a0ff;
    }
/* End pagination */

/* Start Product */
.product-section {
  padding: 180px 0 20px;
}

.product-section .description {
  margin-top: 20px;
}
.product-section .icon-hover:hover {
  border-color: #3b71ca !important;
  background-color: white !important;
  color: #3b71ca !important;
}

.product-section .icon-hover:hover i {
  color: #3b71ca !important;
}

.product-section .nav-pills .nav-item {
  padding: 8px 5px;
}

.product-section .nav-pills .nav-link {
  color: rgb(0 0 0 / 66%) !important;
  background-color: #f0f3f2 !important;
  border: 1px solid #f0f3f2;
}

.product-section .nav-pills .nav-link.active,
.product-section .nav-pills .nav-link:hover  {
  color: #059FFF !important;
  border-color: #059FFF !important;
  background-color: #fff !important;
}
.product-section .product-info .tab-pane {
  padding: 10px !important;
}

.product-section .btn-add-to-card {
  background-color: #059FFF !important;
  color: #fff !important;
  padding: 15px 30px;
    margin-top: 20px;
    font-weight: 600;
}

.product-section .product-info .carousel-navigation {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.product-section .product-info .carousel-thumb {
  width: 50px; /* Adjust the width as needed */
  height: 50px; /* Adjust the height as needed */
  margin: 0 5px; /* Adjust the margin as needed */
  cursor: pointer;
  transition: opacity 0.3s ease;
}


.carousel-inner {
  overflow: hidden; /* Hide the overflow content */
}

/* End Product */
.image-container {
    position: relative;
    width: 100%; /* Full width of the container */
    padding-top: 100%; /* Aspect ratio of 1:1 (square) */
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
}


.alert-message {
  background-color: white !important;
    position: fixed; /* Positioning relative to the viewport */
    top: 20%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust the exact center */
    z-index: 1050; /* Ensure it's above other content */
    width: 80%; /* Adjust width as per your requirement */
    max-width: 600px; /* Maximum width */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: Adds a shadow for better visibility */
    animation: fadeInSlideDown 0.5s ease-out;
    padding: 16px !important;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.alert-message i {
  font-size: 60px;
}

.alert-message h4 {
  font-size: 25px;
  margin-bottom: 20px;
}

.alert-message p {
  font-size: 20px;
}

@media (max-width: 762px) {
  .alert-message h4 {
    font-size: 20px;
  }

  .alert-message p {
    font-size: 16px;
  }
}

@media (max-width: 617px) {
  .about{
    padding: 20px 0;
  }
  .import-export{
    padding: 0 0 12px;
  }
  section {
    padding: 40px 0 !important;
  }

  .notre-travail {
    padding: 40px 0 0;
  }
  .services .section-title,
  .contact .section-title {
    margin-bottom: 0px;
  }
  .section-iframe {
    padding-top: 20px;
  }
  #footer .footer-top {
      padding: 30px 0 0;
  }
}
@media (max-width: 979px) {
  .product-section {
    padding: 145px 0 0;
  }
}