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

/* HOME */
.dbadvice2_home {
    overflow: hidden;
    padding: 64px 0px;
}

.dbadvice2_home_content {
    display: flex;
    align-items: stretch;
}

.dbadvice2_home_left {
    background: #D4E585;
    color: #074D43;
    flex: 1.5;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px 0 0 8px;
}

.dbadvice2_home_title {
    width: 100%;
    margin-bottom: 20px;
}

.dbadvice2_home_title .h3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dbadvice2_home_title .h3,
.dbadvice2_home_title span {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    color: #074D43;
}

.dbadvice2_home_subtitle {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #344054;
    margin-bottom: 32px;
}

.dbadvice2_home_btn span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #268458;
    color: #074D43;
    border-radius: 8px;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
}

.dbadvice2_home_btn:hover span {
    color: #268458;
}

.dbadvice2_home_right {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 280px;
    background: #074D43;
    border-radius: 0 8px 8px 0;
}

.dbadvice2_home_right img {
    width: 100%;
    height: 268px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {

    .dbadvice2_home_title .h3,
    .dbadvice2_home_title span {
        font-size: 20px;
    }

    .dbadvice2_home {
        padding: 40px 0px;
    }

    .dbadvice2_home_content {
        flex-direction: column-reverse;
    }

    .dbadvice2_home_left {
        padding: 32px 20px;
        border-radius: 0px 0px 8px 8px;
        min-width: 0;
    }

    .dbadvice2_home_right {
        border-radius: 8px 8px 0px 0px;
        min-width: 0;
    }

    .dbadvice2_home_right img {
        height: 197px;
        align-self: stretch;
    }
}