body{
    font-family: 'Helvetica 45 Light', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.bg-title{
    background-image: url('../images/bg_desk.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    text-align: center;
    color: #171616;
    margin-top: 30px;
    margin-bottom: 30px;
}
.form-container{
    padding: 45px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #171616;
}
h2.background {
    position: relative;
    z-index: 1;
}
h2.background:before {
    border-top: 2px solid #dfdfdf;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */

    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */

    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
}
h2.background span {
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background: #fff;
    padding: 0 45px;
}

.text-3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 40px;
    color: #171616;
    text-align: center;
}

.btn-1 {
    font-size: 27px;
    color: #171616;
    background-color: #DADD65;
    text-align: center;
    align-items: center;
    border-radius: 10px;
    border: none;
    width: 100%;
    vertical-align: center;
    padding: 15px;
    margin: 0;
    text-decoration: none;
}
.btn-1:hover{
    color: #171616;
}

.bg-gold {
    background: #C5B593;
    padding: 15px;
}

.img-fluid {
    padding: 20px;
    margin: auto;
    display: flex;
    justify-content: center;
}

#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}
