/** 
* Global
*/
html,
body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --green1: #28B695;
    --green2: #005743;
    --dark1: #322E2E;
    --grey1: #ACB0AF;
    --error: #df3f3f;
}

.container {
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}
.container--medium {
    max-width: 1208px;
}
.container--large {
    max-width: 1248px;
}

.picture {
    display: block;
}
.picture__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.title {
    font-family: "Oswald";
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.title--underline {
    position: relative;
    padding-bottom: 8px;
}
.title--underline:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 2px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    background-color: var(--green1);
}
.title--xsmall {
    font-size: 16px;
}
.title--small {
    font-size: 24px;
}
.title--medium {
    font-size: 36px;
}
.title--large {
    font-size: 48px;
}
@media (min-width: 768px) {
    .title--large {
        font-size: 80px;
    }
}

.paragraph {
    font-family: "Raleway";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.paragraph--bold {
    font-weight: bold;
}
.paragraph--xsmall {
    font-size: 12px;
}
.paragraph--small {
    font-size: 14px;
}
.paragraph--medium {
    font-size: 16px;
}
.paragraph--large {
    font-size: 18px;
}

.components {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: -88px;
}

.cta {
    display: flex;
    padding: 12px 32px;
    color: var(--white);
    justify-content: center;
    text-decoration: none;
}
.cta--1 {
    background-color: var(--green1);
}
@media (hover: hover) {
    .cta--1:hover, .cta--1:active {
        background-color: var(--green2);
    }
}

.template-splash {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 300px;
    overflow: hidden;
    align-items: center;
}
@media (min-width: 768px) {
    .template-splash {
        min-height: 440px;
    }
}
.single-product .template-splash {
    min-height: 240px;
}
@media (min-width: 768px) {
    .single-product .template-splash {
        min-height: 340px;
    }
}
.template-splash:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: 1;
}
.template-splash__illustration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.template-splash__illustration .picture__img {
    object-fit: cover;
}
.template-splash__inner {
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
}
.template-splash__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-404 {
    margin: 120px 0 60px;
}
.page-404__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.single-product__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
@media (min-width: 768px) {
    .single-product__inner {
        flex-direction: row;
    }
}
.single-product__images {
    width: 100%;
    order: 1;
}
@media (min-width: 768px) {
    .single-product__images {
        order: 2;
        width: 430px;
        min-width: 430px;
    }
}
.single-product__images .swiper-button-next:after,
.single-product__images .swiper-button-prev:after {
    color: var(--green1);
}
.single-product__slider-main {
    margin-bottom: 16px;
}
.single-product__slider-thumbs {
    margin-top: 16px;
}
.single-product__slider-thumbs .swiper-slide {
    opacity: 0.4;
}
.single-product__slider-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.single-product__slide-main-illustration {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .single-product__slide-main-illustration {
        width: 430px;
        height: 310px;
    }
}
.single-product__slide-main-illustration .picture__img {
    object-fit: cover;
}
.single-product__slide-thumb-illustration {
    width: 100%;
    height: 72px;
    cursor: pointer;
    overflow: hidden;
}
.single-product__slide-thumb-illustration .picture__img {
    object-fit: cover;
}
.single-product__specifications {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.single-product__specifications-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.single-product__specifications-details p {
    position: relative;
    padding: 8px 0;
}
.single-product__specifications-details p:not(:last-child):before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background-color: var(--grey1);
}
.single-product__specifications-share {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.single-product__specifications-share a {
    display: flex;
    align-items: center;
    gap: 24px;
}
.single-product__specifications-share a path {
    fill: var(--green1);
    transition: all 0.3s;
}
@media (hover: hover) {
    .single-product__specifications-share a:hover path, .single-product__specifications-share a:active path {
        fill: var(--green2);
    }
}
.single-product__order {
    align-self: flex-start;
}
.single-product .tiles {
    margin: 64px 0 32px 0;
}
.single-product .products {
    margin: 0 0 16px 0;
}

/* Components */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    z-index: 99;
}
.header--sticky {
    background-color: var(--white);
    box-shadow: 0 0 16px rgba(13, 35, 57, 0.1);
}
.header--opened {
    box-shadow: none;
}
.header--opened .header__menu {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    padding: 24px;
    gap: 24px;
    box-shadow: 0 16px 16px rgba(13, 35, 57, 0.1);
}
.header--opened .header__menu:before {
    content: "";
    position: absolute;
    top: -16px;
    right: 24px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid var(--white);
}
.header--opened .header__menu .header__menu-list {
    flex-direction: column;
    gap: 24px;
}
.header--opened .header__menu .header__menu-list a {
    color: var(--black);
}
.header--opened .header__menu .header__menu-links {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.header--opened .header__menu .header__menu-links a {
    color: var(--black);
}
.admin-bar .header {
    top: 46px;
}
@media screen and (min-width: 782px) {
    .admin-bar .header {
        top: 32px;
    }
}
.header__inner {
    position: sticky;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}
@media (min-width: 768px) {
    .header__inner {
        align-items: initial;
    }
}
.header__logo {
    width: 180px;
    height: 40px;
}
.header--sticky .header__logo .header__logo-picture--sticky {
    display: flex;
}
.header--sticky .header__logo .header__logo-picture--not-sticky {
    display: none;
}
.header__logo .header__logo-picture--sticky {
    display: none;
}
.header__logo .header__logo-picture--not-sticky {
    display: flex;
}
.header__logo-picture {
    width: 100%;
    height: 100%;
}
.header__menu {
    position: relative;
    display: none;
}
@media (min-width: 768px) {
    .header__menu {
        display: flex;
    }
}
.header__menu-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.header__menu .menu-item a {
    color: var(--white);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}
.header--sticky .header__menu .menu-item a {
    color: var(--black);
}
@media (hover: hover) {
    .header__menu .menu-item a:hover, .header__menu .menu-item a:active {
        color: var(--green1);
    }
}
.header__menu-links {
    position: absolute;
    top: -16px;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.header__menu-links a {
    font-size: 16px;
    letter-spacing: 0.8px;
    color: var(--white);
    text-decoration: none;
}
.header--sticky .header__menu-links a {
    color: var(--black);
}
.header--opened .header__menu-links a {
    font-size: 18px;
}
@media (hover: hover) {
    .header__menu-links a:hover, .header__menu-links a:active {
        color: var(--green1);
    }
}
.header__hamburger {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 32px;
    height: 32px;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) {
    .header__hamburger {
        display: none;
    }
}
.header__hamburger span {
    width: 32px;
    height: 2px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--white);
    transition: 0.25s ease-in-out;
}
.header--sticky .header__hamburger span {
    background-color: var(--black);
}
.header--opened .header__hamburger span:nth-of-type(1) {
    margin-top: 18px;
    transform: rotate(135deg);
}
.header--opened .header__hamburger span:nth-of-type(2) {
    opacity: 0;
}
.header--opened .header__hamburger span:nth-of-type(3) {
    margin-top: -19px;
    transform: rotate(-135deg);
}

.footer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 0;
    overflow: hidden;
}
.footer:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.17);
    z-index: 1;
}
.footer__illustration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footer__illustration .picture__img {
    object-fit: cover;
    object-position: bottom;
}
@media (min-width: 768px) {
    .footer__illustration .picture__img {
        object-position: center;
    }
}
.footer__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    gap: 32px;
    z-index: 1;
}
@media (min-width: 768px) {
    .footer__inner {
        gap: 40px;
    }
}
.footer__logo {
    width: 262px;
    height: 56px;
}
.footer__logo-picture {
    width: 100%;
    height: 100%;
}
.footer__fsc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__fsc-logo {
    height: 200px;
}
.footer__fsc-description-word-r {
    font-size: 10px;
    vertical-align: super;
}
.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 768px) {
    .footer__content {
        gap: 24px;
    }
}
@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
    }
}
.footer__content-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: center;
}
@media (min-width: 768px) {
    .footer__content-description {
        text-align: left;
    }
}
.footer__content-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
@media (min-width: 768px) {
    .footer__content-socials {
        align-items: end;
    }
}
.footer__content-socials-channel {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.footer__content-socials-channel a {
    display: flex;
    align-items: center;
}
.footer__content-socials-channel a path {
    fill: var(--white);
    transition: all 0.3s;
}
@media (hover: hover) {
    .footer__content-socials-channel a:hover path, .footer__content-socials-channel a:active path {
        fill: var(--green1);
    }
}
.footer__copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.footer .whatsapp-number {
    position: fixed;
    bottom: 100px;
    right: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #25D366;
    z-index: 9;
    fill: var(--white);
}

.homepage-splash {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 670px;
    overflow: hidden;
    align-items: center;
}
.homepage-splash:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: 1;
}
.homepage-splash__illustration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.homepage-splash__illustration .picture__img {
    object-fit: cover;
}
.homepage-splash__inner {
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    z-index: 2;
}
.homepage-splash__cta {
    align-self: center;
}

