body {
    margin: 0;
    overflow: hidden;
}
.backdrop {
    background: url("/images/img-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2000;
}
.backdrop .loading {
    width: 100%;
    min-width: 700px;
    max-width: 1000px;
    height: auto;
    position: relative;
}
.backdrop .progress {
    width: 235px;
    height: 5px;
    border-radius: 11px;
    background: #fff;
    position: absolute;
    bottom: 25%;
    left: calc(50% - 117px);
    display: none;
}

.backdrop .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 95%;
    height: 5px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00c7de 0%, #1a8cff 54.9%, #0071f2 100%);
    -webkit-animation: load 3s;
    animation: load 3s;
}

.backdrop-agency {
    background: url("/images/img-background-agency.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2000;
}

.backdrop-agency .loading-agency {
    width: 100%;
    min-width: 700px;
    max-width: 1000px;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    animation: fadeIn 1s;
}
.backdrop-agency .progress-agency {
    width: 235px;
    height: 5px;
    border-radius: 11px;
    background: rgba(217, 217, 217, 0.4);
    margin-top: 78px;
    position: relative;
}

.backdrop-agency .content-agency {
    position: absolute;
    left: 0;
    top: 0;
    width: 95%;
    height: 5px;
    border-radius: 30px;
    background: linear-gradient(90deg, #35e7e9 0%, #ccf456 59.84%);
    -webkit-animation: load 3s;
    animation: load 3s;
}

@-webkit-keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 95%;
    }
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 95%;
    }
}
