:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --redColor: #b1001d;
  --lightWhite: #bdbdbd;
  --grayColor: #cac8c8;
  --c-bg-primary: #040507;
  --c-bg-primary-rgb: 4,5,7;
}

@font-face {
  font-family: "Moderat";
  src: url("../police/Moderat-Regular.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Moderat-Black";
  src: url("../police/Moderat-Black.ttf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "General Sans", sans-serif;
  background-color: var(--blackColor);
}

body.hiddenOverflow {
  overflow: hidden;
}

.full-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  padding: 40px 0;
  overflow-y: auto;
}
.full-menu::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #a3a3a3;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.full-menu .container-fluid {
  opacity: 0;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  z-index: 1;
  position: relative;
}
.full-menu h4 {
  font-size: 5vw;
  color: var(--blackColor);
}
.full-menu ul {
  list-style: none;
  padding-left: 0;
  padding-top: 16vw;
  margin-bottom: 14vw;
}
.full-menu ul li {
  line-height: 100%;
}
.full-menu ul li a {
  display: block;
  padding: 10px 0;
  font-size: 13vw;
  text-decoration: none;
  line-height: 100%;
  color: var(--blackColor);
  font-weight: 500;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.full-menu ul li a:hover {
  color: var(--redColor);
}
.full-menu ul li a.active {
  color: var(--redColor);
}
.full-menu .info a {
  color: var(--blackColor);
  display: inline-block;
  font-size: 6vw;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 4vw;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.full-menu .info a:hover {
  color: var(--redColor);
}
.full-menu .network {
  display: flex;
  gap: 6vw;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14vw;
}
.full-menu .network a {
  font-size: 5vw;
  color: var(--blackColor);
  text-decoration: none;
  font-weight: 600;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.full-menu .network a:hover {
  color: var(--redColor);
}

.full-menu.show {
  pointer-events: visible;
  visibility: visible;
}
.full-menu.show .container-fluid {
  opacity: 1;
}
.full-menu.show::before {
  height: 100%;
}

.menu-toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  z-index: 20000000;
  top: 30px;
  right: 14px;
}
.menu-toggle::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--whiteColor);
  display: block;
  margin: 2px;
  margin-left: auto;
  border-radius: 5px;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.menu-toggle span:nth-child(1) {
  width: 16px;
}

.menu-toggle.close span {
  background: var(--blackColor);
  width: 24px;
  margin: 0;
}
.menu-toggle.close span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-toggle.close span:nth-child(2) {
  transform: rotate(-45deg);
}

.btn-app {
  border: 1px solid rgba(163, 163, 163, 0.2274509804);
  font-size: 14px;
  padding: 10px 18px;
  color: var(--whiteColor);
  font-weight: 500;
  border-radius: 50px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  margin-top: 30px;
  background: rgba(163, 163, 163, 0.4705882353);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.btn-app:hover {
  border-color: var(--blackColor);
  padding: 10px 24px;
  color: var(--whiteColor);
}
.btn-app:hover::before {
  top: 0;
  border-radius: 50px;
}
.btn-app::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 100%;
  background: var(--redColor);
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  border-radius: 100%;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--colorWhite);
  z-index: 300000;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.loading h3 {
  font-size: 3.5vw;
  width: 60%;
  color: var(--colorTitle);
}
.loading h3 div {
  color: var(--primaryColor);
  font-family: "Kristas";
  display: inline-block;
}

.btn:focus, .btn:active {
  box-shadow: none;
}

header .navbar {
  padding: 16px 0;
  -webkit-backdrop-filter: blur(14px) saturate(180%);
          backdrop-filter: blur(14px) saturate(180%);
  background: rgba(0, 0, 0, 0.7411764706);
}
header .navbar .navbar-brand img {
  width: 150px;
}
header .navbar .block-links {
  gap: 70px;
}
header .navbar .block-links .link {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 14px;
  position: relative;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  font-weight: 500;
}
header .navbar .block-links .link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: auto;
  right: 0;
  background: var(--redColor);
  bottom: -10px;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
header .navbar .block-links .link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
header .navbar .block-links .link.active {
  opacity: 0.5;
  pointer-events: none;
}

.global-div {
  min-height: 100vh;
}

.global-div .wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.banner {
  height: 100vh;
  background-color: var(--blackColor);
  background-image: url("../images/noise.png");
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 50px;
}
.banner .content-banner {
  position: relative;
  width: 96%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: var(--darkColor);
  border-radius: 50px;
}
.banner .content-banner .carousel {
  width: 100%;
  position: relative;
  height: inherit;
}
.banner .content-banner .carousel .carousel-inner {
  height: 100%;
}
.banner .content-banner .carousel .carousel-inner .carousel-item {
  border-radius: 12px;
  height: inherit;
  transition: 1s;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .overplay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  border-radius: 12px;
  overflow: hidden;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .overplay .block {
  width: 20%;
  height: 100%;
  background: var(--blackColor);
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  border-radius: 12px;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .img-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  z-index: -2;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 50px;
  opacity: 0.4;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-text {
  width: 70%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 4vw 4vw 4vw;
  margin-right: auto;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content h2 {
  color: var(--whiteColor);
  font-size: 1.2vw;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content h1 {
  color: var(--whiteColor);
  font-size: 6vw;
  line-height: 100%;
  letter-spacing: -0.03em;
  position: relative;
  margin-bottom: 0;
  font-weight: 600;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph {
  margin-top: 1vw;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  position: relative;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn-down {
  width: 5vw;
  height: 5vw;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.349);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-size: 2vw;
  position: absolute;
  right: 0vw;
  bottom: -2vw;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn-down .bi {
  animation: nope_ 1.5s ease infinite;
}
@keyframes nope_ {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: rotate(-5deg) translateY(-5px);
  }
  40% {
    transform: translateY(5px) rotate(5deg);
  }
  60% {
    transform: rotate(-5deg) translateY(-5px);
  }
  80% {
    transform: rotate(5deg) translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph p {
  font-size: 1.3vw;
  margin-bottom: 3vw;
  width: 35vw;
  margin-right: auto;
  opacity: 0.7;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bg-fond);
  background: var(--primaryColor);
  border-radius: 50px;
  margin-right: 2vw;
  position: relative;
  z-index: 1;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  transition: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--primaryColor);
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  transition: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--primaryColor);
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn:hover::before {
  transform: scaleX(1.2);
  opacity: 0.7;
}
.banner .content-banner .carousel .carousel-inner .carousel-item .content .block-paragraph .btn:hover::after {
  transform: scaleX(1.4);
  opacity: 0.4;
}
.banner .content-banner .carousel .carousel-inner .carousel-indicators {
  bottom: 5vw;
  left: auto;
  right: 4vw;
  margin: 0;
}
.banner .content-banner .carousel .carousel-inner .carousel-indicators button {
  width: 10px;
  height: 10px;
  margin-right: 1vw;
  border-radius: 100%;
  position: relative;
}
.banner .content-banner .carousel .carousel-inner .carousel-indicators button::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--redColor);
  border-radius: 100%;
  display: none;
}
.banner .content-banner .carousel .carousel-inner .carousel-indicators button:last-child {
  margin-right: 0;
}
.banner .content-banner .carousel .carousel-inner .carousel-indicators button.active::before {
  display: block;
}

.block-about {
  padding: 10vw 0;
  padding-top: 5vw;
  position: relative;
}
.block-about .line {
  position: absolute;
  width: 94%;
  height: 1px;
  background: rgba(189, 189, 189, 0.3215686275);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-about .line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(360deg) perspective(500px);
  }
}
.block-about .line::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate1 20s linear infinite;
}
@keyframes rotate1 {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(-360deg) perspective(500px);
  }
}
.block-about p {
  font-size: 1.5vw;
  color: var(--lightWhite);
}
.block-about h2 {
  font-size: 1vw;
  margin-bottom: 30px;
  color: var(--whiteColor);
  display: inline-flex;
  align-items: center;
}
.block-about h2 span {
  color: var(--lightWhite);
}
.block-about h3 {
  font-size: 5vw;
  color: var(--whiteColor);
}

.block-services {
  padding: 10vw 0;
  padding-top: 7vw;
  position: relative;
}
.block-services .line {
  position: absolute;
  width: 94%;
  height: 1px;
  background: rgba(189, 189, 189, 0.3215686275);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-services .line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(360deg) perspective(500px);
  }
}
.block-services .line::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate1 20s linear infinite;
}
@keyframes rotate1 {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(-360deg) perspective(500px);
  }
}
.block-services h2 {
  display: inline-flex;
  align-items: center;
  color: var(--whiteColor);
  font-size: 1vw;
  margin-left: auto;
  justify-content: end;
}
.block-services h2 span {
  color: var(--lightWhite);
}
.block-services .row-text {
  margin-bottom: 12vw;
}
.block-services h3 {
  font-size: 8vw;
  color: var(--whiteColor);
  letter-spacing: -0.05rem;
  font-weight: 500;
  line-height: 100%;
}
.block-services .card {
  background: transparent;
  border: none;
  border-radius: 0;
  height: 100%;
}
.block-services .card:hover .letter {
  top: -14vw;
  color: var(--redColor);
}
.block-services .card .letter {
  position: absolute;
  font-size: 14vw;
  color: var(--whiteColor);
  font-weight: 600;
  top: -11vw;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
  z-index: -1;
}
.block-services .card .content-card {
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 44px 54px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  position: relative;
}
.block-services .card .content-card h4 {
  font-size: 2vw;
  color: var(--whiteColor);
  margin-bottom: 2vw;
  font-weight: 600;
}
.block-services .card .content-card p {
  color: var(--lightWhite);
  font-size: 1.2vw;
}

