/*

Template made by Lustick

http://wa.me/22899005006
email : agodepierreclaver@gmail.com

*/

@import url('../../fonts/fonts.css');

html,
body {
  letter-spacing: -0.03em !important;
  line-height: normal !important;
  background-color: transparent !important;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-family: 'kamerik_105_cyrillicbook', 'gothambook_italic';
  overflow-x: hidden;
}

* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: -0.03em !important;
}

:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320));
}

.pl {
  display: block;
  width: 6.25em;
  height: 6.25em;
}

.pl__ring,
.pl__ball {
  animation: ring 2s ease-out infinite;
}

.pl__ball {
  animation-name: ball;
}

/* Dark theme  */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
}

/* Animation */
@keyframes ring {
  from {
    stroke-dasharray: 0 257 0 0 1 0 0 258;
  }

  25% {
    stroke-dasharray: 0 0 0 0 257 0 258 0;
  }

  50%,
  to {
    stroke-dasharray: 0 0 0 0 0 515 0 0;
  }
}

@keyframes ball {

  from,
  50% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 1;
  }

  64% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -109;
  }

  78% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -145;
  }

  92% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -157;
  }

  57%,
  71%,
  85%,
  99%,
  to {
    animation-timing-function: ease-out;
    stroke-dashoffset: -163;
  }
}

/*---------------------------------------
   TYPOGRAPHY              
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'kamerik_105_cyrillicheavy';
  line-height: inherit;
}

li {
  font-family: 'kamerik_105_cyrillicBdOb';
  line-height: normal;
}

input,
button,
label {
  font-family: 'gothammedium';
  font-weight: 600;
  line-height: inherit;
}

input,
textarea {
  border: none !important;
  border-bottom: 1px solid #555 !important;
  box-shadow: none !important;
}

label {
  text-align: left !important;
  text-transform: uppercase;
  color: #151414 !important;
}

p {
  color: #000;
  font-family: 'gothambook';
  font-weight: normal;
  line-height: 24px;
}

strong {
  font-family: 'gothambold' !important;
}


/*---------------------------------------
   GENERAL               
-----------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #252525;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
  transition: background-size .5s;
}

a:hover,
a:active,
a:focus {
  color: #000;
  outline: none;
  border: none;
  background-size: 100% 100%;
}

/* Masque scroll natif sur tous navigateurs */
body {
  scrollbar-width: none;
  /* Firefox */
  -webkit-overflow-scrolling: touch;
  /* iOS */
  -ms-overflow-style: none;
  /* IE 10+ */
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;

  /* Masque la scrollbar Google Chrome, Safari et Opera */
  -webkit-scrollbar {
    display: none;
  }
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Edge */
}

.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 2px;
  width: 6px;
  height: 40px;
  background-color: #4b4b4b;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

/* Masquer la scrollbar par défaut */
body.hide-scrollbar::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

/* Scrollbar visible avec style */
body.show-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  z-index: 9999;
}

body.show-scrollbar::-webkit-scrollbar-thumb {
  cursor: pointer;
  background-color: #4b4b4b;
  border-radius: 5px;
}

#acceuil {
  overflow: auto;
  display: block;
  scroll-snap-stop: unset;
  min-height: 100vh;
  height: 100vh;
  scroll-behavior: smooth;
  background-color: #000;
}

.c500 {
  height: 500px;
  width: 100%;
  background: black
}

.c1000 {
  position: relative;
  height: max-content;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  background: black;

  /* Couche des images en fond */
  .header-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    background-size: cover !important;
    background-position: top !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    filter: blur(1px);
    transition: animation;
    z-index: 0;
  }

  .header-bg.next {
    opacity: 1;
    z-index: 1;
    filter: blur(1px);
  }

  .header-bg.active {
    opacity: 1;
    z-index: 3;
    filter: blur(0);
    backdrop-filter: blur(1px);
    animation: slideLeft 0.2s ease-in;
  }

  /* Couche du contenu texte */
  img {
    position: relative;
    z-index: 4;
    width: 100%;
    object-fit: cover;
    padding: 50px;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}


.acceuil {
  overflow: hidden;
  display: grid;
  height: 100%;
  background-color: #011919a1;
  align-content: stretch;
}

.acceuil p {
  font-family: 'gothammedium';
  color: #fff;
  font-size: 24px;
  line-height: inherit;
  padding: 3%;
  border-radius: 50px;
}

.line {
  position: absolute;
  width: 70%;
  left: 15%;
  text-align: center;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 5s ease-in, opacity 2s ease-out;
}

