/*  */
.zero__block--image {
  aspect-ratio: 100 / 34;
  overflow: hidden;
  width: 100%;
  height: auto;
}

/*  */
.zero__block--image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.zero__block__container {
  padding-right: 40px;
  padding-left: 40px;
}
.zero__block--information {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.zero__block--information__left {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}
/*  */
.shevron__container {
  height: 127px;
  min-width: 120px;
  background-image: url(../img/shevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}
.info h2 {
  font-size: 20px;
}
.info p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
/*  */
.signin_button_fill {
  background-color: #434b36;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 60px;
  color: white;
  transition: all 0.4s;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.signin_button_fill:hover {
  background-color: #c3cdb2;
  color: #434b36;
}

@media (max-width: 1024px) {
  .zero__block--information {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .zero__block__container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .info h1 {
    font-size: 30px;
  }
  .zero__block--information__left {
    gap: 20px;
  }
  .zero__block--image {
    aspect-ratio: 100 / 45;
  }
}
@media screen and (max-width: 576px) {
  .zero__block--information__left {
    flex-wrap: wrap;
  }
  .shevron__container {
    min-width: 70px;
    height: 66px;
  }
  .info h1 {
    font-size: 24px;
  }
  .info h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .signin_button_fill {
    font-size: 16px;
    padding: 16px 40px;
  }
  .zero__block--image {
    aspect-ratio: 100 / 55;
  }
  .zero__block--image img {
    height: 100%;
  }
}

/*  */
.zero__block--information .info {
  align-items: flex-start;
}

.zero__block--information .corps-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f0f1ee;
  color: #434b36;
  transition: background-color 0.4s, color 0.4s;
}
.zero__block--information .corps-info__text {
  font-size: 14px !important;
}
.zero__block--information .corps-info__bold {
  font-weight: 700;
}
.zero__block--information .corps-info:hover {
  background-color: #434b36;
  color: #ffffff;
}