.block-branche {
  padding: 10vw 0;
  padding-top: 7vw;
  position: relative;
}
.block-branche .row-team {
  margin-top: 2vw;
}
.block-branche .row-text {
  margin-bottom: 7vw;
}
.block-branche .card-team .img-team {
  height: 32vw;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2vw;
}
.block-branche .card-team .img-team img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-branche .card-team h6 {
  color: var(--whiteColor);
  font-size: 3vw;
  font-weight: 400;
}
.block-branche .card-team p {
  font-size: 1.5vw;
  color: var(--lightWhite);
}
.block-branche .line {
  position: absolute;
  width: 94%;
  height: 1px;
  background: rgba(189, 189, 189, 0.3215686275);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-branche .line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(360deg) perspective(500px);
  }
}
.block-branche .line::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate1 20s linear infinite;
}
@keyframes rotate1 {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(-360deg) perspective(500px);
  }
}
.block-branche h2 {
  display: inline-flex;
  align-items: center;
  color: var(--whiteColor);
  font-size: 1vw;
  margin-left: auto;
  justify-content: end;
}
.block-branche h2 span {
  color: var(--lightWhite);
}
.block-branche h3 {
  font-size: 8vw;
  color: var(--whiteColor);
  letter-spacing: -0.5rem;
  font-weight: 500;
}
.block-branche .carousel-item {
  transition: transform 1s ease;
}
.block-branche .carousel-indicators {
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  bottom: 50px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  gap: 7px;
  align-items: center;
}
.block-branche .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: none;
  transition: 0.3s;
}
.block-branche .carousel-indicators button.active {
  width: 18px;
  height: 7px;
  border-radius: 50px;
}
.block-branche .card-branche {
  border: none;
  border-radius: 12px;
  background: transparent;
  height: 42vw;
  z-index: 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.block-branche .card-branche:hover img {
  transform: scale(1.2);
}
.block-branche .card-branche::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
  border-radius: 12px;
}
.block-branche .card-branche .content-text-card {
  position: absolute;
  z-index: 2;
  width: 50%;
  left: 0;
  bottom: 50px;
  padding: 50px;
  color: var(--whiteColor);
  font-size: 6vw;
  font-weight: 600;
  line-height: 100%;
}
.block-branche .card-branche img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: 1.5s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.block-branche h5 {
  font-size: 5vw;
  letter-spacing: -0.3rem;
  color: var(--whiteColor);
  line-height: 100%;
  margin-bottom: 2vw;
  font-weight: 500;
}
.block-branche p {
  font-size: 1.1vw;
  color: var(--lightWhite);
}
.block-branche .block-item-branche {
  padding: 3vw 0;
}
.block-branche .block-item-branche p {
  margin-bottom: 3vw;
  width: 28vw;
}

