:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --lightWhite: #bdbdbd;
  --colorMuted: #9ca5ad;
  --grayColor: #f7f7f7;
  --primaryColor: #0d9f1a;
  --blueColor: #0357a0;
  --transitionSm: .3s;
  --transitionLg: 1s cubic-bezier(.83,.03,.06,1.06);
}

body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Supreme", sans-serif;
  background-color: var(--whiteColor);
}

body.hiddenOverflow {
  overflow: hidden;
}

.container-img-wrap {
  position: fixed;
  width: 290px;
  height: 370px;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: var(--blackColor);
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
}
.container-img-wrap .container-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 12px;
  transition: 0.5s;
  opacity: 0.8;
}

#cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 880000;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: 0.1s, width 0.5s, height 0.5s;
  color: var(--whiteColor);
}
#cursor span {
  white-space: nowrap;
  font-size: 12px;
  transition: var(--transitionSm);
  opacity: 0;
}

#cursor.see {
  width: 90px;
  height: 90px;
}
#cursor.see span {
  display: flex;
  opacity: 1;
}

.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%;
}

.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-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-screen .content-balance {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}
.loading-screen .content-balance h2 {
  position: absolute;
  font-size: 5vw;
  font-weight: 600;
  transform: translateY(120%);
}
.loading-screen .balance {
  transform: scale(0.6);
}
.loading-screen .loader-balance {
  position: relative;
  z-index: 6;
  pointer-events: none;
  width: 100px;
  height: 100px;
  animation: animate 4s ease-in-out infinite;
}
@keyframes animate {
  0% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(25deg);
  }
}
.loading-screen .loader-balance::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: var(--whiteColor);
  bottom: 0;
  border-radius: 0 0 100px 100px;
}
.loading-screen .loader-balance .ball {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--whiteColor);
  border-radius: 50%;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  animation: animateBall 4s ease-in-out infinite;
}
@keyframes animateBall {
  0% {
    transform: translateY(-100%) translateX(-7px);
  }
  50% {
    transform: translateY(-100%) translateX(100px);
  }
  100% {
    transform: translateY(-100%) translateX(-7px);
  }
}
.loading-screen .block-reveal {
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  background: var(--blueColor);
  z-index: -1;
}
.loading-screen .block-reveal:first-child {
  top: 0;
}
.loading-screen .block-reveal:last-child {
  bottom: 0;
}
.loading-screen .line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--whiteColor);
  opacity: 0.08;
  top: 0;
}
.loading-screen .line:first-child {
  left: 22vw;
}
.loading-screen .line:last-child {
  right: 22vw;
}
.loading-screen h5 {
  color: var(--whiteColor);
  font-size: 18px;
}

.loading-screen.transition {
  background: var(--whiteColor);
}

.counter {
  position: fixed;
  left: 50px;
  bottom: 50px;
  display: flex;
  height: 100px;
  font-size: 100px;
  line-height: 102px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
          clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
  font-weight: 400;
}

.counter-1, .counter-2, .counter-3 {
  position: relative;
  top: -15px;
}

.num1offset1 {
  position: relative;
  right: -25px;
}

.num1offset2 {
  position: relative;
  right: -10px;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  transform: translate(-50%, -50%);
  display: flex;
  background: rgb(80, 80, 80);
}

.loader-1 {
  position: relative;
  background: #fff;
  width: 200px;
}

.loader-2 {
  position: relative;
  background: #fff;
  width: 100px;
}

.bar {
  height: 50px;
}

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

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

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

a {
  text-decoration: none;
}

.btn {
  border: none;
  box-shadow: none;
  border-radius: 8px;
  transition: var(--transitionLg);
  font-size: 14px;
  font-weight: 600;
}

.btn-white {
  background: var(--whiteColor);
  color: var(--blackColor);
}
.btn-white:hover {
  background: var(--blueColor);
  color: var(--whiteColor);
}

.btn-primary {
  background: var(--blueColor);
}
.btn-primary:hover {
  background: var(--primaryColor);
}

.btn-lg {
  padding: 16px 24px;
  font-size: 15px;
}