.line.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.visible {
  animation: fade-in 3s ease-in;
}

.invisible {
  animation: fade-out 2s ease-in-out;
}

#acc-logo {
  position: relative;
  text-align: center;
  top: 5%;
  margin-bottom: 3%;
  background: url(../../update/accueil/camelleon.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-logo {
  height: 350px;
  position: relative;
  left: -10%;
  top: -5%;
  width: 100%;
  background-image: url(../../images/logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#acc-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  vertical-align: middle;

  h1 {
    font-size: 95px;
    color: #bbbb;
    line-height: normal;
    margin-bottom: -10px;
  }

  h3 {
    font-size: 65px;
    color: #eaeaea;
    margin-top: 0;
    line-height: normal;
  }
}

#enter-btn {
  position: relative;
  text-align: center;
  bottom: 10%;
  display: flex;
  z-index: 3;
  justify-content: center;
  align-items: center;
}

#enter-btn a {
  height: 60px;
  display: flex;
  font-family: 'gothamBold';
  align-items: center;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.2em;
  padding: 20px;
  text-transform: uppercase;
  color: #000;
  background: #fdcb00;
  border-radius: 30px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;

  &:hover {
    transform: scale(1.05);
  }
}

#enter-btn a img {
  height: 35px;
  width: auto;
  padding-right: 5%;
}

#audio-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

#mute-button {
  position: fixed;
  right: 2%;
  top: 10%;
  padding: 10px;
  border: none;
  color: #8b8888;
  border-radius: 5px;
  cursor: pointer;
}

#mute-button:hover {
  color: #000;
  border: none;
  background-color: #ffffff17;
}

.para {
  /* text-align: justify; */
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
  padding: 2%;
  margin: 0;
  flex-direction: column;
}

.para-t {
  animation: fade-top 5s forwards;
}

.para-r {
  animation: fade-l 5s forwards;
}

.para-l {
  animation: fade-r 5s forwards;
  position: relative;
}


@keyframes fade-top {
  from {
    bottom: -100%;
    opacity: 0;
  }

  to {
    opacity: 1;
    top: 0;
  }
}

@keyframes fade-l {
  from {
    left: 100%
  }

  to {
    left: 0
  }
}

@keyframes fade-r {
  from {
    left: -100%
  }

  to {
    left: -50%
  }
}


.titr {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2%;
  animation: typing 5s forwards;
}

.titr-l {
  position: relative;
  left: 110%;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.supp {
  background-color: #000000db;
  width: 200%;
  min-height: auto;
  margin: 0 -50%;
  padding: 5% 50%;
}

.supp h5,
.supp p {
  color: #fff !important;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  /* background: url(../images/logo.png) no-repeat center; */
  background-color: #ffff;
  /* background-size: calc(200px); */
}

.wrapperanimate {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  background: url(../../images/logo.png) no-repeat center;
  background-size: cover;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle 1s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: .5s;
}

.circle:nth-child(3) {
  left: auto;
  right: 10%;
  animation-delay: .8s;
}

.shadow {
  width: 25px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 1s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .5s
}

.shadow:nth-child(5) {
  left: auto;
  right: 10%;
  animation-delay: .8s;
}

.wrapperanimate span {
  position: absolute;
  top: 75px;
  font-family: 'kamerik_105_cyrillicbook';
  font-size: 20px;
  letter-spacing: 12px;
  color: #000;
  left: 15%;
}


/*---------------------------------------
      MENU              
  -----------------------------------------*/
.navbar {
  display: flex;
}

.navbar-collapse.collapse {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
}

/* --- NAV WRAPPER POUR DISPARITION/APPARITION --- */
.navbar-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: top 0.4s;
}

/* --- STYLE NAVBAR --- */
.navbar-default {
  background-color: #fff;
  backdrop-filter: saturate(180%) blur(5px);
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease;
  border: none;
  border-radius: 5px;
  margin: 10px auto;
  max-width: 1200px;
  padding: 10px;

  .container {
    position: relative;
    top: 5px;
  }
}

/* --- NAV SCROLLÉE --- */
.navbar-default.scrolled {
  background-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0.25rem 0.5rem, rgba(0, 0, 0, 0.1) 0px 1.5rem 2.2rem !important;
}