.block-projet {
  padding: 10vw 0;
  padding-top: 7vw;
  position: relative;
}
.block-projet .line {
  position: absolute;
  width: 94%;
  height: 1px;
  background: rgba(189, 189, 189, 0.3215686275);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-projet .line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(360deg) perspective(500px);
  }
}
.block-projet .line::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate1 20s linear infinite;
}
@keyframes rotate1 {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(-360deg) perspective(500px);
  }
}
.block-projet h2 {
  display: inline-flex;
  align-items: center;
  color: var(--whiteColor);
  font-size: 1vw;
  justify-content: flex-start;
}
.block-projet h2 span {
  color: var(--lightWhite);
}
.block-projet h3 {
  font-size: 10vw;
  color: #8e6767;
  letter-spacing: -0.1rem;
  font-weight: 400;
}
.block-projet .list-projet {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-top: 7vw;
}
.block-projet .list-projet li a {
  text-decoration: none;
}
.block-projet .list-projet li a .content-projet {
  padding: 3vw 0;
  border-top: 1px dashed rgba(189, 189, 189, 0.3215686275);
  width: 100%;
}
.block-projet .list-projet li a .content-projet:hover .img img {
  transform: scale(1.5);
}
.block-projet .list-projet li a .content-projet:hover .name-projet {
  color: var(--redColor);
}
.block-projet .list-projet li a .content-projet .img {
  height: 12vw;
  overflow: hidden;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  border-radius: 12px;
}
.block-projet .list-projet li a .content-projet .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.block-projet .list-projet li a .content-projet .name-projet {
  font-size: 4vw;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: -0.2rem;
  color: var(--whiteColor);
  font-weight: 500;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.block-projet .list-projet li a .content-projet .description {
  color: var(--lightWhite);
  font-size: 1.1vw;
}
.block-projet .list-projet li a .content-projet .description h6 {
  font-size: 1vw;
  color: var(--whiteColor);
  margin-bottom: 1vw;
}
.block-projet .list-projet li:last-child a .content-projet {
  padding-bottom: 0;
}

.block-video {
  padding: 10vw 0;
  padding-top: 7vw;
  position: relative;
  z-index: 1;
}
.block-video .line {
  position: absolute;
  width: 94%;
  height: 1px;
  background: rgba(189, 189, 189, 0.3215686275);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-video .line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(360deg) perspective(500px);
  }
}
.block-video .line::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 20px var(--whiteColor);
  animation: rotate1 20s linear infinite;
}
@keyframes rotate1 {
  0%, 100% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform-style: preserve-3d;
    transform: rotateZ(-360deg) perspective(500px);
  }
}
.block-video .list-marquee {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
  align-items: center;
  justify-content: center;
}
.block-video .marquee {
  display: flex;
  animation: marquee 15s linear infinite;
}
.block-video .marquee div {
  white-space: nowrap;
  font-size: 17vw;
  color: var(--lightWhite);
  font-weight: 600;
  display: flex;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}
