.popup {
  background-color: #3b4454;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  max-width: 750px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 90%;
  z-index: 9999999;
}

.popup__inner {
  display: flex;
}

.popup__form {
  box-sizing: border-box;
  flex: 1;
  padding: 30px 40px;
  text-align: center;
}

.popup__form p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}

.popup__form small {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative;
}

.popup__form small:before {
  background-color: #f78f2a;
  content: '';
  height: 4px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.popup__form form {
  
}

.popup__form .hs-email {
  margin-bottom: 10px;
  width: 100%;
}

.popup__form .hs-email label {
  display: none;
}

.popup__form input {
  border: 0;
}

.popup__form input[type="email"] {
  border-radius: 10px;
  box-sizing: border-box;
  margin-right: 5px;
  padding: 12px 15px;
  width: 100%;
}

.popup__form input[type="email"].invalid {
  border: 1px solid #ff0000;
}

.popup__form .hs-submit {
  
}

.popup__form input[type="submit"] {
  background-color: #f78f2a;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 100%;
  margin-top: 10px;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.popup__form input[type="submit"]:hover {
  padding: 10px 25px;
}

.popup__form input[type="submit"]:hover {
  opacity: 0.9;
}

.popup__form ul.hs-error-msgs {
  display: none !important;
}

.popup__logo {
  margin-bottom: 20px;
  max-width: 160px;
  width: 100%;
}

.popup__image {
  background: url('https://www.fedscout.com/hubfs/hero-features@2x.jpg') 71% 0 no-repeat;
  background-size: cover;
  width: 42%;
}

.popup__close {
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 20px;
  width: 40px;
}

.popup__close svg {
  fill: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.grecaptcha-badge {
  box-shadow: none !important;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 100%;
  }
  
  .popup__image {
    display: none;
}