body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.logoimg {
  width: 150px;
  margin-top: 50px;
}

.smallcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cardsmall {
  width: 350px;
  margin-bottom: 50px;
}

header {
  position: fixed;
  z-index: 3;
  top: 15px;
  left: 100px;
  right: 100px;
  width: auto;
  height: 70px;
  /*border-bottom: 1px solid rgba(256, 256, 256, 0.1);*/
  transition: 0.5s;
  /*background: #fff;*/
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.flexmenu {
  display: flex;
  justify-content: space-between;
  width: 70%;
  /*width: auto;*/
  background: #fafafa;
  border-radius: 10px;
}

.titlehome {
  font-weight: bold;
  font-size: 3rem;
}

.orangecolor {
  color: #f8a243;
}

.vectors {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin-top: -50px;
}

.vectors img {
  width: 90px;
  height: auto;
}

.flexcard {
  display: flex;
  flex-direction: row;
  background: #fafafa;
  border-radius: 10px;
  width: 19%;
  padding: 0px 20px;
  justify-content: space-between;
}

.btn-cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  background: #e3e3e3;
  color: #000;
  border: none;
  font-size: 22px;
}

.bulle {
  position: absolute;
  max-width: 25px;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  background: #0670f9;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-top: -25px;
  margin-left: 15px;
}

