@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

/* 
  CONTACT FORM EXAMPLE FOR FORMCARRY

  IMPORTANT NOTE:
  PLEASE ADD formcarry-form class to your form element
  to apply the styles.
*/
body {
  background-image: url(../images/contact-bg3.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.formcarry-container * {
  box-sizing: border-box;
	font-family: "Inter", sans-serif;

  /* colors */
  --color-blue: #2552d0;
  --color-light-blue: #3266e3;
  --color-gray: #e5e7eb;
  --color-dark-gray: #9da3ae;
  --color-pink: #edadd2;
}

.formcarry-container {
  /* container */
  --c-width: 50%;
  --c-max-width: 500px;
  padding: 20px 50px 50px 50px;
  background-color: rgba(20, 21, 27, 0.8);
  border-radius: 20px;

  width: var(--c-width);
  max-width: var(--c-max-width);
  display: block;
  margin: 10vh auto 0 auto;
  margin-top: 30px;
}

.selectsource {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  background-color: transparent;
  border-radius: 8px;
  border: 2px solid var(--color-gray);
  color: #fff;
}

.formcarry-form option {
  background-color: #14151b;
  color: #fff;
}

.formcarry-form label {
  display: block;
  padding: 12px 0 2px 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.formcarry-form input,
.formcarry-form textarea {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: none;
  border: 2px solid var(--color-gray);
  outline: none;
  border-radius: 8px;
  color: #fff;
}

.formcarry-form input:focus,
.formcarry-form textarea:focus {
  background-color: #fff;
  color: #000;
}

.formcarry-form input:focus:required:invalid {
  border-color: #edb71e;
  background-color: #fff;
}

.formcarry-form button {
  display: block;
  margin-top: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
	border-color: transparent;
  background-color: #edb71e;
  color: #000;
  font-weight: 700;
  font-size: 18px;

  transition: 300ms all;
}

.formcarry-form button:hover {
  background-color: #fcd977;
}

.formcarry-alert {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}

.formcarry-alert.visible {
  display: block;
}

.formcarry-alert.success {
  background: #69cf9d;
}

.formcarry-alert.error {
  background: #de524c;
}

.aia-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  color: #fff;
  margin-bottom: 0px;
}

@media (max-width: 500px) {
  .aia-heading{
    font-size: 42px;
  }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #edb71e;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}