@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", Arial, sans-serif;
}

.white-text {
    color: #fff;
}

.section-heading {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #151515;
}
h4.section-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
}

.section-text {
    font-size: 18px;
}

.bg-gray-100 {
    background-color: #f5f6fa;
}

.section-lg {
    padding: 72px 0px;
}

.row-30 {
    margin-bottom: -30px;
}

section p {
    color: #74757f;
}

section h4,
.heading-4 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
}

/* ========= jQuery Alert */
/* Alert Messages */
.alert-container {
    position: fixed;
    top: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    right: 10px;
    z-index: 9999;
}

@media only screen and (min-width: 600px) {
    .alert-container {
        width: 400px;
    }
}

@media only screen and (max-width: 599px) {
    .alert-container {
        width: 90%;
    }
}

.modal-alert {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: none;
    padding: 20px 15px;
    border-radius: 8px;
    position: relative;
}

.modal-alert .content {
    display: flex;
    align-items: center;
}

.modal-alert .content svg {
    opacity: 0.9;
    margin: 0 10px;
}

.modal-alert h6 {
    opacity: 0.9;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.modal-alert .bar {
    height: 2px;
    left: 8px;
    bottom: 0px;
    background: rgb(255, 231, 15);
    position: absolute;
    border-radius: 4px 4px 0 0;
}

.progress {
    animation: alertProgress 5s ease;
}

@keyframes alertProgress {
    from {
        width: 90%;
    }

    to {
        width: 0;
    }
}
/* ========= End of jQuery Alert */