.tiles {
    display: flex;
    flex-direction: column;
}
.tiles__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.tiles__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tiles__intro-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.tiles__intro-icon {
    width: 40px;
    height: 28px;
}
.tiles__intro-subtitle {
    color: var(--grey1);
}
.tiles__title {
    color: var(--black);
    text-align: center;
}
.tiles__description {
    color: var(--black);
    text-align: center;
}

.illustration-and-text {
    display: flex;
    flex-direction: column;
}
.illustration-and-text__inner {
    display: flex;
    flex-direction: column;
    min-height: 368;
    overflow: hidden;
}
@media (min-width: 768px) {
    .illustration-and-text__inner {
        flex-direction: row;
    }
}
.illustration-and-text__illustration {
    width: 100%;
    display: none;
}
@media (min-width: 768px) {
    .illustration-and-text__illustration {
        width: 555px;
        min-width: 555px;
        display: flex;
    }
}
.illustration-and-text__illustration .picture__img {
    object-fit: cover;
}
.illustration-and-text__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    color: var(--white);
    background-color: var(--dark1);
}
.illustration-and-text__cta {
    align-self: flex-start;
}

.landing {
    position: relative;
    display: flex;
    flex-direction: column;
}
.landing__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 120px;
    z-index: 2;
    padding: 48px;
}
@media (min-width: 768px) {
    .landing__inner {
        padding: 90px 24px 0 24px;
    }
}
.landing:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: 1;
}
@media (min-width: 768px) {
    .landing:before {
        height: calc(100% - 64px);
    }
}
.landing__landing-picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    .landing__landing-picture {
        height: calc(100% - 64px);
    }
}
.landing__landing-picture .picture__img {
    object-fit: cover;
}
.landing__content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--white);
}
.landing__cta {
    align-self: flex-start;
}
.landing__illustration {
    position: relative;
    width: 432px;
    min-width: 432px;
    height: 392px;
    display: none;
}
@media (min-width: 768px) {
    .landing__illustration {
        display: flex;
    }
}
.landing__illustration:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 390px;
    height: 384px;
    background-color: var(--green1);
    z-index: -1;
}

