  .thankyou-modal {
    display: none; 
    position: fixed; 
    z-index: 100; 
    padding-top: 80px; 
    left: 0;
    top: 0;
    width: 100vw; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
  }
  /* #thankyou-modal1 {
    display: block;
  }
  */
  
  /* thankyou-modal Content */
  .thankyou-modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px  10px 0 10px;
    /* border: 5px solid #FDA300; */
    /* border-radius: 8px; */
    width: 600px;
    box-shadow: 0 4px 15px 0 rgb(0 0 0 / 52%),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  .signupform {
    width: 84%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .signupform fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .signupform input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: 'montserrat';
    color: black;
    font-size: 13px;
  }
  .signupform select {
    width: 100%;
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 3px;
    margin: 10px 0;
    color: black;
    font-size: 13px;
    appearance: none;
      -moz-appearance: none;
    -webkit-appearance: none;
  }
  .signupform label {
    text-align: center;
    margin: 20px 0px 5px;
  }
  
  .info-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .thankyou-modal .learn  {
    font-size: 1.1em;
    font-weight: 500;
    padding: 5px 0;
    text-align: center;
    text-shadow: 1px 1px 6px black;
  }
  .thankyou-modal .close-button, .cta {
    cursor: pointer;
    width: 48%;
    background: #0f294dad;
    color: white;
    padding: 8px 0;
    text-align: center;
    margin: 15px 0;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 1px 1px 14px 0 #0000006b;
  }
  .cta {
    background: #0f294d;
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  
  .thankyou-modal h2 {
      color:#0f294d;
      font-size: 1.7em;
      font-weight: bold;
      text-align: center;
      margin: 18px 0px 10px 0;
  }
  .thankyou-modal h3 {
    color:#000;
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
  }
  .thankyou-modal p {
    color:#000;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center; 
    margin: 10px 0px 20px 0;
  }
  
  .modal-body {padding: 2px 16px;}
  @media only screen and (max-width: 1100px) {
      .thankyou-modal {
        padding-top: 40px;
      }
      .thankyou-modal-content {
          width: 90%;
          padding: 15px 5px 0 5px;
      }

      .thankyou-modal .tort3 .inside-tort h4 {
        margin: 6px 0;
      }

      .thankyou-modal .inside-tort h5 {
        font-size: .9em;
      }
      .thankyou-modal h2 {
        font-size: 1.6em;
      }
      .thankyou-modal h3 {
        font-size: 1.1em;
      }
      .thankyou-modal p {
        font-size: 1.1em;
      }
      
      .thankyou-modal .close-button, .cta {
          font-size: 1.1em;
          padding: 6px 0;
      }
  }