.navbar-default .navbar-nav li a {
  color: #000;
  font-weight: 500;
  font-size: 1.1em;
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: all 0.3s ease;

  &:hover {
    position: relative;

    &::after {
      content: '';
      position: absolute;
      left: 10%;
      bottom: 0px;
      width: 80%;
      height: 4px;
      background: linear-gradient(to right, #00b255, #fdcb00);
    }
  }
}

/* 
.navbar-default .navbar-nav li a:hover {
  background: #000;
  color: #fff;
} */

.navbar-default .navbar-toggle .icon-bar {
  background-color: #000;
}

.navbar-brand {
  padding: 0 15px !important;
}

/* --- LANGUES regroupées --- */
.navbar-default .navbar-nav li.langues {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
}


/*---------------------------------------
  AGAMISATION           
  -----------------------------------------*/
/* === Section fullscreen avec image de fond === */
#team {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../../update/agamisation/agamisation.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

#team .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.about-info h1 {
  font-size: 2.75rem;
  color: white;
  font-family: "kamerik_105_cyrillicBold";
  letter-spacing: 0.1rem;
  margin-bottom: 50px;
}

/* === Nouvelle grille responsive === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}


/*---------------------------------------
     Nos Services             
  -----------------------------------------*/
/* === Services Section === */
#services {
  padding: 100px 0 0;
  background: url("../../update/services.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  color: white;
  font-family: "Gotham", sans-serif;
  text-align: center;
}

#services h1 {
  font-size: 64px;
  margin-bottom: 60px;
  line-height: normal;
}

/* ===== GRILLE RESPONSIVE ===== */
.service-grid .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 0;
  margin-bottom: 30px;
}

/* ===== CARTE DE SERVICE ===== */
.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  font-size: 22px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
  font-size: 26px;
  font-family: 'gothambold';
  color: #fdcb00;
  margin-bottom: 10px;
  font-weight: bold;
}

.service-card p {
  font-size: 17px;
  font-family: 'gothambook';
  color: #eee;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== CTA BOX (Demander un devis) ===== */
.cta-box {
  background-color: #00b255;
  margin: 60px 15px;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box img {
  width: 180px;
  transition: transform 0.3s ease;

  &:hover {
    transform: scale(1.05);
  }
}

.btn-devis {
  display: inline-block;
  color: white;
  border: solid 2px white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-devis:hover {
  background-color: #eee;
}

/* ===== Modal Style ===== */
.modal-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 600px;
  width: 100%;
}

.modal-header {
  border-bottom: none;
  text-align: center;
  padding-bottom: 0;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #0f5132;
}

.modal-header .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: #666;
  opacity: 0.7;
}

.modal-header .close:hover {
  opacity: 1;
}

.modal-body {
  padding-top: 0;

  /* ===== Form Fields ===== */
  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }

  .form-control,
  .form-control-file,
  .textarea,
  .select {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    min-height: 50px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-control:focus,
  .textarea:focus,
  .select:focus {
    border-color: #6cd19d;
    box-shadow: 0 0 5px rgba(108, 209, 157, 0.5);
    outline: none;
  }

  textarea.form-control {
    resize: vertical;
    min-height: 120px;
  }

}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #6cd19d;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #55c68d;
}

.btn-secondary {
  background-color: #ccc;
  color: #333;
  border: none;
}

.btn-secondary:hover {
  background-color: #bbb;
}

.modal-footer {
  border-top: none;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.modal-footer .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/*---------------------------------------
     NOS REALISATIONS            
  -----------------------------------------*/
#rea {
  padding: 125px 0 !important;
}

#logos,
#visuels,
#print-goodies,
#packaging,
#videos,
#projet {
  padding: 75px 0 !important;
}

.rea-title {
  font-family: "kamerik_105_cyrillicBold";
  font-size: 55px;
}

/* ===== MASONRY GRID (Pinterest-like) ===== */
.masonry-grid {
  width: 100%;
  column-count: 3;
  column-gap: 15px;
  padding: 20px 0;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.masonry-item:hover {
  transform: scale(1.02);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.pg-grid {
  width: 100%;
  column-count: 2;
  column-gap: 15px;
  padding: 20px 0;
}

.pg-item {
  break-inside: avoid;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pg-item:hover {
  transform: scale(1.02);
}

.pg-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

#projet {
  overflow: hidden;
  width: 100%;
  min-height: 100Vh;
  background-image: url(../../images/1.jpg);
  background-size: cover;

}

#visuels {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.imgproj {
  height: 250px;
  border-radius: 25px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
}

.imglogo {
  height: 250px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.imgvisuel {
  min-height: 300px;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.imgpack {
  height: 200px;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.imgprin {
  height: 700px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.imgp {
  height: 300px;
  border-radius: 10px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
}

#service h2,
#service h4 {
  color: #ffffff;
}

#service p {
  color: #d9d9d9;
}

#service .service-thumb {
  padding: 0 22px;
}

#service .fa {
  font-size: 50px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #a5c422;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 100%;
}

/*---------------------------------------
      CONTACT             
  -----------------------------------------*/

#contact-page {
  background-color: #f4f4f4;
  padding: 100px 0 0;
  font-family: 'Poppins', sans-serif;
}

