.form-cstm {
    margin-left: 5.5rem;
}

.form-cstm h3 {
    font-weight: bold;
    font-size: 32px;
    text-align: left;
    color: #008631;
    line-height: 1.5em;
    margin-bottom: 25px;
}

.form-cstm .inpt {
    margin-bottom: 1.2em;
}

.form-cstm .inpt input {
    border: 1px solid #DBDBDB;
    background: #fff;
    font-weight: 300;
    font-size: 18px;
    text-align: left;
    color: #707070;
    width: 100%;
    border-radius: 14px;
    padding: 0.9em 1em;
}

.form-cstm p {
    font-weight: 300;
    font-size: 14px;
    text-align: left;
    color: #707070;
    margin-bottom: 20px;
}

.form-cstm p a {
    color: #088937;
    font-size: 14px;
}

.form-cstm p a:hover {
    text-decoration: underline;
}

.form-cstm button {
    background: #008631;
    color: #fff;
    font-weight: medium;
    font-size: 22px;
    display: block;
    width: 100%;
    border-radius: 14px;
    padding: 0.9em 1em;
    margin-top: -2%;
}

.form-cstm button:hover {
    background: #04752d;
}

.form-cstm button::after {
    border-radius: 14px;
}

.form-cstm button::before {
    border-radius: 14px;
}

:focus-visible {
    outline:
        none;
}

.cstm-btns {
    margin-right: 6rem;
}

.cstm-btns a {
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.cstmbtn {
    background: #008631;
    color: #fff;
    font-weight: medium;
    font-size: 22px;
    display: block;
    width: 100%;
    border-radius: 14px;
    padding: 13px 1em;
}

.cstmbtn:hover {
    background: #04752d;
}

@media (max-width: 767px) {
    .cstm-btns {
        margin-right: 0;
    }

    .form-cstm {
        margin-left: 0
    }
}

#closeModalBtn{
    font-size: 25px;
}


.form-cstm-modal h3 {
    font-weight: bold;
    font-size: 32px;
    text-align: left;
    color: #008631;
    line-height: 1.5em;
    margin-bottom: 25px;
}

.form-cstm-modal .inpt {
    margin-bottom: 1.2em;
}

.form-cstm-modal .inpt input {
    border: 1px solid #DBDBDB;
    background: #fff;
    font-weight: 300;
    font-size: 18px;
    text-align: left;
    color: #707070;
    width: 100%;
    border-radius: 14px;
    padding: 0.9em 1em;
}

.form-cstm-modal p {
    font-weight: 300;
    font-size: 14px;
    text-align: left;
    color: #707070;
    margin-bottom: 20px;
}

.form-cstm-modal p a {
    color: #088937;
    font-size: 14px;
}

.form-cstm-modal p a:hover {
    text-decoration: underline;
}

.form-cstm-modal button {
    background: #008631;
    color: #fff;
    font-weight: medium;
    font-size: 22px;
    display: block;
    width: 100%;
    border-radius: 14px;
    padding: 0.9em 1em;
}

.form-cstm-modal button:hover {
    background: #04752d;
}

.form-cstm-modal button::after {
    border-radius: 14px;
}

.form-cstm-modal button::before {
    border-radius: 14px;
}

/* css */

/* Add these styles to your CSS file */
.modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .modal:not(.hidden) .modal-overlay {
    opacity: 1;
  }
  
  .modal-content {
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .modal:not(.hidden) .modal-content {
    transform: translateY(0);
    opacity: 1;
  }