.block-video h3 {
  font-size: 2vw;
  color: var(--whiteColor);
  margin-top: 5vw;
  font-weight: 400;
}
.block-video .video-play {
  position: relative;
  height: 35vw;
  z-index: 1;
}
.block-video .video-play .videos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-video .video-play .content-video {
  height: 100%;
  position: relative;
  z-index: 1;
  background: var(--redColor);
}
.block-video .video-play video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
.block-video .video-play video:first-child {
  mix-blend-mode: lighten;
}
.block-video .video-play video:nth-child(2) {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.block-video .video-play .play-video {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  background: rgba(163, 163, 163, 0.4705882353);
  color: var(--whiteColor);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  position: absolute;
  z-index: 1;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.block-video .video-play .play-video:hover {
  transform: scale(1.2);
}

.block-contact {
  padding: 10vw 0;
  padding-top: 7vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.block-contact::before {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  border: 10px solid var(--redColor);
  left: 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 20px var(--redColor);
  z-index: -1;
  top: 70%;
}
.block-contact form {
  background: rgba(0, 0, 0, 0.1764705882);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  padding-bottom: 4vw;
}
.block-contact form .form-control {
  border-radius: 0;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(189, 189, 189, 0.3411764706);
  padding-left: 0;
  color: var(--lightWhite);
  font-size: 1.2vw;
  box-shadow: none !important;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  margin-bottom: 2vw;
  resize: none;
}
.block-contact form .form-control:focus {
  border-color: var(--whiteColor);
  color: var(--lightWhite);
}
.block-contact form input {
  height: 65px;
}
.block-contact h2 {
  color: var(--whiteColor);
  font-size: 10vw;
  line-height: 100%;
  margin-bottom: 4vw;
}
.block-contact p {
  font-size: 1.4vw;
  color: var(--lightWhite);
  margin-bottom: 3vw;
}

.contact-page {
  padding-top: 12vw;
}

footer {
  padding-top: 7vw;
  padding-bottom: 5vw;
}
footer .btn-top {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--lightWhite);
  border-radius: 100%;
  color: var(--whiteColor);
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
footer .btn-top:hover {
  background: rgba(163, 163, 163, 0.2274509804);
  color: var(--whiteColor);
}
footer a {
  font-size: 1.3vw;
  color: var(--lightWhite);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1vw;
  position: relative;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
footer a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: auto;
  right: 0;
  background: var(--redColor);
  bottom: -10px;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
footer a:hover {
  color: var(--whiteColor);
}
footer a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
footer h6 {
  font-size: 2vw;
  color: var(--whiteColor);
  font-weight: 400;
  margin-bottom: 2vw;
}
footer .form-control {
  height: 65px;
  border-radius: 0;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid var(--lightWhite);
  padding-left: 0;
  color: var(--lightWhite);
  font-size: 1.2vw;
  box-shadow: none !important;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
  margin-bottom: 2vw;
}
footer .form-control:focus {
  border-color: var(--whiteColor);
  color: var(--lightWhite);
}
footer .network {
  display: flex;
  align-items: center;
  gap: 3vw;
}
footer .network a {
  font-weight: 400;
  color: var(--whiteColor);
}
footer p {
  font-size: 1.2vw;
  color: var(--lightWhite);
}

.banner-page {
  display: flex;
  flex-direction: column;
}
.banner-page .content-banner {
  padding: 10vw 0;
  padding-bottom: 0;
  position: relative;
}
.banner-page .content-banner .block-scroll {
  position: absolute;
  border-radius: 100%;
  right: 3vw;
  font-size: 24px;
  top: 20vw;
  display: flex;
  align-items: center;
}
.banner-page .content-banner .block-scroll .icon {
  width: 70px;
  height: 70px;
  border: 1px solid #a3a3a3;
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
}
.banner-page .content-banner .block-scroll span {
  font-size: 16px;
  color: var(--lightWhite);
}
.banner-page .content-banner h1 {
  font-size: 10vw;
  color: var(--lightWhite);
  font-weight: 500;
  line-height: 90%;
  margin-bottom: 5vw;
}
.banner-page .content-banner h1 span {
  display: block;
}
.banner-page .content-banner p {
  font-size: 2vw;
  color: var(--whiteColor);
}
.banner-page .content-banner .block-img {
  height: 30vw;
  border-radius: 12px;
  overflow: hidden;
}
.banner-page .content-banner .block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 576px) {
  .block-smoothscroll {
    transform: none !important;
    position: relative !important;
    overflow: clip !important;
  }
  .global-div {
    transform: none !important;
  }
  header .navbar {
    padding: 14px 0;
  }
  header .navbar .navbar-brand img {
    width: 120px;
  }
  .banner {
    margin-top: 90px;
    height: 165vw;
  }
  .banner .content-banner {
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
  }
  .banner .content-banner .block-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vw;
  }
  .banner .content-banner .logo .block {
    width: 100vw;
    height: 140vw;
    bottom: 25vw;
    right: -14vw;
    border: 5px solid var(--redColor);
  }
  .banner .content-banner .block-scroll {
    position: relative;
    bottom: 20vw;
    font-size: 14px;
    z-index: 2;
  }
  .banner .content-banner .block-scroll .icon {
    width: 40px;
    height: 40px;
    background: rgba(163, 163, 163, 0.4705882353);
    color: var(--whiteColor);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .banner .content-banner .block-scroll span {
    font-size: 16px;
    color: var(--whiteColor);
  }
  .banner .content-banner h1 {
    font-size: 16vw;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 14vw;
  }
  .banner .content-banner h1 span {
    letter-spacing: -0.1rem;
  }
  .banner .content-banner h1 span:nth-child(2) {
    margin-left: 0;
  }
  .banner .content-banner .content-text {
    width: 80%;
    position: relative;
    bottom: auto;
    right: auto;
    padding-right: 20px;
    padding-left: 10px;
  }
  .banner .content-banner .content-text p {
    font-size: 4.5vw;
  }
  .banner .content-banner {
    width: 96%;
    height: 100%;
  }
  .banner .content-banner .carousel .carousel-inner .carousel-item .content .block-text {
    padding: 0 4vw 30vw 4vw;
    width: 100%;
  }
  .banner .content-banner .carousel .carousel-inner .carousel-item .content h2 {
    font-size: 4vw;
  }
  .banner .content-banner .carousel .carousel-inner .carousel-item .content h1 {
    font-size: 12vw;
  }
  .banner .content-banner .carousel .carousel-inner .carousel-indicators {
    bottom: 10vw;
    left: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .banner .content-banner .carousel .carousel-inner .carousel-indicators button {
    width: 7px;
    height: 7px;
    margin-right: 4vw;
  }
  .banner-page .content-banner {
    padding: 30vw 0;
    padding-bottom: 0;
  }
  .banner-page .content-banner .block-scroll {
    font-size: 14px;
    z-index: 2;
    top: 65vw;
  }
  .banner-page .content-banner .block-scroll .icon {
    width: 40px;
    height: 40px;
    background: rgba(163, 163, 163, 0.4705882353);
    color: var(--whiteColor);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .banner-page .content-banner .block-scroll span {
    font-size: 16px;
    color: var(--whiteColor);
  }
  .banner-page .content-banner h1 {
    font-size: 16vw;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 8vw;
  }
  .banner-page .content-banner p {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
  .banner-page .content-banner .block-img {
    height: 100vw;
    overflow: hidden;
  }
  .block-about {
    padding: 16vw 0;
    position: relative;
  }
  .block-about .line::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-about .line::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-about p {
    font-size: 5vw;
    color: var(--lightWhite);
  }
  .block-about h2 {
    font-size: 5vw;
    margin-bottom: 20px;
  }
  .block-about h2 span {
    color: var(--lightWhite);
  }
  .block-about h3 {
    font-size: 8.5vw;
    color: var(--whiteColor);
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .block-services {
    padding: 16vw 0;
    padding-top: 14vw;
  }
  .block-services .line::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-services .line::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-services h2 {
    font-size: 5vw;
    margin-left: 0;
    margin-bottom: 10px !important;
  }
  .block-services .row-text {
    margin-bottom: 12vw;
  }
  .block-services h3 {
    font-size: 14vw;
    letter-spacing: -0.1rem;
    font-weight: 600;
    margin-bottom: 30px !important;
  }
  .block-services .col-lg-4:last-child .card .content-card {
    margin-bottom: 0;
  }
  .block-services .card .letter {
    font-size: 24vw;
    top: -21vw;
  }
  .block-services .card .content-card {
    padding: 38px;
    margin-bottom: 50px;
  }
  .block-services .card .content-card h4 {
    font-size: 7vw;
    margin-bottom: 5vw;
  }
  .block-services .card .content-card p {
    font-size: 4.5vw;
  }
  .block-branche {
    padding: 16vw 0;
    padding-top: 14vw;
    position: relative;
  }
  .block-branche .line::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-branche .line::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-branche .card-team .img-team {
    height: 54vw;
  }
  .block-branche .card-team h6 {
    color: var(--whiteColor);
    font-size: 5vw;
    font-weight: 400;
  }
  .block-branche .card-team p {
    font-size: 4.5vw;
    color: var(--lightWhite);
  }
  .block-branche h2 {
    font-size: 5vw;
    margin-left: 0;
    margin-bottom: 10px !important;
  }
  .block-branche h3 {
    font-size: 14vw;
    letter-spacing: -0.1rem;
    font-weight: 600;
    margin-bottom: 40px !important;
  }
  .block-branche .card {
    height: 90vw;
    margin-bottom: 20px;
  }
  .block-branche .card .content-text-card {
    width: 100%;
    padding: 30px;
    font-size: 8vw;
    bottom: 80px;
    line-height: 110%;
  }
  .block-branche h5 {
    font-size: 10vw;
    letter-spacing: -0.1rem;
    color: var(--whiteColor);
    line-height: 100%;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .block-branche p {
    font-size: 4.5vw;
  }
  .block-branche .block-item-branche {
    padding: 7vw 0;
  }
  .block-branche .block-item-branche p {
    margin-bottom: 30px;
    width: 100%;
  }
  .block-projet {
    padding: 16vw 0;
    padding-top: 14vw;
  }
  .block-projet .line::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-projet .line::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-projet h2 {
    font-size: 5vw;
    justify-content: flex-start;
    margin-bottom: 10px !important;
  }
  .block-projet h3 {
    font-size: 14vw;
    letter-spacing: -0.1rem;
    font-weight: 600;
  }
  .block-projet .list-projet {
    margin-bottom: 0;
    margin-top: 7vw;
  }
  .block-projet .list-projet li a {
    text-decoration: none;
  }
  .block-projet .list-projet li a .content-projet {
    margin-left: 0;
    padding: 5vw 0;
  }
  .block-projet .list-projet li a .content-projet .col-resp {
    padding: 0;
  }
  .block-projet .list-projet li a .content-projet .img {
    height: 52vw;
    margin-bottom: 20px;
  }
  .block-projet .list-projet li a .content-projet .name-projet {
    font-size: 8vw;
    letter-spacing: -0.1rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .block-projet .list-projet li a .content-projet .description {
    color: var(--lightWhite);
    font-size: 4.3vw;
  }
  .block-projet .list-projet li a .content-projet .description h6 {
    font-size: 4vw;
    color: var(--whiteColor);
    margin-bottom: 2vw;
  }
  .block-video {
    padding: 16vw 0;
    padding-top: 14vw;
  }
  .block-video .line::before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-video .line::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .block-video .video-play {
    position: relative;
    height: 70vw;
    z-index: 1;
  }
  .block-video .video-play .videos {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
  }
  .block-video .video-play .play-video {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
  .block-video .video-play .play-video:hover {
    transform: scale(1.2);
  }
  .block-contact {
    padding: 16vw 0;
    padding-top: 14vw;
  }
  .block-contact::before {
    width: 80vw;
    height: 80vw;
    border: 5px solid var(--redColor);
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    top: 90%;
  }
  .block-contact form {
    padding: 0 2vw;
    padding-bottom: 8vw;
  }
  .block-contact form .form-control {
    color: var(--lightWhite);
    font-size: 4.5vw;
  }
  .block-contact form input {
    height: 70px;
  }
  .block-contact h2 {
    font-size: 12vw;
    margin-bottom: 4vw;
    font-weight: 600;
  }
  .block-contact p {
    font-size: 5vw;
    color: var(--lightWhite);
    margin-bottom: 3vw;
    padding-bottom: 10px;
    width: 100% !important;
  }
  .contact-page {
    padding-top: 30vw;
  }
  footer {
    padding-top: 10vw;
    padding-bottom: 4vw;
  }
  footer .btn-top {
    width: 40px;
    height: 40px;
  }
  footer a {
    font-size: 5.3vw;
    margin-bottom: 3vw;
  }
  footer h6 {
    font-size: 8vw;
    color: var(--whiteColor);
    font-weight: 500;
    margin-bottom: 2vw;
  }
  footer .form-control {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }
  footer .form-control:focus {
    border-color: var(--whiteColor);
    color: var(--lightWhite);
  }
  footer .network {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3vw;
  }
  footer .network a {
    font-weight: 400;
    color: var(--whiteColor);
  }
  footer p {
    font-size: 4vw;
    color: var(--lightWhite);
  }
  .btn-app {
    font-size: 12px;
    padding: 8px 18px;
  }
}/*# sourceMappingURL=style.css.map */