.btn-sm {
  font-size: 12px;
  padding: 8px 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transitionLg);
}
header .navbar {
  padding: 10px 0;
  width: 100%;
  margin: 0 auto 0 auto;
  transition: var(--transitionLg);
}
header .navbar .navbar-brand img {
  width: 70px;
}
header .navbar .block-links {
  gap: 120px;
}
header .navbar .block-links .link {
  text-decoration: none;
  color: var(--blackColor);
  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: 3px;
  border-radius: 5px;
  left: auto;
  right: 0;
  background: var(--blueColor);
  bottom: -20px;
  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:hover .block-text span:nth-child(2) {
  transform: translateY(-100%);
}
header .navbar .block-links .link:hover .block-text span:nth-child(3) {
  transform: translateY(0%);
}
header .navbar .block-links .link .block-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
header .navbar .block-links .link .block-text span {
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
header .navbar .block-links .link .block-text span:first-child {
  opacity: 0;
}
header .navbar .block-links .link .block-text span:nth-child(2), header .navbar .block-links .link .block-text span:nth-child(3) {
  position: absolute;
}
header .navbar .block-links .link .block-text span:nth-child(3) {
  transform: translateY(100%);
}
header .navbar .block-links .link.active {
  opacity: 0.3;
  pointer-events: none;
}
header .navbar .menu-toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
header .navbar .menu-toggle::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}
header .navbar .menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blackColor);
  display: block;
  margin: 2px;
  margin-left: auto;
  border-radius: 5px;
  transition: 0.8s cubic-bezier(0.83, 0.03, 0.06, 1.06);
}
header .navbar .menu-toggle span:nth-child(1) {
  width: 16px;
}
header .navbar .menu-toggle.close span {
  background: var(--blackColor);
  width: 24px;
  margin: 0;
}
header .navbar .menu-toggle.close span:nth-child(1) {
  transform: rotate(45deg);
}
header .navbar .menu-toggle.close span:nth-child(2) {
  transform: rotate(-45deg);
}

header.translate {
  transform: translateY(-100%);
}

header.header-sticky .navbar {
  padding: 10px 14px;
  width: 96%;
  background: rgb(255, 255, 255);
  margin: 20px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 120px;
}
.banner .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 120px;
  background: var(--whiteColor);
}
.banner .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.banner .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.banner .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 14px;
  bottom: -34px;
}
.banner .block-border-inversed:last-child {
  bottom: 7px;
  left: 0;
  border-top-right-radius: 12px;
}
.banner .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 14px;
  top: -24px;
}
.banner .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 6px;
}
.banner .carousel, .banner .carousel-inner, .banner .carousel-item {
  height: inherit;
}
.banner .carousel .btn-carousel, .banner .carousel-inner .btn-carousel, .banner .carousel-item .btn-carousel {
  top: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  bottom: 2vw;
  border-radius: 8px;
  opacity: 1;
  transition: var(--transitionLg);
  border: 1px solid transparent;
  right: auto;
  z-index: 6;
  opacity: 1;
  color: var(--blackColor);
}
.banner .carousel .btn-carousel:hover, .banner .carousel-inner .btn-carousel:hover, .banner .carousel-item .btn-carousel:hover {
  background: var(--grayColor);
}
.banner .carousel .btn-carousel.carousel-control-prev, .banner .carousel-inner .btn-carousel.carousel-control-prev, .banner .carousel-item .btn-carousel.carousel-control-prev {
  left: 4vw;
}
.banner .carousel .btn-carousel.carousel-control-next, .banner .carousel-inner .btn-carousel.carousel-control-next, .banner .carousel-item .btn-carousel.carousel-control-next {
  left: 10vw;
}
.banner .content-banner {
  margin: auto;
  width: 98%;
  height: 98%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner .content-banner .num {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.231372549);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 100%;
  top: 140px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1450980392);
}
.banner .content-banner .overplay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.banner .content-banner img, .banner .content-banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .content-banner h2 {
  color: var(--blackColor);
  font-weight: 400;
  font-size: 18px;
  display: inline-block;
  padding: 5px 12px;
  background: var(--whiteColor);
  border-radius: 50px;
  line-height: 100%;
}
.banner .content-banner h1 {
  font-size: 10vw;
  color: var(--whiteColor);
  line-height: 80%;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
}
.banner .content-banner h1::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 5px;
  background: var(--whiteColor);
  left: 0;
  bottom: -40px;
  border-radius: 10px;
}
.banner .content-banner h1 span {
  color: var(--blueColor);
}
.banner .content-banner .text-content p {
  margin-top: 300px;
  color: var(--whiteColor);
  font-weight: 300;
  font-size: 14px;
}

