/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.social__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 50px 0;
    background: url("../img/follow-hi-panda.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media (width > 767px) {
    .social__container {
        flex-direction: row;
    }
}

.social__container span {
    display: block;
    max-width: 500px;
    text-align: center;
    padding: 0 24px;
    font-size: 16px;
}

.socialLinks__wrapper {
    display: flex;
    gap: 24px;
}

.footer-brands .container {
    margin: 0 !important;
    width: 100%;
}

.facebook__link {
    background-color: #3b5998;
    height: 70px;
    display: flex;
    width: 70px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.facebook__link svg {
    height: 50px;
}

.instagram__link {
    background-color: #262626;
    height: 70px;
    display: flex;
    width: 70px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.instagram__link svg { 
    height: 50px;
}

.contactUs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding: 64px 24px;
    background-image: url("../img/img-hipanda-onas.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contactUs > div {
    position: relative;
    z-index: 10;
}

.contactUs .contactUs__desc p {
    color: #fff;
}

.contactUs::before {
    background-color: rgba(0,0,0, .8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
}

@media (width > 767px) {
    .contactUs {
        flex-direction: row;
        gap: 0;
    }

    .contactUs img {
        padding-right: 36px;
    }

    .contactUs .contactUs__desc {
        padding-left: 48px;
        border-left: 1px solid #fff;
        max-width: 700px;
    };
}