:root, body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    background: #f4f7f6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: clamp(.45px, .1vw, .8px);
    line-height: 1.4;
    word-spacing: 0.02rem;

    --primary-blue: #0052CC;
    --gradient-start: #0052CC;
    --gradient-end: #3a9cfd;
    --bg-color: #F4F6F8;
    --text-dark: #172B4D;
    --text-grey: #6B778C;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(12.45px, 1.3vw, 17px) !important;
}

footer>div,
main>div {
    width: 100%;
    max-width: 70rem;
}

.lazy-img:not(.loaded) {
    font-size: 0;
    opacity: 0;
    display: block;
    object-fit: cover;
}

/* ================= UTIL ================= */
.border-line {
    margin: 0 -1rem;
    border-top: 0.15rem solid #ffffff2a;
}

.border-line2 {
    margin: 0 -1rem;
    border-top: 0.15rem solid #2525252a;
}

main {
    display: flex;
    justify-content: center;
}

main > div > section, main > div > .sec {
    padding-left: 1rem;
    padding-right: 1rem;
}

main[id="2"] {
    color: #ffffff;
    background: linear-gradient(95deg, #0052CC 0%, #3a9cfd 100%);
}

.min-h-safe {
    min-height: calc(100vh - 4.25rem);
}
@supports (height: 100svh) {
    .min-h-safe{
        min-height: calc(100svh - 4.25rem);
    }
}

.min-h-full-safe {
    min-height: 100vh;
}
@supports (height: 100svh) {
    .min-h-full-safe{
        min-height: 100svh;
    }
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}


/* sweetalert.css */
.swal-actions-vertical {display: flex;flex-direction: column;gap: 0;}
.swal-actions-vertical button {width: 100%;}