.title {
  color: var(--blackColor);
  font-size: 5.6vw;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.title span {
  color: var(--blueColor);
}

.block-about {
  padding: 7vw 0;
}
.block-about .title {
  margin-bottom: 50px;
}
.block-about .card {
  border: none;
  height: 260px;
  width: 80%;
  max-width: 100%;
  border-radius: 12px;
  transform-style: preserve-3d;
}
.block-about .card .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--whiteColor);
}
.block-about .card .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.block-about .card .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.block-about .card .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.block-about .card .block-border-inversed:last-child {
  bottom: 0px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-about .card .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 0px;
  top: -24px;
}
.block-about .card .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 0px;
}
.block-about .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.block-about p {
  color: var(--colorMuted);
  font-size: 1.8vw;
}
.block-about p.text-lg {
  font-size: 1.6vw;
  padding-right: 8vw;
  color: var(--blackColor);
  font-weight: 400;
}
.block-about .row-item {
  position: relative;
}
.block-about .row-item .line {
  position: absolute;
  background: var(--blackColor);
  opacity: 0.1;
}
.block-about .row-item .line:first-child {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.block-about .row-item .line:last-child {
  width: 96%;
  height: 1px;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
}
.block-about .card-item h4 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.8vw;
  color: var(--blueColor);
}
.block-about .card-item p {
  font-size: 1.4vw;
  margin-bottom: 0;
  color: var(--blackColor);
}

.block-service {
  padding: 7vw 0;
  background: var(--grayColor);
  border-radius: 12px;
  position: relative;
}
.block-service .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 120px;
  background: var(--whiteColor);
}
.block-service .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.block-service .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.block-service .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.block-service .block-border-inversed:last-child {
  bottom: 0px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-service .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 0px;
  top: -24px;
}
.block-service .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 0px;
}
.block-service .title {
  margin-bottom: 100px;
}
.block-service .row-item {
  position: relative;
}
.block-service .row-item .line {
  position: absolute;
  background: var(--whiteColor);
  opacity: 0.1;
}
.block-service .row-item .line:first-child {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.block-service .card-service {
  border: none;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  background: transparent;
  z-index: 1;
}
.block-service .card-service .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--grayColor);
}
.block-service .card-service .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--grayColor);
  border-bottom: 10px solid var(--grayColor);
  border-bottom-left-radius: 12px;
}
.block-service .card-service .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  left: -34px;
  top: 2px;
}
.block-service .card-service .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  right: 0px;
  bottom: -34px;
}
.block-service .card-service .block-border-inversed:last-child {
  bottom: -1px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-service .card-service .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  left: 0px;
  top: -24px;
}
.block-service .card-service .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  right: -24px;
  bottom: 0px;
}
.block-service .card-service:hover .block-img:after {
  height: 0%;
}
.block-service .card-service:hover .block-img img {
  transform: scale(1);
}
.block-service .card-service:hover .block-img .letter {
  transform: rotate(-25deg);
  font-size: 50vw;
  bottom: -350px;
  right: -150px;
  opacity: 1;
  mix-blend-mode: exclusion;
}
.block-service .card-service:hover h4, .block-service .card-service:hover p {
  color: var(--whiteColor);
}
.block-service .card-service:hover h4 span span:nth-child(2) {
  transform: translateY(-100%);
}
.block-service .card-service:hover h4 span span:nth-child(3) {
  transform: translateY(0%);
}
.block-service .card-service .block-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.block-service .card-service .block-img .letter {
  position: absolute;
  font-size: 30vw;
  z-index: 3;
  right: 40px;
  bottom: -120px;
  color: var(--whiteColor);
  opacity: 0.1;
  transition: var(--transitionLg);
  transform: rotate(0);
  mix-blend-mode: normal;
}
.block-service .card-service .block-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: var(--transitionLg);
}
.block-service .card-service .block-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: var(--blueColor);
  z-index: 2;
  transition: var(--transitionLg);
}
.block-service .card-service .block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: inherit;
  top: 0;
  left: 0;
  transform: scale(1.5);
  transition: var(--transitionLg);
}
.block-service .card-service .num {
  position: absolute;
  font-size: 20px;
  top: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.231372549);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 100%;
  right: 30px;
  color: var(--whiteColor);
  transition: var(--transitionLg);
}
.block-service .card-service h4 {
  margin-bottom: 150px;
  font-size: 4.5vw;
  color: var(--whiteColor);
  position: relative;
  transition: var(--transitionLg);
}
.block-service .card-service h4 span {
  position: relative;
  overflow: hidden;
  transition: var(--transitionLg);
  display: block;
}
.block-service .card-service h4 span span:first-child {
  opacity: 0;
}
.block-service .card-service h4 span span:nth-child(2), .block-service .card-service h4 span span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
}
.block-service .card-service h4 span span:nth-child(3) {
  transform: translateY(100%);
}
.block-service .card-service h4::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 5px;
  background: var(--primaryColor);
  left: 0;
  bottom: -40px;
  border-radius: 10px;
}
.block-service .card-service p {
  color: var(--whiteColor);
  transition: var(--transitionLg);
  margin-bottom: 50px;
}

