/* Forms / legacy form controls */
/**************************/
/* BOOTSTRAP CLASSES */
/**************************/
.alert {
  padding: 1.75rem 1.25rem;
  margin-bottom: 2rem;
  border: 0px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 0.25rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-error {
  color: #ff8000;
  background-color: #f3d7da;
  border-color: #d9c1c3;
}

.form-group {
  margin-bottom: 1rem;
}
label {
  display: inline-block;
  /* margin-bottom: 0.5rem; */
}
[role="button"],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}
.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
  border-color: #ff8000;
  border: 2px solid #ff8000;
}
.invalid-feedback {
  display: block;
  margin-top: 1.05rem;
  font-size: 1.2rem;
  color: #ff8000;
}
.invalid-feedback.is-invalid {
  display: block;
}

@media only screen and (max-width: 37.5em) {
  #myScrollTopBtn {
    right: 1.2rem;
  }
}

.heading-primary {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-bottom: 3rem;
  z-index: 999999;
}

/*****************************/
/* Contact START **********************/
/****************************/
.contact-form {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"] {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #000000;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover {
  background: #232323;
  color: #ffffff;
}

@media (max-width: 991px) {
  .contact-form {
    width: 100%;
  }
}

.cta-form {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #e2e2e2;
  color: #000000;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #000000;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.social-links {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 3.4rem;
  width: 3.4rem;
}

.wrapper ul {
  list-style: none;
  justify-content: center;
  display: flex;
}

.wrapper li {
  padding: 6rem 2rem;
}
/*****************************/