.contact-top {
  text-align: center;
  margin-bottom: 30px;
}

.contact-top h2 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 50px;
}

.contact-top p {
  font-size: 1.2rem;
  margin: 25px 0;
}

.contact-infos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #33ab5b;
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-family: "GothamBook";
  font-size: large;
  text-decoration: none;
}

.contact-btn img {
  width: 50px;
}

.phone img {
  margin-left: -15px;
}

.contact-middle {
  margin-top: 60px;
}

.contact-middle h2,
.contact-socials h2 {
  text-align: center;
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.form-container h3 {
  color: #000;
  font-family: 'kamerik_105_cyrillicBold';
}

.contact-form {
  flex: 1 1 400px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #151414 !important;
  border-radius: 8px;
}

.btn-submit {
  text-align: center;
  background-color: #33ab5b;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.logo-contact img {
  max-width: 250px;
  align-self: center;
}

.contact-socials {
  text-align: center;
  margin: 50px 0;
}

.contact-socials h2 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.social-icons img {
  width: 32px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/*---------------------------------------
      NEWS             
  -----------------------------------------*/

#news,
#news-detail {
  background: #f9f9f9;
}

#news-detail blockquote {
  margin: 30px 0;
}

.news-detail-thumb .news-image img {
  border-radius: 10px;
}

.news-detail-thumb h3 {
  margin-bottom: 8px;
}

.news-image {
  margin-bottom: 30px;
  position: relative;
}

.news-image img {
  width: 100%;
}

.news-detail-thumb ul {
  margin: 32px 12px 22px 0px;
}

.news-detail-thumb ul li {
  list-style: circle;
  font-weight: normal;
  padding: 6px 12px 6px 0px;
}

.news-sidebar {
  margin-top: 16px;
}

.news-social-share {
  text-align: center;
  padding-top: 22px;
}

.news-social-share .btn {
  border-radius: 100px;
  border: none;
  font-size: 10px;
  font-weight: 600;
  margin: 2px 6px;
  padding: 8px 14px;
}

.news-social-share .btn-primary {
  background: #8637e0;
}

.news-social-share .btn-success {
  background: #1da1f2;
}

.news-social-share .btn-danger {
  background: #dd4b39;
}

.news-social-share a .fa {
  padding-right: 4px;
}

.recent-post {
  padding-top: 2px;
  padding-bottom: 18px;
}

.recent-post .media img {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-right: 5px;
}

.recent-post .media-heading {
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
  margin-top: 5px;
}

.news-categories {
  margin-top: 8px;
}

.news-categories li a {
  color: #2b2b2b;
}

.news-ads {
  background: #ffffff;
  border-right: 4px solid #2b2b2b;
  padding: 42px;
  text-align: center;
  margin: 26px 0 26px 0;
}

.news-ads.sidebar-ads {
  border-left: 4px solid #2b2b2b;
  border-right: 0px;
}

.news-ads h4 {
  font-size: 18px;
}

.news-tags h4 {
  padding-bottom: 6px;
}

.news-categories li,
.news-tags li {
  list-style: none;
  display: inline-block;
  margin: 4px;
}

.news-tags li a {
  background: #393939;
  border-radius: 50px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  float: left;
  min-width: 30px;
  padding: 6px 12px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.news-tags li a:hover {
  background: #4267b2;
}



/*---------------------------------------
      APPOINTMENT             
  -----------------------------------------*/

#appointment {
  padding-top: 100px;
}

#appointment label {
  color: #393939;
  font-weight: 500;
}

#appointment .form-control {
  background: #f9f9f9;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 15px;
  transition: all ease-in-out 0.4s;
}

#appointment input,
#appointment select {
  height: 45px;
}

#appointment button#cf-submit {
  background: #ff9a04;
  color: #ffffff;
  font-weight: 600;
  height: 55px;
}

#appointment button#cf-submit:hover {
  background: #393939;
  color: #ffffff;
}


/*---------------------------------------
     FOOTER              
  -----------------------------------------*/
ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.angle-up-btn {
  position: relative;
  display: block;
}

