.contact-in h2 a {
  text-decoration: none;
  color: inherit;
}

.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 10%;
}

.contact-wrap-1 {
  flex: 1;
  background: #fff;
  color: #60697b;
  height: 100%;
}

.contact-wrap-2 {
  flex: 1;
  background: #fff;
  color: #60697b;
}

.contact-in {
  padding: 19px 30px;
}

.contact-in:nth-child(1) {
  background: #fff;
  color: #60697b;
  height: 100%;
}

.contact-in:nth-child(2) {
  background: #fff;
  color: #60697b;
}

.contact-in:nth-child(3) {
  flex: 25%;
  padding: 0;
}

.contact-in h1 {
  font-size: 24px;
  color: #60697b;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--st-patricks-blue);
}

.contact-in h2 {
  font-size: 15px;
  font-weight: 400;
}

.contact-in h2 i {
  font-size: 16px;
  width: 20px;
  height: 40px;
  margin-right: 10px;
  color: var(--st-patricks-blue);
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
}

.contact-in p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-in ul {
  padding: 0;
  margin: 0;
}

.contact-in ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
}

.contact-in ul li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
}

.contact-in ul li a i {
  font-size: 14px;
  line-height: 30px;
  color: #60697b;
}

.contact-in form {
  width: 100%;
  height: auto;
}

.contact-in-input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  margin-top: 3px;
  outline: none;
  padding-left: 5px;
  background: transparent;
  color: #60697b;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--ff-poppins);
  border-radius: 5px;
  background-color: #e9f1f6;
}

input:focus {
  border: 1px solid #3d97ce;
}

textarea:focus {
  border: 1px solid #3d97ce;
}

.contact-in-input::placeholder {
  color: #60697b;
}

.contact-in-textarea {
  width: 100%;
  height: 140px;
  margin-bottom: 3px;
  outline: none;
  padding-top: 5px;
  padding-left: 5px;
  background: transparent;
  color: #0d1422;
  font-size: 12px;
  font-weight: 300;
  font-family: var(--ff-poppins);
  border-radius: 5px;
  border-color: transparent;
  background-color: #e9f1f6;
}

.contact-in-textarea::placeholder {
  color: #60697b;
}

.contact-in-btn {
  width: 100%;
  height: 40px;
  border: 1px solid #3498db;
  outline: none;
  background: linear-gradient(45deg, #3d97ce 0%, #12debb 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  font-family: var(--ff-poppins);
  cursor: pointer;
  border-radius: 5px;
}

.contact-in iframe {
  width: 100%;
  height: 300px;
}

@media (max-width: 307px) {
  .contact-in h2,
  .contact-in h2 i {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-wrap {
    flex-direction: column;
  }
  .contact-wrap-1,
  .contact-wrap-2 {
    flex: 1;
  }
}

.input-group input:focus {
  outline: 0;
}

.input-group .error {
  color: rgb(242, 18, 18);
  font-size: 12px;
  padding-bottom: 10px;
}

.input-group.success input {
  border-color: #0cc477;
}

.input-group.error input {
  border-color: rgb(206, 67, 67);
}

.error {
  color: rgb(242, 18, 18);
  font-size: 13px;
}

.input-group .success input {
  border-color: #0cc477;
}

.input-group .error input {
  border-color: rgb(206, 67, 67);
}

.alert {
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-border: 0 solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.4rem;
  margin-bottom: var(--bs-alert-margin-bottom);
  border-radius: var(--bs-alert-border-radius);
  font-weight: 200;
  flex-direction: row;
}

.alert-success {
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  background-color: #ecf9f6;
  border-color: #c7ede3;
  color: #308970;
}

.alert-error {
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  background-color: #ecc8c5;
  color: #b83c37;
}

.exit-button {
  font-size: 2rem;
  align-self: center;
  margin-left: 1rem;
}

.alert.error .inner,
.alert.error .close {
  color: #b83c37;
}

.alert .close {
  float: right;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  cursor: pointer;
}

.alert input {
  display: none;
}

.alert input:checked~* {
  animation-name: dismiss, hide;
  animation-duration: 300ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0s, 100ms;
}

@keyframes dismiss {
  0% {
    opacity: 1;
  }

  90%,
  100% {
    opacity: 0;
    font-size: 0.1px;
    transform: scale(0);
  }
}

@keyframes hide {
  100% {
    height: 0px;
    width: 0px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    border: 0px;
  }
}

.hide-alert,
.hide-alert {
  display: none;
}

.contact-in a:hover {
  color: var(--st-patricks-blue);
}

.mail {
  text-transform: none;
  display: inline-block;
}

@media (max-width: 361px) {
  .contact-wrap {
    padding: 3%;
  }
}
