.welcomeSection {
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: var(--secondary-color);
}

.welcomeSection .textContent {
  width: calc(50% + 120px);
  display: flex;
  justify-content: flex-end;
}

.welcomeSection .textContent .container {
  max-width: 740px;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.welcomeSection .textContent .container .infoContainer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.welcomeSection .textContent .container .infoContainer h1 {
  color: var(--totalwhite-color);
}

.welcomeSection .textContent .container .infoContainer p {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--totalwhite-color);
}

.welcomeSection .textContent .container .advantages {
  display: flex;
  gap: 60px;
  position: relative;
  left: 30px;
}

.welcomeSection .textContent .container .advantages .staffs {
  left: -30px;
  position: relative;
  left: -10px;
  display: flex;
  width: 290px;
}

.welcomeSection .textContent .container .advantages .staffs img {
  border-radius: 50%;
  width: 95px;
  height: 95px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border: 5px solid var(--totalwhite-color);
  background-color: var(--silver-color);
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(0) {
  position: relative;
  left: calc(-20px * 0);
  z-index: 0;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(1) {
  position: relative;
  left: calc(-20px * 1);
  z-index: 1;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(2) {
  position: relative;
  left: calc(-20px * 2);
  z-index: 2;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(3) {
  position: relative;
  left: calc(-20px * 3);
  z-index: 3;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(4) {
  position: relative;
  left: calc(-20px * 4);
  z-index: 4;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(5) {
  position: relative;
  left: calc(-20px * 5);
  z-index: 5;
}

.welcomeSection .textContent .container .advantages .staffs img:nth-child(6) {
  position: relative;
  left: calc(-20px * 6);
  z-index: 6;
}

.welcomeSection .textContent .container .btnContainer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.welcomeSection .textContent .container .btnContainer button {
  width: 335px;
}

.welcomeSection .textContent .container .btnContainer p {
  width: calc(100% - 335px - 20px);
  max-width: 335px;
  color: var(--silver-color);
}

.welcomeSection .imageContainer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - 120px);
}

.welcomeSection .imageContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 20%;
  object-position: center 20%;
}

@media (max-width: 950px) {
  .welcomeSection {
    flex-direction: column;
  }

  .welcomeSection .textContent {
    width: 100%;
  }

  .welcomeSection .textContent .container {
    max-width: 100%;
    width: calc(100% - 40px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .welcomeSection .textContent .container .infoContainer p {
    font-size: 18px;
    line-height: 24px;
  }

  .welcomeSection .textContent .container .infoContainer h1 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .welcomeSection .textContent .container .advantages {
    display: flex;
    left: 0;
  }

  .welcomeSection .textContent .container .advantages .staffs {
    left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
  }

  .welcomeSection .textContent .container .advantages .staffs img {
    left: 0px !important;
  }

  .welcomeSection .textContent .container .btnContainer {
    flex-direction: column;
    align-items: center;
  }

  .welcomeSection .textContent .container .btnContainer a {
    padding: 20px 0;
    width: 100%;
  }

  .welcomeSection .textContent .container .btnContainer a span {
    width: 100%;
    text-align: center;
  }

  .welcomeSection .textContent .container .btnContainer p {
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: var(--silver-color);
  }

  .welcomeSection .imageContainer {
    position: relative;
    width: 100%;
    height: 400px;
  }
}

/*# sourceMappingURL=welcomeSection.css.map */