body {
  --first: #171717;
  --second: #1F3188;
  --third: #EC812A;
  --firstlight: #737373;
  --secondlight: #ECF8FF;
  --thirdlight: #FBF6F2;
  background: #000;
}

.xs-title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  font-family: "Gotham";
  color: white;
  text-align: center;
}

.md-title {
  font-size: 44px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  color: white;
  font-family: "Gotham";
  text-align: center;
}
@media (max-width: 768px) {
  .md-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.lg-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Gotham";
  text-align: center;
}
@media (max-width: 768px) {
  .lg-title {
    font-size: 36px;
    line-height: 44px;
  }
}

.paragraph {
  color: var(--firstlight);
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  font-family: "Aptos";
}

section {
  padding: 60px 0;
}

.divider {
  text-align: center;
  overflow: hidden;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

a {
  text-decoration: none;
}

ul li {
  padding: 0;
}
body {
  font-family: "Gotham";
}

section {
  overflow: hidden;
}

.btn {
  --bs-btn-border-radius: 0;
  max-width: -moz-max-content;
  max-width: max-content;
}

.btn-primary {
  --bs-btn-color: white;
  --bs-btn-bg: var(--third);
  --bs-btn-hover-bg: var(--second);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-padding-x: 40px;
  --bs-btn-padding-y: 15px;
  --bs-btn-font-weight: 600;
  text-transform: uppercase;
  transition: 0.2s ease-in-out all;
}
.btn-secondary {
  background: transparent;
  color: var(--first);
  padding: 7px 35px;
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.btn-secondary:hover {
  color: #fff;
}

.btn-third {
  background: transparent;
  padding: 7px 35px;
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.btn-third:hover {
  color: #fff;
}

.home-projet {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
}
.home-projet__thumbnail {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
}
@media (max-width: 768px) {
  .home-projet__thumbnail {
    background: transparent !important;
  }
}
.home-projet__thumbnail:hover .home-projet__overlay {
  z-index: 1;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.home-projet__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .home-projet__overlay {
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
  }
}
.home-projet__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* display: none; */
  opacity: 0;
  animation: fadeIn 0.3s ease-in-out forwards;
}
@media (max-width: 768px) {
  .home-projet__video {
    opacity: 1;
    display: block;
    animation: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}/*# sourceMappingURL=import_block.css.map */