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

.dbhomefeatures {
    padding: 32px;
    background-color: #FFF;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
}
.dbhomefeatures .dbhomefeatures_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dbhomefeatures .dbhomefeatures_left,
.dbhomefeatures .dbhomefeatures_right {
    width: calc(50% - 52px);
}
.dbhomefeatures .dbhomefeatures_left.img_left,
.dbhomefeatures .dbhomefeatures_right {
    width: calc(50% - 135px);
}
.dbhomefeatures .dbhomefeatures_left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.dbhomefeatures .dbhomefeatures_left .dbhomefeatures_left-content {
    width: calc(100% - 155px);
}
.dbhomefeatures .dbhomefeatures_left .dbhomefeatures_left-content .btn {
    background-color: #034434;
    border-radius: 5px;
    color: #FFF;
    text-transform: uppercase;
    margin-top: 1rem;
}
.dbhomefeatures .dbhomefeatures_left .title {
    margin-bottom: 16px !important;
    text-align: left;
    margin-top: 0;
}
.dbhomefeatures .dbhomefeatures_left .subtitle {
    color: #034434;
}
.dbhomefeatures .dbhomefeatures_right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.dbhomefeatures .dbhomefeatures_right .dbhomefeatures_feature {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.dbhomefeatures .dbhomefeatures_right .dbhomefeatures_feature:last-child {
    margin-bottom: 0;
}
.dbhomefeatures .dbhomefeatures_right .dbhomefeatures_feature img {
    width: 30px;
    height: auto;
}
.dbhomefeatures .dbhomefeatures_right .dbhomefeatures_feature .dbhomefeatures_feature_text {
    width: calc(100% - 50px);
}
.dbhomefeatures .dbhomefeatures_right .dbhomefeatures_feature .dbhomefeatures_feature_text p {
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 991px) {
    .dbhomefeatures {
        padding: 32px 20px;
    }
    .dbhomefeatures .dbhomefeatures_left,
    .dbhomefeatures .dbhomefeatures_right {
        width: 100%;
    }
    .dbhomefeatures .dbhomefeatures_right {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    .dbhomefeatures .dbhomefeatures_content {
        flex-direction: column;
        gap: 40px;
    }
    .dbhomefeatures .dbhomefeatures_content .dbhomefeatures_image,
    .dbhomefeatures .dbhomefeatures_content .dbhomefeatures_image img {
        width: 100%;
        height: auto;
    }
    .dbhomefeatures .dbhomefeatures_left.img_left, .dbhomefeatures .dbhomefeatures_right {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
    }
}