* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
}

.header-links .mobileMenu {
    display: none;
}

.semibold {
    font-weight: 600;
}

header {    
    background-color: #FFFFFF;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    position: sticky;
    top: 0;
    z-index: 50;
}

header > .container {
    padding: 1rem;
}

nav {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

main {
    background-color: rgba(0, 0, 0, 0.6);
}

footer {
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

main .container {
    max-width: 1280px;
    padding: 2rem;
}

.header-content {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.header-logo {
    order: 2;
    display: block;
    flex-shrink: 1;
}

.header-logo img {
    max-width: 100%;
    max-height: 50px;
    height: auto;
    display: block;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.header-logo img:hover {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    transform: scale(1.05);
}

.header-links {
    order: 3;
    flex-shrink: 0;
}

.header-links button {
    background: none;
    border: none;
    display: block;
    padding: 0;
    width: 3rem;
    height: 3rem;
}

.header-links button svg {
    width: 100%;
    height: 100%;    
    fill: #69715b;
}

.header-links ul {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    background-color: #69715b;
    text-align: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.header-links ul li {
    position: relative;
    border-top: 1px solid #fff;
    padding: 1rem 0;
}

.header-links ul li ul {
    position: relative;
    margin: 1rem 0 0 0;
}

.header-links ul li ul li {
    padding: 1rem 0;
}

.header-links ul li ul li:last-child {
    padding: 1rem 0 0 0;
}

.header-links a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.header-links a:hover {
    color: #fff;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 1;
    flex-shrink: 0;
}

.header-info a, .footer-links a, .footer-info a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.header-info a:hover, .footer-links a:hover, .footer-info a:hover {
    color: #69715b;
}

.header-info svg {
    display: block;
    background: #3BAA34;
    color: #fff;
    border-radius: 100%;
    line-height: 1;
    padding: 0.75rem;
    width: 3rem;
    height: 3rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.header-info svg:hover {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    transform: scale(1.05);
}

.header-info p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}

.header-info p a {
    font-size: 18px;
    font-weight: 600;
}

.header-info > div {
    display: none;
}

footer > .container {
    padding: 2rem 1rem;
}

.footer-content {
    text-align: center;
}

.footer-content > div {
    margin: 0 0 2rem 0;
}

.footer-content > div:last-child {
    margin: 0;
}

.footer-logo img {
    max-height: 50px;
    height: auto;
    display: block;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    margin: 0 auto;
}

.footer-logo img:hover {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    transform: scale(1.05);
}

.footer-links ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info {     
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-info > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-info svg {
    background: #3BAA34;
    color: #fff;
    border-radius: 100%;
    line-height: 1;
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
}

.footer-strapline {
    background-color: #69715b;
}

.footer-strapline .container {
    padding: 1rem;
}

.footer-strapline p {
    font-size: 14px;
    margin: 0;
    text-align: center;
    color: #fff;
}

.content {
    color: #fff;
    text-align: center;
    margin: 0 0 4rem 0;
}

.content:last-child {
    margin: 0;
}

.content h1, .content h2, .content h3 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 2rem 0;
}

.content p {
    font-size: 16px;
    line-height: 32px;
    margin: 0 0 2rem 0;
}

.content p:last-child {
    margin: 0;
}

.content a {
    color: #09e;
    text-decoration: none;
    text-underline-offset: 4px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.content a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.content.content-box a {
    color: #69715b;
}

.content a.button {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.content a.button:hover {
    color: #69715b;
    background: #fff;
    border: 2px solid #fff;
}

.content.content-box {
    color: #000;
    background-color: #fff;
    padding: 2rem;
}

.content.content-box a.button {
    background-color: #69715b;
    border: 2px solid #69715b;
}

.content.content-box a.button:hover {
    color: #69715b;
    background: #fff;
    border: 2px solid #69715b;
}

.key-icons {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
}

.key-icons div {
    text-align: center;
}

.key-icons svg, .key-icons img {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1rem;
}

.key-icons p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.product-blocks {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.product-blocks > div {
    max-width: 360px;
    overflow: hidden;
    border-radius: 4rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.product-blocks > div:hover {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    transform: scale(1.05);
}

.product-blocks > div > div {
    padding: 1rem;
    background-color: #69715b;
}

.product-blocks img {
    display: block;
    max-width: 360px;
    width: 100%;
    height: auto;
    padding: 1rem 1rem 0 1rem;
    background-color: white;
}

.product-blocks p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.product-blocks p a {
    color: #fff;
    text-decoration: none;
}

.product-blocks p a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-icons > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0 0 1rem 0;
}

.contact-icons > div:last-child {
    margin: 0;
}

.contact-icons svg {
    background: #3BAA34;
    color: #fff;
    border-radius: 100%;
    line-height: 1;
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
}

.contact-icons a {
    word-break: break-word;
}

.product-container .content {
    margin: 0 0 4rem 0;
}

.product-container .content:last-child {
    margin: 0;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-grid > div:first-child {
    order: 2;
}

.product-grid > div:last-child {
    order: 1;
}

.product-slider img {
    margin: 0 auto;
    max-width: 100%;
}

.product-description {
    text-align: center;
}

.product-description p {
    margin: 0 0 1rem 0;
}

.product-description p:last-child {
    margin: 0;
}

.product-description a.button {
    width: 100%;
}

.slick-dots {
    top: 100% !important;
    bottom: auto !important;
}

/* sm */
@media (min-width: 640px) {
    header > .container {
        padding: 1rem 2rem;
    }    

    footer > .container {
        padding: 2rem;
    }

    main .container {
        max-width: 1280px;
        padding: 4rem 2rem;
    }

    .content {
        margin: 0 0 8rem 0;
    }

    .key-icons {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: space-around;
    }

    .contact-icons > div {
        flex-direction: row;
    }    

    .product-blocks {
        flex-direction: row;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }  

    .product-grid > div:first-child {
        order: 1;
    }

    .product-grid > div:last-child {
        order: 2;
    }    

    .product-description {
        text-align: left;
    }
}

/* md */
@media (min-width: 768px) {
    
}

/* lg */
@media (min-width: 1024px) {    
    .header-logo {
        order: 1;
    }

    .header-links {
        order: 2;
    }

    .header-links button {
        display: none;
    }

    .header-links > ul {
        display: flex !important;
    }

    .header-links ul {
        position: relative;
        gap: 4rem;
        align-items: center;
        background-color: #fff;
    }

    .header-links ul li {
        border-top: 0;
        padding: 0;
    }

    .header-links a {
        color: #000;
    }

    .header-links a:hover {
        color: #69715b;
    }

    .header-links > ul > li > ul {        
        display: none;
    }

    .header-links ul li ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        background-color: #fff;
        list-style: none;
        padding: 1rem 0 0 0;
        margin: 0;
        width: auto;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .header-links > ul > li:hover > ul {
        display: block !important;
    }

    .header-links ul li ul li {
        border-top: 1px solid #69715b;
        padding: 1rem 2rem;
        white-space: nowrap;
        text-align: center;
    }

    .header-links ul li ul li:last-child {
        padding: 1rem;
    }

    .header-info {
        order: 3;
    }

    .header-info > div {
        display: block;
    }

    .footer-content {
        display: flex;
        gap: 2rem;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-content > div {
        margin: 0;
    }

    .footer-info > div {
        justify-content: flex-start;
    }

    .footer-links ul {
        display: block;
    }

    .footer-links ul li {
        margin: 0 0 1rem 0;
    }

    .footer-links ul li:last-child {
        margin: 0;
    }
    
    .footer-info {     
        display: block;
    }

    .footer-info > div {
        margin: 0 0 1rem 0;
    }

    .footer-info > div:last-child {
        margin: 0;
    }
}

/* xl */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* 2xl */
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}