﻿* {
    font-family: 'Quicksand', sans-serif;
    font-display: swap;
}

.text-justify {
    text-align: justify;
}

.carousel-item {
    background-size: cover;
    background-position: center center;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.object-fit-cover {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.before-overlay {
    position: relative;
}

    .before-overlay > * {
        z-index: 100;
    }

    .before-overlay::before {
        content: "";
        background: rgba(255, 255, 255, .4);
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

.bg-home {
    background-image: url('/images/bg-home-mobile.jpg');
}

@media (min-width: 992px) {
    .bg-home {
        background-image: url('/images/bg-home-desktop.jpg');
    }
}

/* Modal Pop-up  */

.modal-confirm {
    color: #636363;
}

.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}

.modal-confirm h4 {
    text-align: center;
    font-size: 27px;
    margin: 30px 0 -15px;
}

.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}

.modal-confirm .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #5d3e96;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

    .modal-confirm .icon-box i {
        font-size: 56px;
        position: relative;
        top: 4px;
    }

.modal-confirm.modal-dialog {
    margin-top: 80px;
}


/* Forms */
.form-select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}