/**
* 2007-2023 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-2023 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.
*/

.banner-homepage2-div {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 576px;
  background-color: rgba(0, 0, 0, 0.25);
}

.banner-homepage2-filter{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
}

.banner-homepage2-logo {
  position: absolute;
  top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}

.banner-homepage2-div2{
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.banner-homepage2-h1 {
  display: block !important;
  font-family: "Quicksand" !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 30px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  padding-top: 20px !important;
}

.banner-homepage2-h2 {
  display: block;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 35px;
}

.banner-homepage2-p {
  display: block;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  padding-top: 35px;
}

.banner-homepage2-a {
  display: block;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  background-color: var(--verde-floresta);
  border-radius: 10px;
  padding: 16px 24px;
  width: 350px;
  display: inline-flex;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.banner-homepage2-a:hover {
  color: var(--verde-floresta);
  background-color: var(--beige);
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 350px) {
    .banner-homepage2-a {
        width: 100%;
        border-radius: 0px;
      }
}