html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

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: #EDEBEB !important;
}

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

.bg-blue {
    background-color: #142352;
}

.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-red {
    color: #990000 !important;
}

.font-gray {
    /* color: #9597A6; */
    color: #666666;
}

.font-gray2 {
    color: #949494;
}

.font-gray-light {
    color: #EDEBEB;
}

.font-gray3 {
    color: #CCCCCC;
}

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

.font-gray-ada {
    color: #767676;
}

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

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

.font-roboto {
    font-family: "Roboto", sans-serif;
}

.font-basic {
    font-family: "Basic", 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-20 {
    font-size: 20px;
}


/* Button */
.primary-button {
    background-color: #990000;
    color: #ffffff;
    border-radius: 100px;
    border: none;
    margin-top: 20px;
    width: 220px;
    height: 44px;
}

.secondary-button {
    background-color: #990000;
    color: #ffffff;
    border-radius: 5px;
    border: none;
    width: 160px;
    height: 48px;
}

@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-16 {
        font-size: 14px !important;
    }
    
    .font-20 {
        font-size: 18px;
    }

    .primary-button {
        width: 200px;
        height: 40px;
    }

    .secondary-button {
        width: 140px;
        height: 40px;
    }
}

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

    h2 {
        font-size: 28px !important;
    } 
    
    .font-12 {
        font-size: 8px;
    }
    
    .font-14 {
        font-size: 10px;
    }
    
    .font-16 {
        font-size: 12px !important;
    }
    
    .font-20 {
        font-size: 16px;
    }
    
    .primary-button {
        width: 150px;
        height: 34px;
    }

    .secondary-button {
        width: 120px;
        height: 32px;
    }
}

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

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

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

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

    .font-20 {
        font-size: 14px;
    }
    
    .primary-button {
        width: 140px;
        height: 30px;
    }

    .secondary-button {
        width: 120px;
        height: 34px;
    }
}