@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*==BASIC-SETUP==*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-image: url('images/main_bg.png');
  position: relative;
  z-index: 9;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;

}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row > div {
  padding-right: 15px;
  padding-left: 15px;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}

.modal_wrapper {
  padding-top: 50px;
}

.modal_inner {
  text-align: center;
  max-width: 550px;
  margin: 0  auto;
  padding: 0 2.5rem 2rem;
  background-color: rgba(0,0,0,0.75);
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.modal_top img {
  width: 100%;
  max-width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  margin-top: -30px;
}

.modal_title h2 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 20px 0;
  line-height: 32px;
}

.modal_title p {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin:0;
  line-height: 26px;
}

.modal_btm p {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin: 40px 0;
}

.modal_btm span {
  font-size: 12px;
  font-weight: 200;
  color: #CFCFCF;
}

.modal_form {
  max-width: 350px;
  margin: 0 auto;
}

.modal_form input[type="email"] {
  border: 1px solid #ff8e29;
  box-shadow: unset;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
  padding: 14px 18px;
  margin: 25px 0 20px;
  display: block;
}

.modal_form button {
  cursor: pointer;
  background: linear-gradient(0deg, #ff8f2c, #ffd0a6);
  font-style: italic;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #ff8e29;
  font-size: 1.3rem;
  margin: 0;
  padding: 10px;
  color: #fff;
  font-weight: 400;
}

.modal_form p.hidden {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 5px;
}