.products {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.products__slider-wrapper {
    padding-bottom: 40px;
}
.products__slide {
    width: 100%;
}
.products__slide-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
}
@media (hover: hover) {
    .products__slide-item:hover .products__slide-illustration:before, .products__slide-item:active .products__slide-illustration:before {
        background-color: rgba(0, 0, 0, 0.53);
    }
}
.products__slide-illustration {
    position: relative;
    width: 100%;
    height: 246px;
    overflow: hidden;
}
.products__slide-illustration .picture__img {
    object-fit: cover;
}
.products__slide-illustration:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.products__slide-title {
    text-align: center;
}
.products__slide-description {
    text-align: center;
}
.products .swiper-pagination-bullet {
    transition: all 0.3s;
}
@media (hover: hover) {
    .products .swiper-pagination-bullet:hover, .products .swiper-pagination-bullet:active {
        background-color: var(--green1);
    }
}
.products .swiper-pagination-bullet-active {
    background-color: var(--green1);
}
.products__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.products__list-item {
    width: calc(25% - 24px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--black);
    text-decoration: none;
}
@media (min-width: 320px) {
    .products__list-item {
        width: 100%;
    }
}
@media (min-width: 480px) {
    .products__list-item {
        width: calc(50% - 24px);
    }
}
@media (min-width: 768px) {
    .products__list-item {
        width: calc(33.333333333% - 24px);
    }
}
@media (min-width: 1024px) {
    .products__list-item {
        width: calc(25% - 24px);
    }
}
@media (hover: hover) {
    .products__list-item:hover .products__list-item-illustration:before, .products__list-item:active .products__list-item-illustration:before {
        background-color: rgba(0, 0, 0, 0.53);
    }
}
.products__list-item-illustration {
    position: relative;
    width: 100%;
    height: 246px;
    overflow: hidden;
}
.products__list-item-illustration .picture__img {
    object-fit: cover;
}
.products__list-item-illustration:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.products__list-item-title {
    text-align: center;
}
.products__list-item-description {
    text-align: center;
}

