/*************DISPLAY***********/
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
/* .flex-items img {
  width: 100%;
} */
.grid {
  display: grid;
  column-gap: 3.2rem;
  row-gap: 10.8rem;
}

.grid-2-cols {
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  /* grid-template-rows: repeat(6, minmax(0, 300px)); */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: min(288px, 288px);
}

/*************DISPLAY***********/

.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mt-auto {
  margin-top: auto;
}
.mb-auto {
  margin-bottom: auto;
}

.pt80 {
  padding-top: 8rem;
}

.gap10 {
  gap: 10px;
}

.btn {
  width: min(35rem, 100%);
  height: 5rem;
  border-radius: 5px;
  border: 2px solid var(--color-main);
  background: #fffaf1;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s;

  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 180%; /* 36px */
}
.btn:hover {
  background-color: var(--color-main);
  color: white;
  /* border: 2px solid white; */
}

.black-btn {
  display: flex;
  width: min(60rem, 100%);
  height: 6.8rem;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: #fffaf1;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.black-btn:hover,
.black-btn2:hover {
  opacity: 0.7;
}

.black-btn::after,
.black-btn2::after {
  content: url('../img/arrow.svg');
  position: absolute;
  right: 2rem;
  top: 2.2rem;
}

.black-btn2 {
  transition: all 0.3s;

  display: flex;
  width: 100%;
  /* height: 6.8rem; */
  justify-content: center;
  align-items: center;
  background-color: black;
  color: #fffaf1;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  position: relative;
  height: 6.8rem;
}

.button {
  width: min(60rem, 90%);
  height: 6.8rem;
  margin: 10rem auto;
  /* width: 100%; */
}

.button2 {
  gap: 6rem !important;
}

@media (max-width: 768px) {
  .button2 {
    gap: 2rem !important;
  }
}