header.fixed {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

/*header.fixed .flexcard{
	box-shadow: 0px 0px 8px rgba(0,0,0,.2);
}*/

header.fixed a {
  color: #111;
}

.flexcol {
  display: flex;
  flex-direction: column;
}

.flexrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.heroText {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 150px;
  right: 150px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #eef9ff;
  text-align: center;
}

.homeText {
  /*font-size: 5rem;*/
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  margin-top: -100px;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 130vh;
}

.imageshome {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  margin-top: -210px;
  width: 100%;
  z-index: 2;
}

.catbtn {
  display: block;
  padding: 8px 15px;
  border-radius: 50px;
  background: #feecda;
  color: #f8a243;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  margin: 5px;
}

.catbtn:hover {
  background: #f8a243;
  color: #fff;
}

.catbtn.active {
  background: #f8a243;
  color: #fff;
}

.homeimgm {
  transform: scale(1.4);
}

.imageshome img {
  width: 300px;
  height: auto;
}

.toptitletext {
  font-size: 15px !important;
  margin-bottom: 10px;
  display: block;
}

.bgimg {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}

.overlay {
  background: linear-gradient(to top, #000, transparent 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

header nav {
  margin: 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

header nav .logo {
  width: 90px;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  margin-left: 0px;
}

header nav .logo img {
  width: 90px;
}

.nav-link {
  display: flex;
  flex-direction: row;
  width: auto;
  justify-content: center;
}

.nav-link a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  outline: none;
  color: #111;
  margin: 0px 20px;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.link-bar {
  display: block;
  width: 0%;
  height: 2px;
  background: #0670f9;
  position: relative;
  top: 22px;
  border-radius: 10px;
  transition: 0.5s ease-out;
}
.nav-link a:hover {
  color: #0670f9;
}

.nav-link a.active {
  color: #0670f9;
}

.nav-link a:hover .link-bar {
  width: 100%;
}

.nav-link a.active .link-bar {
  width: 100%;
}

.link-bar.active {
  width: 100%;
}

footer {
  display: block;
  background: #fafafa;
}

.top-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.top-footer .tf-section {
  display: block;
  width: 25%;
  height: 160px;
  border-left: 1px solid #1a1919;
}

.top-footer .tf-section:first-child {
  border-left: 1px solid transparent;
}

.middle-footer {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 30px 0px;
  margin: 0px 50px;
}

.middle-footer img {
  width: 90%;
}

.flex-line {
  display: flex;
  flex-direction: row;
  padding: 30px 0px;
  color: #000;
  margin: 0px 30px;
  align-items: center;
}

.flex-line i {
  font-size: 40px;
  margin-right: 20px;
}

.middle-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  color: #000;
  align-items: center;
}

.middle-footer .mf-section {
  height: auto;
  margin: 0px 20px;
}

.middle-footer .mf-section.large {
  width: 40%;
}

.middle-footer .mf-section img {
  width: 190px;
}

.nomarge {
  margin-top: -50px;
}

.mf-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.formnletter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  padding: 3px;
}

.formnletter i {
  color: #777;
}

.btn-subs {
  border-radius: 10px !important;
}

.groupiconform {
  align-items: center;
  margin: 0px 10px;
}

.formletter {
  border: none;
  outline: none;
  background: transparent;
  margin-left: 15px;
}

.middle-footer .mf-section a {
  display: block;
  text-decoration: none;
  padding: 5px 0px;
  outline: none;
  color: #888;
  transition: 0.3s;
}

.middle-footer .mf-section h3 {
  font-size: 20px;
}

.middle-footer .mf-section a:hover {
  color: #0670f9;
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 30px 0px;
  color: #999;
  margin: 0px 50px;
}

.socials {
  display: flex;
}

.socialitem {
  margin-left: 8px;
  text-decoration: none;
  outline: none;
  color: #777;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #eee;
}

.heroforall {
  display: block;
  background: #666;
  height: 400px;
}

.heroText.blur {
  backdrop-filter: blur(40px);
}

.catline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.servicehero {
  background-image: url("../images/Services.jpg");
  background-position: top center;
  background-size: cover;
}

.teamhero {
  background-image: url("../images/Team.jpeg");
  background-position: center center;
  background-size: cover;
}

.portfoliohero {
  background-image: url("../images/carousel-1.jpeg");
  background-position: center center;
  background-size: cover;
}

.abouthero {
  background-image: url("../images/about1.jpeg");
  background-position: bottom center;
  background-size: cover;
}

.ombercontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
}

.marge {
  margin: 0px 200px;
}

.hsection {
  display: block;
  margin: 60px 100px;
}

.flexsection {
  display: flex;
  flex-direction: row;
}

.flexsection.flex-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.box-hsection {
  display: block !important;
  padding: 20px;
  border: 1px solid #feecda;
  border-radius: 10px;
}

.headbox-hsection {
  display: block;
  padding: 10px 20px;
  border-radius: 50px;
  background: #feecda;
  position: relative;
}

.limit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 15px;
  /*overflow: hidden;*/
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.sectiontitle {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

.sectiontitle img {
  width: 70px;
}

.sectionsubtitle {
  font-size: 14px;
  font-weight: normal;
  color: #777;
  line-height: 22px;
}

.bluecolor {
  color: #0097ff;
}

.btn-go {
  text-decoration: none;
  outline: none;
  margin-top: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  border-radius: 10px;
}

.btn-go:hover {
  background: #0097ff;
  color: #fff;
}

.productbg {
  overflow: hidden;
  padding: 10px;
  background: #e3e3e3;
  border-radius: 20px;
  display: block;
  width: 280px;
  margin: 5px;
}

.product {
  display: block;
  width: 260px;
  height: auto;
  overflow: hidden;
}

.productsection {
  margin-top: 30px;
}

.productimage {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
}

.productimage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.productdesc {
  border-radius: 20px;
  background: #fafafa;
  margin-top: 10px;
}

.productpadding {
  padding: 10px 20px;
  font-size: 14px;
}

.producttitle {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  text-decoration: none;
  outline: none;
  color: #000;
  display: block;
}

.producttitle:hover {
  color: #09f;
}

.addtocardbtn {
  position: absolute;
  float: right;
  color: #0097ff;
  background: #dbf0ff8f;
  backdrop-filter: blur(5px);
  margin-left: 210px;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 18px;
}

.addtocardbtn:hover {
  background: #009fff;
  color: #fff;
}

.btn-bay {
  height: 40px;
  background: #dbf0ff;
  color: #0097ff;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 2px 2px 10px;
  transition: 0.3s;
  border: none;
}

.btn-bay:hover {
  background: #0097ff;
  color: #fff;
}

.btn-bay i {
  display: flex;
  width: 33px;
  height: 33px;
  border-radius: 50px;
  background: #0097ff;
  margin-left: 10px;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.price {
  display: flex;
  height: 40px;
  padding: 0px 10px;
  background: #0097ff;
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.buyline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  margin: -50px 0px 0px 5px;
}

.servicesbloc {
  margin-top: 30px;
  background: linear-gradient(to right, #02426f, #005c9b);
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}

.servicegroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px;
  justify-content: space-around;
}

.module {
  display: block;
  width: 49%;
  height: auto;
  border-radius: 20px;
  background: #fafafa;
  padding: 30px 30px 0px 30px;
  margin: 5px;
}

.sectionbtn {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.flexitem {
  display: flex;
}

.flexitem img {
  width: 170px;
}

.marge {
  margin: 40px 0px 0px 0px;
}

.videosection {
  display: block;
  width: 100%;
  height: 550px;
  background: #e3e3e3;
  border-radius: 20px;
  overflow: hidden;
}

.videosection img {
  width: 100%;
  height: auto;
  object-fit: content;
  transform: scale(1.1);
  position: relative;
  top: -600px;
}

.buttonzone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.roundborder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 100px;
  border: 1px solid #fff;
}

.btn-play {
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
  background: #dbf0fff0;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  color: #0097ff;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  font-size: 25px;
}

.btn-play:hover {
  background: #0097ff;
  color: #fff;
}

.blur {
  filter: blur(30px);
}

.servicetitle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.servicetitle img {
  width: 90px;
  margin: 0px 40px;
}

.subtitle {
  text-align: center;
  display: block;
  margin: 10px 0px;
}

.categoriebloc {
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border-radius: 30px;
  padding: 10px;
  overflow: hidden;
}

.flexgroup {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.catimgbloc {
  width: 380px;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  margin: 5px;
}

.catimgbloc img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.catimg2 {
  width: 132px;
}

.catimg3 {
  width: 280px;
}

.catimg3 {
  width: 310px;
}

.formbloc {
  display: block;
  border-radius: 20px;
  background: #f0f8f9;
  margin-top: 30px;
  overflow: hidden;
  height: auto;
}

.flexformgroup {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 20px 50px;
}

.flexblocx {
  width: 40%;
}

.margetitle {
  margin: 40px 50px 20px 50px;
}

.texttitleblocx {
  font-weight: bold;
  font-size: 16px;
}

.bar {
  display: block;
  width: 60px;
  height: 6px;
  background: #ff7800;
  border-radius: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.form-style {
  display: block;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 8px;
  text-indent: 15px;
  margin: 15px 0px;
  width: 100%;
}

.formsbox {
  display: block;
  margin: 30px 0px;
}

.form-style.select {
  text-indent: 0px;
  padding: 0px 15px;
  background: #fff;
}

.form-style.select option {
  text-indent: 10px;
}

.centerbloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 50px;
}

.centerbloc .form-style {
  width: 90%;
  margin: 10px 0px;
}

.flexrow {
  display: flex;
  width: 90%;
  justify-content: space-between;
}

.restyleselect {
  width: 49% !important;
  margin: 10px 0px;
}

.area {
  resize: none;
  height: 140px;
}

.bgwhite {
  background: #fff !important;
  border: 1px solid #c0dfe3;
}

.restyleprice {
  border-radius: 8px;
  color: #000;
  background: #ffe5cd;
}

.colorwhite {
  color: #fff !important;
}

.flexlinecard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.carditem {
  display: block;
  padding: 20px;
  border-radius: 15px;
  background: #fafafa;
  width: 47%;
  transition: 0.3s;
}

.carditem:hover {
  background: #09f;
  color: #fff;
  transform: scale(1.1);
}

.carditemtitle {
  font-size: 20px;
  font-weight: bold;
}

.ppuser {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 120px;
  overflow: hidden;
}

.ppuser img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.flexitemline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flexcenter {
  justify-content: center;
}

.cardprofil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 30px;
}

.nameuser {
  font-size: 18px;
  font-weight: bold;
}

.statutuser {
  color: #94c6fb;
}

.paddingx1 {
  padding: 30px 0px;
}

.centeritem {
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
  text-align: center;
}

.devisex {
  font-size: 80px;
  font-weight: bold;
  color: #555;
}

.devisex2 {
  font-size: 100px;
  font-weight: bold;
}

.linebarinfo {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0px;
  background: #09f;
  color: #fff;
  font-weight: bold;
}

.linebarinfo span {
  margin-left: 8px;
}

.point {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 5px;
}

.orangeline {
  background: #ff7800;
  transform: rotate(1deg);
  margin-top: 45px;
  margin-bottom: 30px;
}

.blueline {
  background: #09f;
  transform: rotate(-2deg);
}

.orangepoint {
  background: #ff7800 !important;
}

.bluepoint {
  background: #09f !important;
}

.margebtn {
  margin: 30px 0px;
}

.contactbox {
  display: block;
  margin: -45% 30px 0px 30px;
  border-radius: 20px;
  background: #fafafa;
  z-index: 2;
  position: relative;
  padding: 20px;
}

.internmarge {
  display: block;
  margin: 50px;
}

.nosize {
  width: unset;
}

.internmarge input,
.internmarge textarea {
  margin: 10px 10px !important;
  background: #e7e7e7;
  width: 99% !important;
}

.nosize input {
  margin: 10px 0px 5px 10px !important;
  justify-content: space-between;
  background: #e7e7e7;
}

.restylebtn {
  width: 99%;
  margin: 0px;
  margin-left: 10px;
  margin-top: 5px;
}

.bold {
  font-weight: bold;
}

.emptycart {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}

.emptycart i {
  font-size: 120px;
  margin: 30px 0px 0px 0px;
  color: #09f;
}

.servicepoints {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 20px;
}

.sp {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-left: 1px solid #222;
  height: 90px;
}

.sp:last-child {
  border-left: none;
}

.pointsp {
  display: block;
  background: #fff;
  border-radius: 50px;
  border: 5px solid #f8a243;
  width: 20px;
  height: 20px;
  margin-left: -10px;
}
.textsp {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 20px;
}

.titletextsp {
  font-weight: bold;
}

.contentsp {
  font-size: 13px;
  color: #555;
}

.socialsx i {
  font-size: 25px;
  color: #09f;
}

.ombre {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.messageload {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.loader {
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50px;
  border-left: 3px solid transparent;
  animation: rotate 0.5s linear infinite;
  margin-bottom: 15px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*--------------------- END ------------------*/

.dendances {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  /*padding: 40px 0px;*/
  height: 100px;
  border-bottom: 1px solid #000;
}

.dendances.center {
  justify-content: center !important;
  margin: 0px 50px;
  border-bottom: 1px solid transparent;
}

.tdces {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
  outline: none;
  color: #111;
}

.tdces .point {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.3s;
}

.tdces .point i {
  visibility: hidden;
  font-size: 18px;
  font-weight: bold;
}

.tdces:hover .point {
  width: 50px;
  height: 50px;
}

.tdces:hover .point i {
  visibility: visible;
}

.pcolor1 {
  background: #14bdee;
}

.pcolor2 {
  background: #d74b94;
}

.pcolor3 {
  background: #fcd000;
}

.listtendance {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.listtendance .itemt {
  display: block;
  width: 50%;
  height: auto;
  border-left: 1px solid #000;
  overflow: hidden;
}

.listtendance .itemt:first-child {
  border-left: 1px solid transparent;
}

.itemt img {
  width: 80%;
}

.itemt-foot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px;
}

.centertitle {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
}

.lefttitle {
  display: flex;
  flex-direction: column;
  text-align: flex-start;
  justify-content: flex-start;
  align-items: left;
  margin: 20px 0px;
}

.menubar {
  display: block;
  width: 120px;
  height: 5px;
  border-radius: 20px;
  background: #f90606;
  margin-top: 15px;
}

.teamuser {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.itemteam {
  display: block;
  width: 400px;
  height: auto;
  background: #eef9ff !important;
  overflow: hidden;
  transition: 0.3s;
  margin: 30px 0px;
}

.itemteam:hover {
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
}

.teamphoto img {
  width: 400px;
  height: auto;
  object-fit: cover;
}

.teaminfos {
  display: block;
  padding: 30px 0px;
}

.teaminfos h3 {
  color: #0670f9;
}

.omberphoto {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 400px;
  height: 93.5%;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.itemteam:hover .omberphoto {
  visibility: visible;
  opacity: 1;
}

.omberphoto a {
  color: #fff;
  text-decoration: none;
  outline: none;
  padding: 10px 15px;
  font-size: 22px;
  background: #0670f9;
}

.nobold {
  font-weight: normal;
}

.flex-black {
  color: #111;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.flex-black .itemteam {
  margin: 10px 10px;
}

.senction {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.senction.bleuesection {
  background: #09f;
}

.senction.blacksection {
  background: #000;
  color: #fff;
}

.flex-section {
  display: flex;
  flex-direction: row;
  margin-top: 80px;
  justify-content: flex-start;
}

.flex-section.between {
  justify-content: space-around;
}

.senctionimg .img1 {
  width: 500px;
}

.senctionimg .img2 {
  width: 300px;
  position: relative;
  top: 60px;
  left: -4px;
}

.sectiontext {
  display: block;
  margin-left: 20px;
  width: 35%;
  color: #fff;
}

.imgsection {
  display: block;
  width: 100%;
  height: auto;
}

.imgsectionx {
  display: block;
  width: 100%;
  height: 300px;
}

.textsection {
  display: block;
  width: 50%;
  margin: 30px 50px;
}

.linebox {
  display: block;
  width: 24%;
  height: auto;
  background: #fff;
  color: #111;
  padding: 20px;
  margin: 0px 0px;
}

.lkmore {
  text-decoration: none;
  outline: none;
  font-weight: bold;
  transition: 0.3s;
  color: #0670f9;
  border-bottom: 2px solid transparent;
}

.lkmore:hover {
  border-bottom: 2px solid #0670f9;
}

.owl-carousel .item {
  height: 400px;
  width: 450px;
  background: #eee;
  overflow: hidden;
}

.owl-carousel .item img {
  width: 450px;
  height: 400px;
  object-fit: cover;
}

.grid-produits {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
  gap: 0px; /* Espacement entre les produits */
  /*padding: 20px;*/
  margin-top: 30px;
}

.produit {
  /*padding: 20px;*/
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  width: 310px;
  height: auto;
  text-decoration: none;
  outline: none;
}

.imggrid {
  display: block;
  overflow: hidden;
  width: 310px;
  height: 200px;
}

.produit img {
  width: 310px;
  height: 200px;
  object-fit: cover;
}

.titregrid {
  display: block;
  margin: 20px 0px;
  text-decoration: none;
  color: #111;
  outline: none;
}

@media (max-width: 1024px) {
  .grid-produits {
    grid-template-columns: repeat(2, 1fr); /* 2 produits par ligne */
  }
}

@media (max-width: 600px) {
  .grid-produits {
    grid-template-columns: repeat(2, 1fr); /* 1 produit par ligne */
  }
}

.bg-light {
  background-color: #eef9ff !important;
  text-decoration: none;
  outline: none;
}

.me-3 {
  margin-right: 1rem !important;
}

.bg-primary {
  background-color: #76b43b !important;
  text-decoration: none;
  outline: none;
}

.text-uppercase {
  text-transform: uppercase !important;
  text-decoration: none;
  outline: none;
}

small {
  color: #6b6a75;
}
small,
.small {
  font-size: 0.875em;
}

.text-primary {
  color: #06a3da !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}

.body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.element {
  border: 1px solid #444;
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.element:hover img {
  filter: grayscale(0);
}

.element:hover {
  background-color: #fbfbfe;
  cursor: pointer;
}

.body > div img {
  filter: grayscale(1);
  width: 30%;
  object-fit: cover;
  object-position: center;
}

.testimonial-item {
  border: 1px solid #ccc !important;
}

.testimonial-item p {
  text-align: justify !important;
}

.smalltext {
  font-size: 18px;
}

.vsmalltext {
  font-size: 15px;
}

.form-floating > .form-select ~ label::after {
  background-color: transparent;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.btnmenu {
  display: none;
}

.mobilenavlink {
  display: none;
}

.deroulebox {
  display: block;
  width: 48%;
  height: 60px;
  overflow: hidden;
  background: #444;
  color: #fff;
  margin: 8px 10px;
}

.deroulebox.see {
  height: auto;
}

.deroulehead {
  display: flex;
  flex-direction: row;
  margin: 5px 20px;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
}

.btnmorex {
  display: block;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  font-size: 23px;
  transition: 0.3s;
}

.btnmorex:hover {
  background: #666;
}

.deroulebody {
  display: block;
  margin: 20px;
}

.margebetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 80px;
}

.centercase {
  justify-content: center;
  color: #111;
  display: flex;
}

.cases {
  display: flex;
  flex-wrap: row;
  flex-wrap: wrap;
  background: #000;
  width: 80%;
  height: 130px;
  margin: 30px 0px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
}

.linecase {
  width: 33.33%;
  height: 100%;
  background: #eef9ff !important;
  margin: 0px;
  padding: 20px;
}

.bluetext {
  color: #06a3da !important;
}

.linecase.green {
  background: #76b43b !important;
}

.margesection {
  display: block;
  margin: 5px 80px;
}

.divide-aw {
  display: flex;
}

.image-box {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.image-box img {
  width: 70%;
}

.divide-aw .awards-box {
  width: 70%;
  padding: 2%;
}

.aw-header {
  display: flex;
  border-bottom: 2px solid #17181c;
  padding-bottom: 12px;
  align-items: center;
  justify-content: space-between;
}

.aw-ligne {
  display: flex;
  padding-inline: 8px;
  padding-block: 12px;
  cursor: pointer;
  gap: 32px;
  transition: all 300ms;
  border-bottom: 1px solid #17181c;
}

.aw-title {
  width: 50%;
}

#preloader {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

#preloader img {
  width: 280px;
  animation: scale 1s linear infinite;
  transform: scale(1.1);
}

@keyframes scale {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.sectx {
  overflow: hidden;
  display: block;
}

.margesection {
  margin: 30px 80px;
  width: auto;
}

.sectimg {
  width: 400px;
  height: auto;
}

.sectimgx {
  width: 100%;
  height: auto;
}

.flex-section.column {
  flex-direction: column;
  margin-top: 20px;
}

.flex-section.vcolumn {
  margin-top: 20px;
}

.imgblocv {
  width: 50%;
}

.textblocv {
  width: 50%;
  overflow: hidden;
}

.titleimg {
  width: 360px;
}

.bluelight {
  background: #153144;
  color: #fff;
}

.blacklight {
  background: #1b5740;
  color: #fff;
}

.lineval {
  display: block;
  font-size: 25px;
  margin-bottom: 10px;
}

.bigval {
  font-size: 45px;
}

.detailbloc {
  display: flex;
  flex-direction: row;
  /*flex-wrap: wrap;*/
  margin: 120px 140px 20px 140px;
  overflow: hidden;
  min-height: 400px;
}

.imglist {
  display: block;
  width: 220px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
}

.imglistitem {
  display: block;
  margin: 10px;
  height: 180px;
  overflow: hidden;
  border-radius: 5px;
  background: #fafafa;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #fafafa;
}

.imglistitem:hover {
  border: 2px solid #000;
}

.imglistitem.active {
  border: 2px solid #09f;
}

.imglistitem img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.flexdetail {
  display: flex;
}

.bigimgbloc {
  display: block;
  width: 430px;
  height: 400px;
  background: #fafafa;
  margin: 0px 10px;
  overflow: hidden;
  padding: 10px;
  border-radius: 5px;
}

.bigimgbloc img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.textdetailbloc {
  display: block;
  margin: 0px 20px;
}

.titledetail {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.statutdetail {
  font-size: 14px;
  color: #18b36a;
}

.pricedetail {
  font-weight: 700;
  margin-bottom: 20px;
}

.colorsdetail {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.colorgroup {
  display: flex;
  margin-left: 15px;
}

.boulecolor {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #fafafa;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.boulecolor:hover {
  border: 2px solid #000;
}

.boulecolor.active {
  border: 2px solid #000;
}

.blue {
  background: #09f;
}

.red {
  background: #ff0045;
}

.actionsdetail {
  display: flex;
  margin-top: 20px;
}

.plusmoingroup {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.pmbtn {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.moinsbtn {
  border: 1px solid #ddd;
  background: transparent;
}

.plusbtn {
  color: #fff;
}

.valnumber {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 50px;
  margin: 0px 5px;
}

.favbtn {
  background: transparent;
  /*font-weight: bold;*/
  font-size: 30px;
  border: none;
  outline: none;
  margin-left: 15px;
}

.bonus {
  display: block;
  background: #fafafa;
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
  height: auto;
  padding: 5px 0px;
}

.bonustexttitle {
  font-weight: 700;
}

.bonustextdesc {
  font-size: 14px;
}

.bonusitem {
  display: flex;
  align-items: center;
  margin: 0px 20px;
  padding: 3px 0px;
}

.bonusitem i {
  margin-right: 10px;
}

.bonusitem:first-child {
  border-bottom: 1px solid #ccc;
}

.flexpsection {
  display: flex;
  flex-direction: row;
  margin-top: 120px;
  overflow: hidden;
  height: auto;
  justify-content: space-between;
}

.paniersection {
  width: calc(100% - 330px);
  height: auto;
}

.paniersection h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #fafafa;
  margin: 10px;
}

thead {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  height: 50px;
}

th {
  padding: 0px 10px;
}

td {
  padding: 0px 10px;
}

.billingsection {
  display: block;
  width: 300px;
  padding: 20px;
  background: #fafafa;
  border-radius: 5px;
  height: 250px;
  margin-top: 50px;
}

.itemphotopanier {
  width: 60px;
  height: 55px;
  border-radius: 5px;
  overflow: hidden;
}

.itemphotopanier img {
  width: 100%;
  height: 55px;
  object-fit: cover;
}

tbody tr {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  height: 60px;
  margin: 10px 0px;
}

tbody tr td {
  padding: 10px 0px;
}

.flextab {
  display: flex;
  align-items: center;
}

.titleitempanier {
  margin-left: 10px;
}

.formnumber {
  width: 70px;
}

.removecart {
  display: block;
  border: none;
  outline: none;
  font-size: 18px;
  border-radius: 5px;
}

.linkreturn {
  display: block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  float: left;
  text-decoration: none;
  outline: none;
  color: #777;
  cursor: pointer;
  margin: 10px 0px 0px 10px;
}

.flexbetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.paybtn {
  width: 100%;
  margin-top: 20px;
}

.paybtnx {
  width: 100%;
  margin-top: 20px;
}

.modaljuste {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 200px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fafafa;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
  padding: 20px;
  font-weight: bold;
}
.modaljuste.see {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.modaljuste i {
  font-size: 80px;
  color: #18b36a;
}

.modalcommade {
  display: block;
  width: 300px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fafafa;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}
.modalcommade.see {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.menucommande {
  display: flex;
  width: 100%;
  height: 40px;
  justify-content: space-between;
  align-items: center;
}

.titlecm {
  margin-left: 20px;
}

.btn-closec {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  /*background: #ccc;*/
  margin: 5px;
  transition: 0.3s;
  outline: none;
}

.bodcommande {
  /*margin-top: 41px;*/
  bottom: 0px;
  width: 100%;
  height: calc(100% - 41px);
  /*background: #ccc;*/
  overflow: auto;
}

.margec {
  margin: 20px;
}

.validcommande {
  width: 100%;
}

.gray {
  background: #f1f1f1;
}

.facturebloc {
  display: block;
  width: 795px;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  z-index: 4;
  background: #fff;
  overflow: auto;
}

.facthead {
  display: flex;
  margin: 20px;
  justify-content: space-between;
  align-items: center;
}

.logofact {
  width: 60px;
  margin-right: 10px;
}

.flexlinex {
  display: flex;
  align-items: center;
}

.descbt {
  display: block;
}

@media (max-width: 900px) {
  header {
    left: 0px;
    right: 0px;
    top: 0px;
    background: #fafafa;
    z-index: 4;
  }

  .flexcard {
    border-radius: 0px;
    justify-content: center;
    width: 50px;
  }
  .nav-link {
    display: none; /* 2 produits par ligne */
  }

  .flexmenu {
    border-radius: 0px;
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  .btnmenu {
    display: block;
    float: right;
    background: transparent;
    color: #000;
    border: 1px solid transparent;
    font-weight: bold;
    border-radius: 5px;
    width: 50px;
    font-size: 30px;
    outline: none;
    cursor: pointer;
  }

  .btnmenu.color {
    color: #111;
  }

  .mobilenavlink {
    display: block;
    position: fixed;
    top: 90px;
    left: 25px;
    right: 15px;
    border-radius: 10px;
    height: 0px;
    z-index: 4;
    overflow: hidden;
    background: #fff;
    transition: 0.5s;
  }

  .mobilenavlink.see {
    height: 280px;
  }

  .mobilenavlink.color {
    background: #fff;
  }

  .flexlink {
    display: flex;
    flex-direction: column;
    margin: 50px;
    justify-content: center;
    align-items: left;
  }

  .flexlink a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    outline: none;
    color: #000;
    /*margin: 0px 30px;*/
    justify-content: center;
    align-items: left;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
    padding: 8px 0px;
    font-size: 23px;
  }

  .link-bar {
    display: block;
    width: 0%;
    height: 2px;
    background: #0670f9;
    position: relative;
    top: 22px;
    border-radius: 10px;
    transition: 0.5s ease-out;
  }
  .flexlink a:hover {
    color: #0670f9;
    /*border-bottom: 2px solid #0670F9;*/
  }

  .flexlink a:hover .link-bar {
    width: 100%;
  }

  .flexlinelink {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .flexlinelink i {
    margin-left: 10px;
  }

  .menuslinkbar {
    margin-left: 30px;
    overflow: hidden;
    height: 0px;
  }

  .menuslinkbar.see {
    height: auto;
  }

  .menuslinkbar2 {
    margin-left: 30px;
    overflow: hidden;
    height: 0px;
  }

  .menuslinkbar2.see {
    height: auto;
  }

  .menusslinkbar {
    margin-left: 30px;
    height: 0;
  }

  .menusslinkbar.see {
    height: auto;
  }

  .marge {
    margin: 0px 100px;
  }

  .nomobilbtn {
    display: none;
  }
}

@media (max-width: 500px) {
  header {
    left: 0px;
    right: 0px;
    top: 0px;
    background: #fafafa;
    z-index: 4;
  }

  .pmbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .favbtn {
    font-size: 30px;
  }

  .btn-subs {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .bayfavgroup {
    display: flex;
    align-items: center;
  }

  .detailbloc {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 120px 20px 20px 20px;
    overflow: hidden;
    min-height: 400px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }

  .flexdetail {
    display: flex;
    flex-direction: column-reverse;
  }

  .bigimgbloc {
    width: 100%;
    height: 350px;
  }

  .bigimgbloc img {
    object-fit: contain;
    height: 350px;
  }

  .actionsdetail {
    flex-direction: column;
  }

  .plusmoingroup {
    margin-bottom: 20px;
  }

  .imglist {
    display: inline-block;
    width: 100%;
    max-height: 200px;
    overflow-x: auto;
    background: #fff;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .imglistitem {
    display: inline-block;
    height: 160px;
  }

  .descbt {
    display: none;
  }

  .btn-bay {
    display: none;
  }

  .modalcommade {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: unset;
    left: 0%;
    bottom: -60%;
    transform: unset;
    border: 1px solid #fafafa;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
  }

  .modalcommade.see {
    bottom: 0;
  }

  .flexcard {
    border-radius: 0px;
    justify-content: center;
    width: 50px;
  }

  .flexmenu {
    border-radius: 0px;
    width: 80%;
  }

  .hero {
    height: 100vh;
  }

  .imageshome img {
    width: 45%;
  }

  .homeimgl {
    position: relative;
    top: 25px;
  }

  .homeimgm {
    position: relative;
    z-index: 1;
  }

  .hsection {
    margin: 60px 20px;
  }

  .productbg {
    width: unset;
  }

  .product {
    width: unset;
  }

  .addtocardbtn {
    margin-top: 5px;
    margin-left: 27%;
  }

  .module {
    width: 100%;
    padding: 30px 30px 20px 30px;
  }

  .flexitem {
    flex-direction: column;
  }

  .sectiontitle {
    margin-top: 20px;
  }

  .videosection {
    height: 300px;
  }

  .videosection img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /*transform: scale(1.1);*/
  }

  .buttonzone {
    height: 300px;
    top: -300px;
  }

  .middle-footer .mf-section.large {
    width: 85% !important;
  }

  .middle-footer {
    margin: 0px 0px;
  }

  .middle-footer .mf-section img {
    width: 140px;
  }

  .groupiconform {
    flex-direction: row !important;
  }

  .formletter {
    width: 65%;
  }

  .mf-group {
    flex-direction: column;
    width: 100%;
  }

  .catline {
    display: block !important;
    overflow: hidden;
  }

  .flexlinecard {
    flex-direction: column;
  }

  .servicetitle img {
    width: 50px;
    margin: 0px 40px;
  }

  .flexformgroup {
    flex-direction: column;
    margin: 20px 20px;
  }

  .margetitle {
    margin: 40px 20px 20px 20px;
  }

  .margebtn {
    margin: 20px 0px;
  }

  .subtitle {
    margin: 10px 10px;
  }

  .devisex {
    font-size: 30px;
  }

  .devisex2 {
    font-size: 50px;
  }

  .col-lg-4 {
    margin-bottom: 10px;
  }

  .contactbox {
    margin: -140% 0px 0px 0px;
  }

  .internmarge {
    margin: 20px;
  }

  .flexrow {
    flex-direction: column;
  }

  .nosize input {
    margin: 10px 0px 5px 0px !important;
  }

  .internmarge input,
  .internmarge textarea {
    margin: 10px 0px !important;
    width: 100% !important;
  }

  .servicepoints {
    width: 100%;
  }

  .paniersection {
    width: 100%;
    overflow: auto;
  }

  .billingsection {
    width: auto;
  }

  .flexpsection {
    flex-direction: column;
  }

  .centerbloc .form-style {
    width: 100%;
    margin: 10px 0px;
  }

  .centerbloc {
    align-items: flex-start;
    margin: 20px 20px;
  }

  .flexblocx {
    width: 100%;
  }

  .carditem {
    width: 100%;
    margin-bottom: 20px;
  }

  .catbtn {
    float: left;
  }

  .bottom-footer {
    flex-direction: column-reverse;
  }

  .socials {
    margin-bottom: 20px;
  }

  .link-bar {
    top: 5px !important;
  }

  .homeimgr {
    position: relative;
    top: 25px;
  }

  .imageshome {
    margin-top: -154px;
  }

  .heroText {
    left: 20px;
    right: 20px;
  }

  .titlehome {
    font-size: 22px;
  }

  .vectors img {
    width: 50px;
  }

  .nomobilbtn {
    display: none;
  }

  .flexmenu {
    display: flex;
    justify-content: space-between;
    margin: 0px 0px;
  }

  .flexlink {
    display: flex;
    flex-direction: column;
    margin: 30px;
    justify-content: center;
    align-items: left;
  }

  .flexlink a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    outline: none;
    color: #000;
    /*margin: 0px 30px;*/
    justify-content: center;
    align-items: left;
    transition: 0.5s;
    border-bottom: 2px solid transparent;
    padding: 8px 0px;
    font-size: 18px;
  }

  .top-footer {
    flex-direction: column;
  }

  .top-footer .tf-section {
    display: block;
    width: 100%;
    height: 160px;
    border-left: 1px solid transparent;
    border-top: 1px solid #1a1919;
  }

  .top-footer .tf-section:first-child {
    border-left: 1px solid transparent;
    border-top: 1px solid transparent;
  }

  .middle-footer {
    flex-direction: column;
  }

  .middle-footer .mf-section {
    width: auto;
    height: auto;
    margin: 10px 30px;
  }

  .marge {
    margin: 0px 20px;
  }

  .dendances {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: auto;
  }

  .tdces {
    margin: 10px 30px;
    padding: 5px 0px;
  }

  .listtendance {
    flex-direction: column;
  }

  .listtendance .itemt {
    width: 100%;
    border-top: 1px solid #000;
    border-left: 1px solid transparent;
    padding-top: 15px;
  }

  .listtendance .itemt:first-child {
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
  }

  .itemteam {
    width: 95%;
  }

  .omberphoto {
    width: 95%;
    height: 108.5%;
  }

  .flex-black {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
  }

  .flex-black .itemteam {
    margin: 10px 0px;
    width: 95%;
  }

  .flex-section {
    flex-direction: column;
    margin-top: 0px;
  }

  .sectimg {
    width: 100%;
    height: auto;
  }

  .senctionimg .img1 {
    width: 100%;
  }

  .senctionimg .img2 {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
  }

  .sectiontext {
    display: block;
    margin-left: 20px;
    width: 95%;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
  }

  .textsection {
    display: block;
    width: auto;
    margin: 30px 0px;
  }

  .imgsection {
    display: block;
    width: 100%;
    height: auto;
  }

  .imgblocv {
    width: 100%;
  }

  .ttile {
    margin: 20px 30px 0px 30px !important;
  }

  .linebox {
    width: auto;
    margin: 10px 30px 0px 30px;
  }

  .produit {
    width: auto;
  }
  .imggrid {
    width: auto;
  }

  .pt-5 {
    padding-top: 0rem !important;
  }

  .body {
    grid-template-columns: repeat(2, 1fr);
  }

  .body > div img {
    width: 60%;
  }

  .linecase {
    width: 100%;
    height: 130px;
    background: #eef9ff !important;
    margin: 0px;
    padding: 20px;
  }

  .cases {
    display: flex;
    flex-wrap: row;
    flex-wrap: wrap;
    background: #000;
    width: 80%;
    height: auto;
    margin: 30px 0px;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
  }

  .margesection {
    display: block;
    margin: 15px 20px;
  }

  .divide-aw {
    display: flex;
    flex-direction: column;
  }

  .image-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 30px;
  }

  .image-box img {
    width: 90%;
  }

  .divide-aw .awards-box {
    width: auto;
    padding: 0px;
  }

  .margebetween {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 20px;
  }

  .tbox {
    margin-top: 20px;
  }

  .deroulebox {
    display: block;
    width: auto;
    height: 60px;
    overflow: hidden;
    background: #444;
    color: #fff;
    margin: 8px 10px;
  }
}
