* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

/* Navigation CSS Begin */

.menu-label {
    position: absolute;
    left: -1000px;
    top: -1000px;
}

.navigation a {
    color: #496b18;
    text-decoration: none;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
    width: 100%;
    padding: 20px;
    border-bottom: 3px solid #496b18;
}

.logo {
    height: 80px;
    width: auto;
    margin-top: 10px;
}

.nav-contain {
    height: auto;
}

.header-navlinks {
    display: flex;
    flex-flow: column;
    margin-bottom: 25px;
}

.header-logo a:focus {
    outline: 2px auto;
}

.header-logo a:focus:not(:focus-visible) {
    outline: none !important;
}

.menu .chkbx {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -20px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

.menu {
    display: block;
    position: absolute;
    top: 50px;
    right: 40px;


    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menu:focus~.burger {
    outline: 2px solid #749a3e;
}

#menu:focus:not(:focus-visible)~.burger {
    outline: none !important;
}

.burger {
    margin-top: -11px;
}

.burger .line {
    display: block;
    width: 33px;
    height: 2px;
    margin-bottom: 9px;
    position: relative;
    margin-right: -20px;

    background: #000;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

.burger .line:first-child {
    transform-origin: 0% 0%;
}

.burger .line:nth-child(2) {
    transform-origin: 0% 100%;
}

.chkbx:checked~.burger>.line {
    opacity: 1;
    transform: rotate(45deg) translate(1px, -1px);
    background: #232323;
}

.chkbx:checked~.burger>.line:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.chkbx:checked~.burger>.line:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -2px);
}

.header-navlinks {
    position: absolute;
    display: inline-block;
    width: 100vw;
    margin: 33px 0 0 0;
    height: 0px;


    right: -40px;
    overflow: hidden;
    margin-bottom: unset;

    background: #f5f5f5;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    /*transform-origin: 0% 0%;
    transform: translate(0, 100%);*/
    transition: height .5s ease-in-out;
    -moz-transition: height .5s ease-in-out;
    -webkit-transition: height .5s ease-in-out;
    -o-transition: height .5s ease-in-out;
    -ms-transition: height .5s ease-in-out;
    /*transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);*/
}

.header-navlinks a {
    color: #555;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}

.header-navlinks a::after {
    display: none;
}

.header-navlinks li {
    margin-left: 32px;
    padding: 8px 0;
}

.header-navlinks li:first-child {
    padding-top: 20px;
}


.chkbx:checked~ul {
    transform: none;
    height: 200px;
    /* Adjust this per project, can't be set to auto or will mess up animation */
}

.header-navlinks a:hover,
.header-navlinks a:focus {
    text-decoration: none;
    color: #749a3e;
}

.header-navlinks a:focus:not(:focus-visible) {
    color: #555;
}



/* Nav Style Ends */




/* Large Phone Styles Here */

@media only screen and (min-width: 320px) {

    .nav-title {
        font-size: 16px;
    }

    .menu-open {
        font-size: 25px;
    }

    .menu-open-icon {
        height: 19px;
    }

    .form-text-webdev {
        width: 100%;
    }

    .header-navlinks a:first-child li {
        padding-top: 25px;
    }

    .navigation {
        height: 105px;
    }
}

@media only screen and (min-width: 375px) {}

@media only screen and (min-width: 425px) {

    .menu {
        right: 45px;
    }

    .header-navlinks {
        right: -45px;
    }
}

@media only screen and (min-width: 576px) {

    .siteSearch-webdev {
        width: 100%;
    }

    .form-text-webdev {
        width: 350px;
    }

}


@media only screen and (min-width: 768px) {

    .form-text-webdev {
        width: 480px;
    }

    .nav-contain {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
    }

    .header-top {
        background: #4b4538;
        height: 35px;
        color: #fff;
    }

    .header-bottom {
        padding: 1px 0;
        border-top: 1px solid #4b4538;
        border-bottom: 1px solid #4b4538;
        background: #fdfdfd;
    }

    .header-bottom-container {
        background: #749a3e;
        height: 35px;
        /* margin: 5px 0px; */
        /* border-top: 1px; */
        /* border-bottom: 1px; */
        color: #fff;
    }

    .header-logo {
        margin: 10px 0px;
    }

    .chkbx {
        display: none;
    }

    .header-navlinks {
        margin-top: 40px;
        list-style: none;
        display: flex;

    }

    .header-navlinks a {
        color: #555;
        font-weight: 800;
        margin-right: 20px;
        /*    padding: 10px 5px;*/
        position: relative;
    }

    .header-navlinks a:first-child li {
        padding-top: unset;
    }

    .header-navlinks a::after {
        content: "";
        position: absolute;
        height: 2px;
        background-color: #749a3e;
        width: 0;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) all;
        transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) all;
    }

    .header-navlinks a:focus:not(:focus-visible)::after {
        transition: none !important;
        background: none !important;
        height: 0 !important;
    }

    .header-navlinks a:hover {
        color: #749a3e;
        outline: 0;
    }

    .header-navlinks a:hover::after {
        width: 100%;
    }

    .navigation {
        height: 112px;
    }

    .header-logo {
        padding-top: 0;
    }

}


/* Small laptop screen styles */
/*@media only screen and (min-width: 1024px) {*/

/*    .header-navlinks a {*/
/*        margin-left: 22px;*/
/*    }*/
/*}*/


@media only screen and (min-width: 1024px) {

    .navigation {
        display: flex;
        justify-content: center;
        background-color: white;
        position: absolute;
    }

    .nav-contain {
        display: flex;
        flex-flow: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        width: 95%;
    }

    .menu {
        display: flex;
        align-content: center;
        width: 60%;
    }

    .header-top {
        background: #4b4538;
        height: 35px;
        color: #fff;
    }

    .header-bottom {

        padding: 1px 0;
        border-top: 1px solid #4b4538;
        background: #fdfdfd;
    }

    .header-bottom-container {
        background: #749a3e;
        height: 35px;
        /* margin: 5px 0px; */
        /* border-top: 1px; */
        /* border-bottom: 1px; */
        color: #fff;
    }

    .header-logo {
        margin: 10px 0px;
    }

    /*.logo {*/
    /*    margin-left: -50px;*/
    /*}*/

    .chkbx {
        display: none;
    }

    .header-navlinks a:first-child {
        padding: 10px 5px;
    }

    .header-navlinks li {
        padding: unset;
        margin: unset;
        display: grid;
    }

    .header-navlinks li:first-child {
        padding-top: 0;
    }

    .header-navlinks {
        font-size: 18px;
        width: auto;
        margin-top: -12px;
        background-color: unset;
        list-style: none;
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        height: 40px;
        margin-right: 10px;

    }

    .header-navlinks a {
        color: #555;
        font-weight: 800;
        font-size: 16px;
        margin-right: 12px;
        padding: 10px 5px;
        position: relative;
        margin-left: 0;
        white-space: nowrap;
    }

    .header-navlinks a::after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        background-color: #749a3e;
        width: 0;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) all;
        transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) all;
    }

    .header-navlinks a:hover,
    .header-navlinks a:focus {
        color: #749a3e;
        outline: 0;
    }

    .header-navlinks a:hover::after,
    .header-navlinks a:focus::after {
        width: 100%;
    }

    .menu .chkbx {
        display: none;
    }

    .burger {
        display: none;
    }
}

@media only screen and (min-width: 1600px) {
    .header-navlinks a {
        margin-right: 15px;
    }
}


@media only screen and (min-width: 1800px) {
    .header-navlinks a {
        font-size: 18px;
    }

    .header-navlinks {
        margin-right: 30px;
    }
}