.service-all .card-service .block-border-inversed {
  background: var(--whiteColor);
}
.service-all .card-service .block-border-inversed:first-child {
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
}
.service-all .card-service .block-border-inversed:first-child::before {
  box-shadow: 10px -10px 0 var(--whiteColor);
}
.service-all .card-service .block-border-inversed:first-child::after {
  box-shadow: 10px -10px 0 var(--whiteColor);
}
.service-all .card-service .block-border-inversed:last-child::before {
  box-shadow: -10px 10px 0 var(--whiteColor);
}
.service-all .card-service .block-border-inversed:last-child::after {
  box-shadow: -10px 10px 0 var(--whiteColor);
}

.block-projets {
  padding: 7vw 0;
}
.block-projets .row-text {
  margin-bottom: 100px;
}
.block-projets .carousel-item {
  transition: 1.5s;
}
.block-projets .text-lg {
  font-size: 1.8vw;
  color: var(--colorMuted);
}
.block-projets ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.block-projets ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.block-projets ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.block-projets ul li a {
  padding: 24px 0;
  mix-blend-mode: difference;
}
.block-projets ul li .num {
  display: flex;
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--colorMuted);
}
.block-projets ul li .num span {
  display: flex;
  padding: 0 8px;
}
.block-projets ul li h4 {
  font-size: 2.8vw;
  color: var(--blackColor);
  font-weight: 400;
  word-break: break-all;
}
.block-projets ul li p {
  font-size: 1.2vw;
  color: var(--blackColor);
  font-weight: 300;
}
.block-projets ul li a {
  font-weight: 500;
  color: var(--blackColor);
}
.block-projets .carousel-indicators {
  z-index: 4;
  margin: 0;
  right: auto;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.231372549);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: var(--transitionLg);
  border: 1px solid rgba(255, 255, 255, 0.231372549);
  padding: 12px 12px;
  border-radius: 50px;
}
.block-projets .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: none;
  transition: var(--transitionLg);
}
.block-projets .carousel-indicators button.active {
  width: 22px;
}
.block-projets .card-img-projet {
  border-radius: 12px;
  border: none;
  height: 35vw;
  overflow: hidden;
}
.block-projets .card-img-projet:hover img {
  transform: scale(1.3);
}
.block-projets .card-img-projet a {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}
.block-projets .card-img-projet a .img-block {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.block-projets .card-img-projet a .img-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.block-projets .card-img-projet a .content-text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.block-projets .card-img-projet a .content-text h3 {
  font-size: 0.9vw;
  text-transform: uppercase;
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.block-projets .card-img-projet a .content-text h2 {
  color: var(--whiteColor);
  font-size: 4vw;
  font-weight: 600;
  margin-bottom: 0;
  padding-right: 20vw;
  line-height: 100%;
}
.block-projets .card-img-projet a .content-text p {
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 100px;
}
.block-projets .card-img-projet .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--whiteColor);
}
.block-projets .card-img-projet .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.block-projets .card-img-projet .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.block-projets .card-img-projet .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.block-projets .card-img-projet .block-border-inversed:last-child {
  bottom: 0px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-projets .card-img-projet .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 0px;
  top: -24px;
}
.block-projets .card-img-projet .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 0px;
}
.block-projets .card-img-projet img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: var(--transitionLg);
  transform: scale(1);
}

.block-text-center {
  padding: 7vw 0;
  background: var(--grayColor);
}
.block-text-center .title {
  line-height: 100%;
}

