﻿*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* This css is for normalizing styles. You can skip this. */

.form-group-checkbox {
    display: block;
    margin-bottom: 15px;
}

    .form-group-checkbox input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 2px;
        display: none;
        cursor: pointer;
    }

    .form-group-checkbox label {
        position: relative;
        cursor: pointer;
        font-size: 13px;
    }

        .form-group-checkbox label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 2px solid #0079bf;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 10px 11px 11px 11px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
            border-radius: 4px
        }

    .form-group-checkbox input:checked + label:before {
        background-color: green; /* Change the background color to green when checked */
    }

    .form-group-checkbox input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 3px;
        left: 9px;
        width: 6px;
        height: 14px;
        border: solid white;
        border-width: 0 2.5px 2.5px 0;
        transform: rotate(45deg);
    }
    .form-group-checkBox-circle {
        display: block;
        margin-bottom: 15px;
    }

    .form-group-checkBox-circle input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 2px;
        display: none;
        cursor: pointer;
    }

    .form-group-checkBox-circle label {
        position: relative;
        cursor: pointer;
        font-size: 13px;
    }

        .form-group-checkBox-circle label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 3px solid #036B27;
            padding: 12px 13px 13px 13px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
            border-radius: 50%;
        }

    .form-group-checkBox-circle input:checked + label:before {
        background-color: white; /* Change the background color to green when checked */
    }

    .form-group-checkBox-circle input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 6px;
        left: 13px;
        width: 6px;
        height: 14px;
        border: solid #036B27;
        border-width: 0 2.5px 2.5px 0;
        transform: rotate(45deg);
    }



.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar {
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    /*position: fixed;*/
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 2rem;
    width:250px
}

.menu-items li {
    list-style: none;
    margin-left: 2.9rem;
    font-size: 0.8rem;
    padding-top:7px
}
/* Style the dropdown menu */
.menu-items .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    color: black;
    border-radius: 5px;
    margin-left: -46px;
    z-index: 1;
}

.menu-items .dropdown:hover .dropdown-menu {
    display: block;
}

.menu-items .dropdown-menu li {
    display: block;
}

.navbar a {
    color: black;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

    .navbar a:hover {
        color: #117964;
    }

@media (max-width: 768px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

        .navbar-container input[type="checkbox"] {
            position: absolute;
            display: block;
            height: 32px;
            width: 30px;
            top: 20px;
            left: 20px;
            z-index: 5;
            opacity: 0;
            cursor: pointer;
        }

        .navbar-container .hamburger-lines {
            display: block;
            height: 28px;
            width: 35px;
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .navbar-container .hamburger-lines .line {
                display: block;
                height: 4px;
                width: 100%;
                border-radius: 10px;
                background: #333;
            }

            .navbar-container .hamburger-lines .line1 {
                transform-origin: 0% 0%;
                transition: transform 0.3s ease-in-out;
            }

            .navbar-container .hamburger-lines .line2 {
                transition: transform 0.2s ease-in-out;
            }

            .navbar-container .hamburger-lines .line3 {
                transform-origin: 0% 100%;
                transition: transform 0.3s ease-in-out;
            }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
        /*overflow: scroll;*/
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        height: 60px
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
}

@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }
}
.footer {
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    position: relative;
    bottom: 0px;
    width: 100%;
    background: #fff;
    color: #000;
    height:50px
    /* opacity: 0.85;
    z-index: 100;*/
}

.footer-items {
    order: 2;
    display: flex;
    justify-content:space-evenly
}

    .footer-items li {
        list-style: none;
        font-size: 0.8rem;
        padding-top: 7px;
        padding-bottom:8px;
        text-align:center
    }
.footer a {
    color: black;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

    .footer a:hover {
        color: #117964;
    }

@media (max-width: 768px) {
    .footer{
        margin-top:20px
    }
    .footer .footer-items {
        padding-top: 10px;
        display: block;
        flex-direction: column;
        width: 100%
        /*overflow: scroll;*/
    }
    .footer .footer-items li {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        font-weight: 500;
        padding-bottom:2px;
    }

}

