/* From Uiverse.io by mrhyddenn */
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}

.button::before,
.button::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7d8082;
  transition: all 0.15s ease;
}

.button::before {
  top: 0;
  border-bottom-width: 0;
}

.button::after {
  bottom: 0;
  border-top-width: 0;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.button_lg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.button_text {
  position: relative;
}

.button:hover {
  color: #0f1923;
}

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: #fff;
}

@media (min-width: 1405px) {
  .card {
    width: 400px !important ;
    height: 354px !important;
  }
  .card-details p .fa-2xl {
    font-size: 2em;
  }
}

.card-1 {
  width: 350px;
  height: 344px;
  border-radius: 20px;
  background: #2a3639;
  position: relative;
  padding: 1.8rem;
  /* border: 2px solid #c3c6ce; */
  transition: 0.5s ease-out;
  overflow: visible;
  margin-bottom: 20px;
}
.card-details {
  color: #fff;
  height: 100%;
  gap: 0.5em;
  display: grid;
  place-content: center;
}
.card-details .text-title {
  color: #ff4655;
}
.card-details p .fa-2xl {
  font-size: 1.7em;
}
.card-button {
  transform: translate(-50%, 125%);
  width: 70%;
  border-radius: 1rem;
  border: none;
  background-color: #ff4655;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
}

.text-bod {
  color: rgb(234, 227, 240);
}

/*Text*/
.text-title {
  font-size: 1.5em;
  font-weight: bold;
}

/*Hover*/
.card-1:hover {
  border-color: #ff4655;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.card-1:hover .card-button {
  transform: translate(-50%, 50%);
  opacity: 1;
}

/* From Uiverse.io by D3OXY */
.card {
  position: relative;
  width: 350px;
  aspect-ratio: 16/9;
  background-color: rgb(248 249 250);
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card img {
  width: 400px;
  height: 400px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #ff4655;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 25px;
  color: rgb(248 249 250);
}

.card__description {
  margin: 10px 0 10px;
  font-size: 20px;
  color: rgb(248 249 250);
  line-height: 1.4;
}
@media (max-width: 1400px) {
  .card__description {
    font-size: 12px;
  }
  .card__title {
    font-size: 20px;
  }
}

.card__button {
  padding: 15px;
  border-radius: 8px;
  background: #293239;
  border: none;
  color: rgb(248 249 250);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.in-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-grou {
  position: relative;
}

.input {
  border: solid 1.5px #2a3639;
  width: 350px;
  height: 70px;
  border-radius: 1rem;
  background: #2a3639;
  padding: 1rem;
  font-size: 1rem;
  color: #f5f5f5;
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.user-label {
  position: absolute;
  left: 15px;
  color: #e8e8e8;
  pointer-events: none;
  transform: translateY(1.3rem);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input:focus,
input:valid {
  outline: none;
  border: solid #ff4655;
}

.input:focus ~ label,
input:valid ~ label {
  transform: translateY(-50%) scale(0.8);
  background-color: #2a3639;
  padding: 0 0.2em;
  color: #ff4655;
}
textarea {
  resize: none;
}
@media (min-width: 1400px) {
  .textarea {
    width: 900px !important;
  }
}
@media (max-width: 1130px) {
  .textarea {
    width: 790px !important;
  }
}
@media (max-width: 880px) {
  .textarea {
    width: 700px !important;
  }
}
@media (max-width: 770px) {
  .textarea {
    width: 370px !important;
  }
}
.textarea {
  width: 800px;
  height: 300px;
}

.button-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  border-radius: 36px;
  font-weight: 700;
  height: 54px;
  font-size: 16px;
  padding-inline: 20px;
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s ease-in-out;
  z-index: 1;
  border: none;
}

.button-2:is(:hover, :focus)::before {
  transform: translateX(0%);
}

.text {
  white-space: nowrap;
  line-height: 1.2;
  padding-inline-end: 44px;
  z-index: 2;
}

.button-2::after {
  content: "";
  position: absolute;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: 1px solid #ff4655;
  border-radius: 36px;
  z-index: 2;
}

.button-2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ff4655;
  z-index: 1;
  left: -2px;
  transform: translateX(90%);
  transition: all 0.3s ease-out;
}

.icon-2 {
  display: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #ff4655;
  z-index: 2;
}
