/* CSS Reset Start */
*,
*:before,
*:after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
html {
    scroll-behavior: smooth;
}
img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}
input,
select,
textarea {
    background-color: transparent;
    outline: none;
}
button {
    cursor: pointer;
}
body {
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}
/* CSS Reset End */

:root {
    --main-blue: #0003F9;
    --main-yellow: #FDF300;
    --main-green: #0CA346;
    --bg-green: #ACE268;
}

.color-main-blue {
    color: var(--main-blue);
}

.color-main-yellow {
    color: var(--main-yellow);
}

.color-main-green {
    color: var(--main-green);
}

.bg-main-blue {
    background: var(--main-blue);
}

.bg-main-yellow {
    background: var(--main-yellow);
}

.bg-main-green {
    background: var(--main-green);
}

.logo-small {
    text-align: center;
    line-height: 60px;
    height: 60px; /* Optional, set if the div's height is fixed */
}

.logo-small img {
    width: 100%;
    height: 100%;
}

.brand-name {
    color: var(--main-green);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
    flex: 1 0 0;
}

.brand-name:hover {
    color: var(--main-green);
    cursor: default;
}

.button-primary-link {
    text-decoration: none;
}

.button-primary {
    /* Block */
    display: flex;
    padding: 12px 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--main-green);
    border: 2px solid var(--main-green);
    /* Text */
    color: #FFF;
    font-weight: 500;
    transition: ease 0.3s all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.button-primary:hover {
    background: #11d75d;
    border: 2px solid #11d75d;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.section-container {
    display: flex;
    text-align: justify;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

#topinfo {
    background-color: var(--bg-green);
}

#topinfo .container {
    color: #000;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4px 0;
}

.topinfo-item {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.topinfo-item a {
    text-decoration: none;
    color: #000;
}

#navigation {
    background-color: var(--bg-green);
    z-index: 3;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.12);
}

#navigation-inner {
    height: auto;
    padding: 20px;
}

#navbarNavDropdown {
    background-color: var(--bg-green) !important;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #000 !important;
    text-decoration: none !important;
    height: 48px !important;
    line-height: 24px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    border-radius: 2px !important;
    transition: ease 0.3s all !important;
    -moz-transition: 0.3s ease all !important;
    -webkit-transition: 0.3s ease all !important;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

.cover {
    position: relative !important;
    height: 60vh;
}

.cover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.cover-inner {
    height: 100%;
    width: 100%;
}

.cover-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-desc {
    position: absolute;
    text-align: justify;
    color: white;
    font-size: 60px;
    font-weight: 800;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    white-space: nowrap;
}

footer {
    padding: 60px;
    display: flex;
    align-items: center;
    background-color: var(--bg-green);
}

.footer-logo {
    height: 200px;
    width: 200px;
}

.footer-contact {
    display: flex;
    gap: 8px;
}

.footer-contact a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.footer-desc {
    text-align: justify;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    padding: 0 60px;
}

.business-hours h3,  .business-hours p{
    text-align: justify;
}

.dropdown-toggle {
    background-color: transparent;
    outline: none;
    border: none;
}

.languageIcon {
    width: 30px;
    height: auto;
}