:root {
    --color-white-100: hsl(0, 0%, 100%);
    --color-white-200: hsl(0, 0%, 95%);
    --color-white-300: hsl(0, 0%, 90%);
    --color-white-400: hsl(0, 0%, 75%);
    --color-white-500: hsl(0, 0%, 60%);

    --color-black-300: hsl(0, 0%, 30%);
    --color-black-400: hsl(0, 0%, 15%);
    --color-black-500: hsl(0, 0%, 5%);

    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.08),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.07),
        0 4px 6px -2px rgba(0, 0, 0, 0.04);
}


input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: none;
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Ubuntu", sans-serif;
}

p,
span,
a,
button {
    font-family: "Quattrocento Sans", sans-serif;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

.header .menu-inner {
    margin: 0;
    padding: 0;
}

.header li {
    min-inline-size: fit-content;
}

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}

.header img,
.header video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.header img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.header .section {
    margin-inline: auto;
    padding-block: 4rem 2rem;
}

.header .container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.header .btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.header .btn-default {
    color: white;
    background-color: #64ac00;
    ;
}

.header .btn-darker {
    color: var(--color-white-100);
    background-color: var(--color-black-500);
    /* box-shadow: var(--shadow-medium); */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* ensures it stays above all content */
    background-color: #ffffff;
    /* box-shadow: var(--shadow-medium); */
}

.header .navbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
}

@media screen and (min-width: 48rem) {
    .header .navbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.header .brand {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-black-400);
}

.header .wrapper {
    display: flex;
    justify-self: end;
    align-items: center;
    column-gap: 1.5rem;
    padding-block: 1rem;
}

@media screen and (min-width: 48rem) {
    .header .wrapper {
        order: 1;
    }
}

.header .menu {
    display: flex;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.2s linear;
}

.header .menu.is-visible {
    height: 12.5rem;
    margin-top: 1rem;
}

.header .menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.header .menu-link {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-black-400);
    transition: all 0.25s ease;
}

@media screen and (min-width: 48rem) {
    .header .menu {
        height: auto;
        align-items: center;
        justify-content: center;
        overflow: inherit;
    }

    .header .menu-inner {
        flex-direction: row;
        gap: 1.5rem;
    }

    .header .menu-link {
        text-transform: capitalize;
    }
}

.header .up-down-arrow {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.6rem;
    height: 1rem;
    visibility: visible;
}

@media screen and (min-width: 48rem) {
    .header .up-down-arrow {
        display: none;
        visibility: hidden;
    }
}

.header .up-down-arrow-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2.1px;
    transform: rotate(0deg);
    background-color: var(--color-black-400);
    transition: all 0.2s ease;
}

.header .up-down-arrow-line:nth-child(1) {
    top: 0px;
}

.header .up-down-arrow-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.header .up-down-arrow-line:nth-child(3) {
    top: 1rem;
}

.header .up-down-arrow.is-active .up-down-arrow-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.up-down-arrow.is-active .up-down-arrow-line:nth-child(2) {
    opacity: 0;
}

.header .up-down-arrow.is-active .up-down-arrow-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.header .menu-link:hover,
.header .btn:hover {
    opacity: 0.85;
}


/* footer */
/* footer */
.footer {
    background: #64ac00;
    position: relative;
    width: calc(100% - 40px);
    margin: 20px;
    height: 100%;
    left: 0;
    gap: 3.5rem;
    z-index: 5;
    border-radius: 20px;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
}

.footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col .links {
    margin-top: 20px;
    padding: 0px;
}

.footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col .links li a {
    text-decoration: none;
    color: #fff;
}

.footer-col .links li a:hover {
    color: #fff;
}

.footer-col p {
    margin: 20px 0;
    color: #fff;
    max-width: 300px;
}

.footer-col form {
    display: flex;
    gap: 5px;
}

.footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
}

.footer-col input::placeholder {
    color: #fff;
}

.footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
    color: #64ac00;
}

.footer-col form button:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin: 0;
    }

    .footer .footer-row {
        padding: 20px;
        gap: 1rem;
    }

    .footer-col form {
        display: block;
    }

    .footer-col form :where(input, button) {
        width: 100%;
    }

    .footer-col form button {
        margin: 10px 0 0 0;
    }
}


/*  */
.footer-widget-address.style_two {
    border-bottom: 1px dashed #ffffff78;
    padding-bottom: 12px;
}

.footer-widget-address {
    margin-bottom: 20px;
}

.footer_widget_icon.style_upper {
    top: 7px;
    position: relative;
}

.footer_widget_icon i {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background-color: #f8bc26;
    font-size: 12px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    float: left;
    margin-right: 10px;
}

.footer-widget-address_text {
    overflow: hidden;
}

.footer-widget-address_text p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-widget-address_text span {
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

.footer-col .links a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.footer-col .links a:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.footer-col .links a:hover:before,
.footer-col .links a:focus:before,
.footer-col .links a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.top-div {
    margin-top: 120px;
}

.twelve h1:after {
    background-color: #f8bc26;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-top: 5px;
}

.twelve h1 {
    color: #64ac00;
}

/* toast */
#toast {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;

    position: fixed;
    z-index: 99999999;
    left: 0;
    right: 0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

#toast #img {
    width: 50px;
    height: 50px;

    float: left;

    padding-top: 16px;
    padding-bottom: 16px;

    box-sizing: border-box;


    background-color: #111;
    color: #fff;
}

#toast #desc {
    color: #fff;
    padding: 16px;
    overflow: hidden;
    white-space: nowrap;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 360px
    }
}

@keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 360px
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 360px
    }

    to {
        min-width: 360px
    }
}

@keyframes stay {
    from {
        min-width: 360px
    }

    to {
        min-width: 360px
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 360px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 360px;
    }

    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

/* end toast */