.map {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: min(100%, 372px);
    overflow: hidden;
    margin-top: -48px;
}
.map__iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: initial !important;
}

.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 768px) {
    .contact__inner {
        flex-direction: row;
        gap: 88px;
    }
}
.contact__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 768px) {
    .contact__form {
        width: 50%;
        gap: 48px;
    }
}
.contact__form h2 {
    color: var(--black);
    text-align: center;
}
.contact__form form p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}
.contact__form form p input,
.contact__form form p textarea {
    width: 100%;
    font-family: "Raleway";
    font-size: 14px;
    font-weight: 400;
    padding: 16px 24px;
    background: rgba(198, 198, 198, 0.34);
    border: none;
    outline: none;
}
.contact__form form p .wpcf7-not-valid-tip {
    font-size: 14px;
}
.contact__form form p span {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact__form form p span[data-name=your-first-name],
.contact__form form p span[data-name=your-last-name] {
    width: calc(50% - 9px);
}
.contact__form form p input[type=submit] {
    font-family: "Raleway";
    width: 100%;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--green1);
    cursor: pointer;
    transition: all 0.3s;
}
@media (min-width: 768px) {
    .contact__form form p input[type=submit] {
        width: auto;
    }
}
@media (hover: hover) {
    .contact__form form p input[type=submit]:hover {
        background-color: var(--green2);
    }
}
.contact__form form p input::placeholder,
.contact__form form p textarea::placeholder {
    font-family: "Raleway";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.contact__form form p .wpcf7-spinner {
    width: 24px;
    background: rgba(198, 198, 198, 0.34);
    display: none;
}
.contact__form form.invalid .wpcf7-response-output {
    margin: 16px 0 0 0;
    padding: 0;
    color: var(--error);
    font-weight: bold;
    border: none;
    text-align: center;
}
.contact__details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 768px) {
    .contact__details {
        width: 50%;
        gap: 48px;
    }
}
.contact__details h2 {
    color: var(--black);
    text-align: center;
}
.contact__details-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}
@media (min-width: 768px) {
    .contact__details-info {
        text-align: left;
    }
}
.contact__details-info h3 {
    color: var(--green2);
}
.contact__details-info p {
    color: var(--black);
}
.contact__details-info a {
    color: var(--black);
    text-decoration: none;
}
@media (hover: hover) {
    .contact__details-info a:hover, .contact__details-info a:active {
        color: var(--green1);
    }
}