:root {
    --themeColor1: #02CCFE;
    /*239ebd*/
    --themeColor2: #FF6501;
    /*fa7d29*/
    --themeColor3: #007BFF;
    /*fa7d29*/
    --main-color: #b3833c;
    --secondary-color: #f38840;
    --optional-color: #0087a8;
    --light-gray-color: #535353;
    --dark-color: #282728;
    --light-dark-color: #2c2c2c;
    --light-white: rgb(185, 185, 185);
    --black-color: #cdcad1;
    --dark-blue: #00184f;
    --clr-2: #ad8953;
}

html {
    scroll-behavior: smooth!important;
}

.progressBar {
    border-radius: 5px;
    width: 100%;
    height: 4px;
    position: relative;
    background: var(--secondary-color);
}

.progressBar::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 4px;
    top: 0;
    left: 0;
    background-color: var(--themeColor3);
    animation: wait 1s infinite;
    -webkit-animation: wait 1s infinite;
    -moz-animation: wait 1s infinite;
}

.cu-fixed-pro-bar {
    position: fixed;
    top: 10;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

@keyframes wait {
    10% {
        width: 10%;
    }
    30% {
        width: 30%;
    }
    50% {
        width: 50%;
    }
    70% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.cu-bg-cover {
    /* The image used */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../img/cover/bg_5.jpg")!important;
    /* Center and scale the image nicely */
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
}

.cu-card-trans {
    background-color: transparent;
    box-shadow: none;
}

.cu-pointer {
    cursor: pointer!important;
}

.cu-active-link {
    border-bottom: 2px solid var(--themeColor2);
}

.cu-default-link {
    border-bottom: 2px solid transparent;
    border-radius: 5px;
}

.cu-input-trans {
    background-color: transparent!important;
}

.cu-input-trans:focus {
    background-color: transparent!important;
}

.cu-nav-tab .active {
    background-color: #343a40 !important;
}

.cu-img-container {
    position: relative;
    width: 50%;
}

.cu-img-image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.cu-img-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.cu-img-container:hover .cu-img-image {
    opacity: 0.3;
}

.cu-img-container:hover .cu-img-middle {
    opacity: 1;
}

#cu-m-img-preview {
    opacity: 1;
    width: 300px;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    border: 1px dashed var(--themeColor1);
    border-radius: 5px;
}

.cu-m-img-input {
    transition: .5s ease;
    opacity: 0;
}

#cu-m-img-preview-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.cu-m-img-container:hover #cu-m-img-preview {
    opacity: 0.1;
    border: 5px solid var(--themeColor2);
}

.cu-m-img-container:hover .cu-m-img-input {
    opacity: 1;
    color: rgba(0, 0, 0, 0.589);
}