.angle-up-btn a {
  background: #ffffff;
  /* border: 1px solid #f2f2f2; */
  border-radius: 40px;
  font-size: 20px;
  color: #393939;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  transition: transform 0.1s ease-in;
  transform: translateX(0);
}

.angle-up-btn a:hover {
  background: #4267b2;
  color: #ffffff;
  transform: translateY(-5px);
}


/*---------------------------------------
     NOTRE ENTREPRISE             
  -----------------------------------------*/

#nous {
  /* background-image: url(../../images/fond.png); */
  background-color: #000;
  position: absolute;
  padding-top: 10%;
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  color: #fff !important;
  overflow: hidden;
}

#nous h1,
#nous h2,
#nous h3,
#nous h4,
#nous h5,
#nous h6 {
  font-family: 'kamerik_105_cyrillicheavy';
  font-size: 65px;
  display: table-header-group;
  padding: 0 1%;
  text-align: left;
  color: white !important;
}

#nous-section {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
  padding: 0;

  img {
    position: relative;
    object-fit: cover;
    object-position: top;
    margin: 0;
    width: 100%;
  }
}

.about .para {
  line-break: normal;
  line-height: normal !important;
  font-size: 26px;
}


/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border-radius: 100px;
  color: #464646;
  font-size: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.social-icon li a:hover {
  background: #4267b2;
  color: #ffffff;
}


/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media only screen and (max-width: 1600px) {

  .imgprin {
    height: 700px;
  }
}

@media only screen and (max-width: 1450px) {

  .imgprin {
    height: 600px;
  }
}

@media only screen and (max-width: 1200px) {

  .imgprin {
    height: 500px;
  }

  .container {
    width: 1100px;
    margin: 0 auto;
    max-width: 100%;
  }

  #acc-text {
    h1 {
      font-size: 75px;
    }

    h3 {
      font-size: 50px;
    }
  }

  header {
    height: inherit;
  }

  header span.date-icon {
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }

  header span.email-icon {
    padding-top: 0;
  }

  .navbar-default .navbar-nav li a {
    padding-right: 15px;
    padding-left: 15px;
  }

  #team .container {
    padding: 8% 2%;
    max-width: 100%;
  }

  header {
    height: inherit;
  }

  header span.date-icon {
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }

  header span.email-icon {
    padding-top: 0;
  }

  .navbar-default .navbar-nav li a {
    padding-right: 15px;
    padding-left: 15px;
  }

}

