/* Charset */
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

@import url("https://use.typekit.net/wtl2cyk.css");

/* Variables */
:root {
    --yellow: #fcbf15;
    --dark-yellow: #d19a02;
    --black: #111111;
    --blue: #219fda;
}


.text-date {
    background-color: #111111;
    color: #ffffff;
    box-shadow: 5px 5px;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
}
/* Global Styles */
body {
    padding: 0;
    margin: 0;
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h4, h4, h5, h6 {
    line-height: 1.2;
}

a {
    font-weight: 600;
    color: var(--yellow);
}

p {
    line-height: 1.5;
}

.theme-title {
    color: var(--yellow);
}

.theme-title strong {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-primary, .border-primary, .btn-primary {
    background-color: var(--blue);
}

.text-primary {
    color: var(--blue) !important;
}

.border-warning {
    border-color: var(--yellow) !important;
}
/* Buttons */
.btn-primary, .btn-outline-info, .btn-info {
    color: #fffff;
}

.btn-outline-primary {
    color: var(--dark-green);
}
/* Button Colors */
.btn-outline-primary, .btn-primary {
    border-color: var(--dark-green);
    font-weight: 600;
}

.btn-outline-info, .btn-info {
    border-color: var(--yellow);
}

.remove-underline {
    text-decoration: none;
}

.bg-white {
    background-color: #ffffff;
}

.text-semibold {
    font-weight: 700;
}

.home-buttons {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    height: 100%;
    margin: 0;
    padding: 0;
    align-content: start;
}

.home-buttons a {
    padding: 2rem;
    background: #ffffff;
}

.bg-1 {
    background-image: url('../images/bg/bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
@media (max-width:575px) {
}

@media (min-width:576px) {
}

@media (min-width:768px) {
    .header-logo img {
        width: 376px;
    }
}

@media (min-width:992px) {
}

@media (min-width:1200px) and (max-width:1399px) {
}

@media (min-width:1400px) {
    .lead {
        font-size: 1.05rem;
    }
}

::placeholder {
    color: #cccccc !important;
}

.header-reg {
    background: url('../images/bg-header.png');
    background-attachment: fixed;
    background-size: contau;
    background-position: center bottom;
}
/* Tablet view (e.g., iPad) */
@media screen and (max-width:768px) {
    html {
        font-size: 14px;
        /* Adjust the base font size for tablet screens */
    }
    h2 {
        font-size: 1rem;
        /* Adjust the font size for h2 on tablets */
    }
}

/* Mobile view */
@media screen and (max-width:576px) {
    html {
        font-size: 14px;
        /* Maintain a larger base font size for better readability on small screens */
    }
    h2 {
        font-size: 1.2rem;
        /* Maintain a slightly larger font size for h2 on mobile devices */
    }
    .lead {
        font-size: 1.1rem;
    }
}

/* Desktop view (large screens) */
@media screen and (min-width:992px) {
    /* You can adjust the base font size for larger desktop screens if needed */
    html {
        font-size: 16px;
        /* Increase the base font size for better readability on large screens */
    }
}

.text-shadow-sm {
    text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}