body {
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    gap: 1rem;
}

header {
    background: #F6F6F6 !important;
    color: #80C783 !important;
    text-align: left;
    display: flex;
    align-items: center;
}

header strong {
    color: #779F3E !important;
}

header img.img-80 {

    height: 70vh;
    object-fit: contain;
}

section {
    padding: 60px 0;
}

section[id] {
  scroll-margin-top: 80px;
}

footer {
    background: #343a40;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
}

.navbar-brand {
    font-weight: bold;
}

.navbar-logo{
    height: 80px !important;
    width: auto;
}

.navbar-logo.shrink {
    height: 45px !important;
    transition: height 0.3s;
}

.nav-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 10%;
    background: #000;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
    font-weight: bold;
    background: #000;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 9999;
}

.back-to-top {
    font-size: 24px;
    border-radius: 30%;
    padding: 10px 15px;
}

.bg-custom {
    background-color: #F6F6F6 !important;
}

.navbar-shadow {
    /* box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2); */
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 2px;
    box-shadow: 0px 1px 10px #999;
}

.form-wrapper {
    max-width: 600px;
    /* Adjust the max-width as needed */
    margin: 0 auto;
    /*  padding: 20px;  */
    /* background: #f9f9f9; */
    /* Optional: Add background for better visibility */
    /* border-radius: 8px; */
    /* Optional: Add rounded corners */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* Optional: Add shadow for depth */
}

.custom-link {
    text-decoration: none;
    color: black;
    padding: 0;
}

.custom-link:hover {
    text-decoration: underline;
    color: black;
}

#cookieConsent {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

.text-justify {
    text-align: justify;
}