.block-bim {
  padding: 7vw 0;
  background: var(--grayColor);
}
.block-bim .card {
  border: none;
  border-radius: 12px;
  z-index: 1;
  padding: 100px 70px;
  padding-bottom: 150px;
  overflow: hidden;
}
.block-bim .card .btn-play {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 40px;
  color: var(--whiteColor);
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.231372549);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: var(--transitionLg);
  border: 1px solid rgba(255, 255, 255, 0.231372549);
}
.block-bim .card .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 120px;
  background: var(--grayColor);
}
.block-bim .card .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--grayColor);
  border-bottom: 10px solid var(--grayColor);
  border-bottom-left-radius: 12px;
}
.block-bim .card .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  left: -34px;
  top: 2px;
}
.block-bim .card .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  right: 0px;
  bottom: -34px;
}
.block-bim .card .block-border-inversed:last-child {
  bottom: -1px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-bim .card .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  left: 0px;
  top: -24px;
}
.block-bim .card .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  right: -24px;
  bottom: 0px;
}
.block-bim .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  top: 0;
  left: 0;
  border-radius: 12px 0 12px 0;
}
.block-bim .card::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--blueColor);
  z-index: -1;
  border-radius: 12px 0 0 0;
}
.block-bim .card .block-blur {
  padding: 70px 70px;
}
.block-bim .card .block-blur .title {
  color: var(--whiteColor);
  margin-bottom: 70px;
  position: relative;
}
.block-bim .card .block-blur .title::before {
  content: "";
  width: 25%;
  position: absolute;
  height: 5px;
  background: var(--primaryColor);
  bottom: -30px;
  left: 0;
  border-radius: 5px;
}
.block-bim .card .block-blur p {
  color: var(--whiteColor);
  opacity: 0.8;
}

.block-testmonial {
  padding: 7vw 0;
}
.block-testmonial .text-lg {
  font-size: 1.8vw;
  color: var(--colorMuted);
}
.block-testmonial .row-test {
  margin-top: 100px;
}
.block-testmonial .card {
  border: none;
  border-radius: 12px;
  height: 100%;
  background: var(--grayColor);
  padding: 28px 34px;
}
.block-testmonial .card .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--whiteColor);
}
.block-testmonial .card .block-border-inversed .icon {
  width: 50px;
  height: 50px;
  color: var(--primaryColor);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--grayColor);
}
.block-testmonial .card .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.block-testmonial .card .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.block-testmonial .card .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.block-testmonial .card .name-person {
  font-size: 1.8vw;
  color: var(--blueColor);
  font-weight: 500;
  margin-bottom: 100px;
}
.block-testmonial .card p {
  color: var(--blackColor);
  margin-bottom: 0;
}

.block-intro {
  padding: 7vw 0;
}
.block-intro .text-scroll {
  font-size: 8vw;
  color: var(--blackColor);
}
.block-intro .text-scroll span {
  color: var(--blueColor);
  font-weight: 700;
}

footer {
  background: var(--blueColor);
  padding: 5vw 0;
  padding-bottom: 120px;
  position: relative;
}
footer .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 8%;
  height: 60px;
  background: var(--whiteColor);
}
footer .block-border-inversed .btn-top {
  width: 50px;
  height: 50px;
  color: var(--blackColor);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--grayColor);
  cursor: pointer;
}
footer .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
footer .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
footer .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
footer h4 {
  color: var(--whiteColor);
  font-size: 2vw;
}
footer p {
  color: var(--grayColor);
  font-size: 1.4vw;
}
footer ul {
  padding-left: 0;
}
footer ul li {
  list-style: none;
}
footer ul li a {
  color: var(--whiteColor);
  font-size: 1.5vw;
  display: inline-block;
  position: relative;
}
footer ul li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
footer ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  right: 0;
  left: auto;
  height: 3px;
  background: var(--primaryColor);
  bottom: -5px;
  transition: var(--transitionLg);
  border-radius: 5px;
}
footer hr {
  border-color: var(--whiteColor);
}
footer .bottom-info {
  padding: 20px 0;
}
footer small {
  color: var(--whiteColor);
  font-size: 14px;
}
footer small a {
  color: var(--whiteColor);
  transition: var(--transitionSm);
  font-weight: 500;
}
footer small a:hover {
  opacity: 0.8;
}

