/* Style GeoSM Multilanguage */

.social__icon {
    height: 48px;
}

.contacts__info-content p {
    font-size: 24px;
}

.header__container-city span {
    color: white;
}

.header__container-phone a {
    color: white;
}

.h1_prod, .content__section h1 {
    margin-top: 20px;
}

article p {
    font-size: 16px;
    margin: 20px 0;
}

article form {
    display: flex;
    justify-content: center;
}

article .wp-block-image {
    display: flex;
    justify-content: center;
}

article h2 {
    margin-bottom: 19px;
    font: normal 24px/1.2 Geologica, Arial, sans-serif;
    text-transform: uppercase;
    color: #00b217;
    text-align: center;
}

article h3 {
    font-size: 20px;
    text-align: center;
    color: #00b217;
}

article img {
    box-sizing: border-box;
    max-height: 400px;
    max-width: 100%;
    vertical-align: bottom;
    border-radius: 12px;
}

/* BEGIN: Language Picker */

.header__languages-inner {
    z-index: 500;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background-color: #004043;
    visibility: hidden;
    opacity: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 15px;
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 400;
    padding: 15px 24px 15px 24px;
    top: 30px;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
}

.header__languages-button {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: Geologica, sans-serif;
    gap: 4px;
    transition: color 0.3s ease-in-out;
}

.header__languages {
    position: relative;
    display: flex;
    width: 140px;
    height: 100%;
}

.header__languages p {
    margin: 0;
    font-size: 14px;
    text-transform: none;
    color: #ffffffb0;
}

.header__languages:hover .header__languages-inner {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.languages__inner-item {
    list-style: none;
    color: #ffffff;
    text-align: center;
}

.header__languages-button img {
    height: 15px;
    width: 20px;
    object-fit: cover;
}

.header__languages-arrow {
    height: 10px;
    display: none;
}

/* END: Language Picker */

.products__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px 20px;
}

.products__item-image {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.products__item-title {
    font-size: 30px;
    text-align: center;
}

@media (max-width: 900px){
    
    .products__item {
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    
    .products__item-image {
        width: 80%;
    }
    
    .products__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 20px;
    }
    
    .products__item-title {
        font-size: 20px;
    }
}

/* BEGIN: Product Tabs */

.product__tabs-list {
    display: flex;
    gap: 20px;
    flex-flow: row wrap;
}

.product__tabs-item {
    padding: 10px 30px;
    border: 2px solid #d6d6d6;
    border-radius: 8px;
    cursor: pointer;
    width: fit-content;
}

.product__tabs-item.active {
    color: white;
    background-color: #00b217;
    border: 2px solid #00b217;
}

.product__tabs-disclaimer {
    color: #00b217;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.product__title {
    font-size: 35px;
    margin-bottom: 20px;
}

.product__content {
    display: flex;
    gap: 20px;
}

.product__content-image {
    width: 40%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.product__content-description {
    width: 60%;
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}

.product__content-description h3 {
    font-size: 25px;
    margin: 0;
}

.th__line {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #dedede;
}

.th__line p {
    width: 50%;
}

.th__line p:last-child {
    text-align: right;
}

.product__tabs-product.active {
    display: flex;
    flex-direction: column;
}

.product__tabs-product {
    display: none;
}

@media (max-width: 1100px){
    .product__content-description {
        width: 100%;
    }
    .product__content-image {
        width: 100%;
    }
    .product__content {
        flex-flow: column nowrap;
    }
}

/* END: Product Tabs */

/* BEGIN: Product Page */

.product__content-left {
    width: 25%;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    align-items: center;
}

.content__section .product__content-description {
    width: 75%;
}

.content__section .product__content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 1100px){
    .product__content-left {
        width: 100%;
    }
    
    .content__section .product__content-description {
        width: 100%;
    }
}
/* END: Product Page */