body {
    min-height: 100vh;
}

html {
    scroll-behavior: auto;
}

a, a:hover, a:focus {
    text-decoration: none !important;
}

h2 {
    font-size: 36px !important;
    margin: 0 !important;
}

p {
    font-size: 18px;
    margin: 0 !important;
}

/* Background Color */
.bg-gray {
    background-color: #F6F4F3;
}

.bg-gray2 {
    background-color: #E3DEDE;
}

.bg-gray3 {
    background-color: #F4F2F3;
}

.bg-teal {
    background-color: #D1DEDE;
}

.bg-blue {
    background-color: #1c1e41;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-black {
    background-color: #000000;
}

/* Font Color */
.font-blue {
    color: #142352;
}

.font-white {
    color: #FFFFFF;
}

.font-black {
    color: #000000;
}

.font-blue {
    color: #1252B8; !important;
}

.font-gray {
    color: #767676;
}

.font-gray1 {
    color: #949494;
}

.font-gray2 {
    color: #b0b0b0;
}

.font-gray3 {
    color: #CCCCCC;
}

.font-gray4 {
    color: #9597A6;
}

/* Font Family */
.font-inter {
    font-family: "Inter", sans-serif;
}

.font-libre {
    font-family: "Libre Baskerville";
}

.font-lora {
    font-family: "Lora", serif;
}

.font-sans {
    font-family: "Work Sans", sans-serif;
}

/* Font Sizes */
.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px;
}


/* Button */
.xd-primary-btn {
    background-color: #990000;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 30px;
    width: 180px;
    font-size: 16px;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.xd-primary-btn:hover, .xd-secondary-btn:hover {
    background-color: #fff;
    color: #990000;
    border: 2px solid #990000;
}

.xd-secondary-btn {
    background-color: #990000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 30px;
    width: 150px;
    font-size: 14px;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.btn:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    p {
        font-size: 14px;
    }

    h2 {
        font-size: 32px !important;
    }

    .font-10 {
        font-size: 8px;
    }

    .font-12 {
        font-size: 10px;
    }

    .font-14 {
        font-size: 12px;
    }

    .font-18 {
        font-size: 16px !important;
    }

    .font-20 {
        font-size: 18px;
    }

    .xd-primary-btn {
        width: 160px;
        font-size: 14px;
    }

    .xd-secondary-btn {
        width: 130px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 12px;
    }

    h2 {
        font-size: 28px !important;
    }

    .font-12 {
        font-size: 8px;
    }

    .font-14 {
        font-size: 10px;
    }


    .font-18 {
        font-size: 14px !important;
    }

    .font-20 {
        font-size: 16px;
    }

    .xd-primary-btn {
        padding: 6px 30px;
        width: 140px;
        font-size: 12px;
    }

    .xd-secondary-btn {
        padding: 6px 30px;
        width: 110px;
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    p {
        font-size: 10px;
    }

    h2 {
        font-size: 24px !important;
    }

    .font-10 {
        font-size: 6px;
    }

    .font-14 {
        font-size: 8px;
    }


    .font-18 {
        font-size: 12px !important;
    }

    .font-20 {
        font-size: 14px;
    }

    .xd-primary-btn {
        display: block;
        margin: 20px auto 0;
        text-align: center;
        padding: 4px 20px;
        width: 130px;
    }
}