.block-stat {
  padding: 2vw 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.block-stat h3 {
  color: var(--blackColor);
  font-size: 1.2vw;
}
.block-stat h4 {
  color: var(--blueColor);
  font-size: 4vw;
}

.banner-sm {
  margin-top: 150px;
}
.banner-sm p {
  font-size: 1.8vw;
  color: var(--colorMuted);
  margin-bottom: 0;
}
.banner-sm .content-img {
  height: 32vw;
  position: relative;
  width: 98%;
  overflow: hidden;
  margin-top: 4vw;
  border-radius: 12px;
}
.banner-sm .content-img .block-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.banner-sm .content-img .block-img::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
.banner-sm .content-img .block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.banner-sm .content-img .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 120px;
  background: var(--whiteColor);
}
.banner-sm .content-img .block-border-inversed:first-child {
  top: -2px;
  right: -14px;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.banner-sm .content-img .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.banner-sm .content-img .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 14px;
  bottom: -34px;
}
.banner-sm .content-img .block-border-inversed:last-child {
  bottom: -6px;
  left: -14px;
  border-top-right-radius: 12px;
}
.banner-sm .content-img .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 14px;
  top: -24px;
}
.banner-sm .content-img .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 6px;
}

.block-parallax {
  height: 32vw;
  overflow: hidden;
}
.block-parallax .content-img {
  width: 100%;
  height: 100%;
}
.block-parallax .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.existance {
  padding: 7vw 0;
  background: var(--whiteColor);
}
.existance .card {
  border: none;
  border-radius: 12px;
  height: 100%;
  padding: 28px 34px;
}
.existance .card .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--whiteColor);
}
.existance .card .block-border-inversed .icon {
  width: 50px;
  height: 50px;
  color: var(--primaryColor);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--grayColor);
}
.existance .card .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.existance .card .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.existance .card .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.existance .card .name-person {
  font-size: 3vw;
  color: var(--blueColor);
  font-weight: 500;
  margin-bottom: 100px;
}
.existance .card p {
  color: var(--blackColor);
  margin-bottom: 0;
  font-size: 2vw;
}

.block-team {
  padding: 7vw 0;
  background: var(--grayColor);
  position: relative;
}
.block-team .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--whiteColor);
}
.block-team .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--whiteColor);
  border-bottom: 10px solid var(--whiteColor);
  border-bottom-left-radius: 12px;
}
.block-team .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  left: -34px;
  top: 2px;
}
.block-team .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--whiteColor);
  right: 0px;
  bottom: -34px;
}
.block-team .block-border-inversed:last-child {
  bottom: 0px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-team .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  left: 0px;
  top: -24px;
}
.block-team .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--whiteColor);
  right: -24px;
  bottom: 0px;
}
.block-team .text-lg {
  font-size: 1.8vw;
  color: var(--colorMuted);
  margin-bottom: 0;
}
.block-team .row-card {
  margin-top: 5vw;
}
.block-team .card {
  border: none;
  border-radius: 0;
  background: transparent;
}
.block-team .card .block-border-inversed {
  position: absolute;
  z-index: 4;
  width: 25%;
  height: 60px;
  background: var(--grayColor);
}
.block-team .card .block-border-inversed:first-child {
  top: -2px;
  right: 0;
  border-left: 10px solid var(--grayColor);
  border-bottom: 10px solid var(--grayColor);
  border-bottom-left-radius: 12px;
}
.block-team .card .block-border-inversed:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  left: -34px;
  top: 2px;
}
.block-team .card .block-border-inversed:first-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 10px -10px 0 var(--grayColor);
  right: 0px;
  bottom: -34px;
}
.block-team .card .block-border-inversed:last-child {
  bottom: 77px;
  left: 0;
  border-top-right-radius: 12px;
  height: 60px;
}
.block-team .card .block-border-inversed:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  left: 0px;
  top: -24px;
}
.block-team .card .block-border-inversed:last-child::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--grayColor);
  right: -24px;
  bottom: 0px;
}
.block-team .card:hover .img-person img {
  transform: scale(1.1);
}
.block-team .card .img-person {
  height: 32vw;
  border-radius: 12px;
  overflow: hidden;
}
.block-team .card .img-person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: var(--transitionLg);
}
.block-team .card .content-text h4 {
  font-size: 1.8vw;
  color: var(--blackColor);
}
.block-team .card .content-text span {
  color: var(--blueColor);
}

.block-contact {
  margin-top: 150px;
  padding-bottom: 7vw;
}
.block-contact .title {
  margin-bottom: 5vw;
}
.block-contact p {
  font-size: 1.6vw;
  color: var(--blackColor);
}
.block-contact label {
  color: var(--colorMuted);
  margin-bottom: 10px;
}
.block-contact .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  padding-left: 0;
  color: var(--blackColor);
}
.block-contact .form-control:focus {
  border-color: var(--blueColor);
}/*# sourceMappingURL=style.css.map */