/* Theme Default Settings */
body {
    margin: 0;
    padding: 0;
    background: url('../../images/front_images/backgrounds/code.webp') center;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
ul,
ol,
dl,
li {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

button,
button:focus,
input,
input:focus {
    border: 0;
    outline: none;
}

.cursor-pointer,
.cursor-pointer:hover {
    cursor: pointer;
}

.bg-image {
    background: no-repeat center;
    background-size: cover;
}

/* Font */
.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.f-italic {
    font-style: italic !important;
}

/* Font End */

.z-index-1050{
    z-index: 1050 !important;
}

/* Theme Default Settings End */
/* Back To Top Button */
#backToTopBtn {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Loader */
.page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1004;
    background: rgba(25, 43, 63, .5);
    color: #13de91;
    font-weight: bold;
}

.page-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    margin: 8px;
    border: 8px solid #13de91;
    border-radius: 50%;
    animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #13de91 transparent transparent transparent;
}

.page-loader div:nth-child(1) {
    animation-delay: -0.45s;
}

.page-loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.page-loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.page-loader .stop-loading-btn{
    position: fixed;
    bottom: 5.5rem;
    right: 3.5rem;
    z-index: 1050;
}