@media only screen and (max-width: 1060px) {

  header {
    height: inherit;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .img-logo {
    top: 0;
    left: 0;
  }

}

@media only screen and (max-width: 992px) {

  .container {
    /* width: 875px; */
    max-width: 100%;
  }

  .service-grid .row {
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider .item {
    background-position: center;
  }

  .masonry-grid {
    column-count: 2;
  }

  .imgprin {
    height: 400px;
  }

  header {
    padding-bottom: 10px;
  }

  header .text-align-right {
    text-align: left;
  }

  header span {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
  }

  #logo img {
    height: 100%;
  }

  .slider .item {
    background-position: center;
  }

  header {
    padding-bottom: 10px;
  }

  header .text-align-right {
    text-align: left;
  }

  header span {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
  }

  .contact-infos {
    flex-direction: column;
    align-items: center;
  }

  .form-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .logo-contact {
    text-align: center;
    margin-top: 20px;
  }

  .logo-contact img {
    max-width: 200px;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .btn-submit {
    width: 100%;
  }

  .contact-middle h2,
  .contact-top h2,
  .contact-socials h2 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 860px) {

  .container {
    /* width: 780px; */
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: smaller;
  }

  .c500 {
    height: 100vh;
    width: 100%;
  }

  .news-sidebar {
    margin-top: 2em;
  }

  #appointment-form {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  footer {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .footer-thumb {
    padding-bottom: 10px;
  }

  .border-top {
    text-align: center;
  }

  .copyright-text {
    margin-top: 10px;
  }

  .angle-up-btn {
    bottom: 0;
  }

  .img-logo {
    height: 300px;
  }

}

@media only screen and (max-width: 765px) {

  .container {
    /* width: 720px; */
    max-width: 100%;
    display: inline-block;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-collapse.collapse.in {
    display: flex !important;
    flex-direction: column;
  }

  .navbar-wrapper {
    position: fixed;
    height: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-default .navbar-collapse {
    background-color: #fff;
    margin-top: 10px;
    border-radius: 0 0 5px 5px;
  }

  .navbar-default .navbar-nav {
    text-align: center;
  }

  .navbar-default .navbar-nav li {
    display: block;
    margin: 10px 0;
  }

  .navbar-default .navbar-nav li.langues {
    justify-content: center;
  }

  .navbar-default .navbar-nav li a {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
  }

  .navbar-default .navbar-toggle {
    margin-top: 5px;
  }

  .rub-title img {
    height: 150px;
    padding: 3%;
  }

  .imgprin {
    height: 300px;
  }

  .titr-l {
    position: relative;
    left: 0;
  }

  @keyframes fade-r {
    from {
      right: 100%
    }

    to {
      right: 0
    }
  }

  #team .container {
    padding: 10% 2%;
    max-width: 100%;
  }

  #rub-form {
    padding: 5% 50%;
  }

  #nous h1 {
    font-size: 40px;
  }

  .para {
    font-size: 18px !important;
  }

  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    background-color: #f9f9f9b0;
    border-color: transparent;
    overflow: hidden;
    color: #000 !important;
  }

  .navbar-default .navbar-nav li.appointment-btn {
    margin-left: 15px;
  }

  #logo img {
    height: 120%;
    margin-top: 310%;
  }

  .navbar-default .navbar-nav li a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .news-sidebar {
    margin-top: 2em;
  }

  #appointment-form {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  footer {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .footer-thumb {
    padding-bottom: 10px;
  }

  .border-top {
    text-align: center;
  }

  .copyright-text {
    margin-top: 10px;
  }

  .angle-up-btn {
    bottom: 0;
  }

  .modal-dialog {
    margin: 10px;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-title {
    font-size: 20px;
  }

  .btn {
    width: 100%;
    margin-top: 10px;
  }

  .modal-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media only screen and (max-width: 720px) {

  .container {
    /* width: 680px; */
    max-width: 100%;
  }


  #logo img {
    height: 110%;
    margin-top: 275%;
  }

  #team .container {
    padding: 12% 2%;
    max-width: 100%;
  }

}


@media only screen and (max-width: 672px) {

  .container {
    /* width: 625px; */
    max-width: 100%;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .img-logo {
    height: 250px;
  }
}


@media only screen and (max-width: 639px) {

  .container {
    /* width: 580px; */
    max-width: 100%;
  }

  #services h1 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 18px;
  }

  .about-info h1 {
    font-size: 2.2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 90%;
    margin: 0 auto;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .masonry-grid {
    column-count: 1;
  }

  #logo img {
    height: 110%;
    margin-top: 250%;
  }

  #team .container {
    padding: 15% 2%;
    max-width: 100%;
  }

  .contact-btn {
    flex-direction: column;
    padding: 10px;
    font-size: 0.95rem;
    text-align: center;
  }

  .contact-btn img {
    margin-bottom: 5px;
  }

  .form-container {
    padding: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }

  .social-icons img {
    width: 26px;
  }

  iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 512px) {

  .container {
    /* width: 450px; */
    max-width: 100%;
  }

  .ftco-section {
    padding: 5% 1% !important;
  }

  #logo img {
    height: 100%;
    margin-top: 180%;
  }

  .imgprin {
    height: 200px;
  }

  #team .container {
    padding: 25% 5%;
    max-width: 100%;
  }

  .c500 {
    height: 50vh;
  }

  .c1000 img {
    padding: 0;
  }

  #enter-btn a {
    height: 40px;
    margin: 30px 0 0;
    font-size: 18px;
  }

  #acc-text {
    h1 {
      font-size: 45px;
    }

    h3 {
      font-size: 30px;
    }
  }
}

@media only screen and (max-width:485px) {

  .container {
    /* width: 380px; */
    max-width: 100%;
  }
}

@media only screen and (max-width: 380px) {

  .container {
    /* width: 320px; */
    max-width: 100%;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .img-logo {
    height: 200px;
  }

}

@media only screen and (max-width: 360px) {

  .container {
    /* width: 320px; */
    max-width: 100%;
  }

  .imgprin {
    height: 150px;
  }

  .rub-title {
    left: 0;
    width: 90%;
  }

  .rub-title img {
    height: 100px;
    padding: 3%;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  #logo img {
    height: 100%;
    margin-top: 135%;
  }

}


@media only screen and (max-width: 280px) {

  .container {
    /* width: 225px; */
    max-width: 100%;
  }

  #home h3 {
    font-size: 11px;
    letter-spacing: 1px;
  }
}