@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl
    {
        max-width: 600px;
    }
}

h1, h2, h3, h4, h5, h6 {
    text-transform: none;
}

/***** CUSTOM BUTTONS *****/
.tf-button-custom1 {
    height: 46px !important;
}
.submit-button button {
    background: #198754;
    color: #fff;
    border: transparent;
    padding: 15px 37px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
  transition:0.5s;
}
.submit-button button:hover {
    color: #198754;
    border: none;
}
.submit-button button:before{  
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #198754;
    transform: scale(0.0, 1);
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.submit-button button:hover:before{
    transform: scale(1, 1);
    opacity: 1;
    border: 1px solid #198754;
    background: #fff;
    color: #198754;
}

.submit-button a {
    background: #198754;
    color: #fff !important;
    border: transparent;
    padding: 15px 37px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
  transition:0.5s;
}
.submit-button a:hover {
    color: #198754 !important;
    border: none;
}
.submit-button a:before{  
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #198754;
    transform: scale(0.0, 1);
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.submit-button a:hover:before{
    transform: scale(1, 1);
    opacity: 1;
    border: 1px solid #198754;
    background: #fff;
    color: #198754;
}

.submit-button a.reverse {
    background: #fff;
    color: #198754 !important;
    border: transparent;
    padding: 15px 37px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
  transition:0.5s;
}
.submit-button a.reverse:hover {
    color: #fff !important;
    border: none;
}
.submit-button a.reverse:before{  
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #fff;
    transform: scale(0.0, 1);
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.submit-button a.reverse:hover:before{
    transform: scale(1, 1);
    opacity: 1;
    border: 1px solid #fff;
    background: #198754;
    color: #fff;
}

.error-back-button a {
    display: inline-block;
    background:  #198754;
    color: #fff;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
}


/***** ANCHOR CSS *****/
a:hover
 {
    color: #198754;
}