/**
* 2007-2022 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-2022 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.badaboutus-block {
    margin-bottom: 80px;
    position: relative;
}
.badaboutus-block .row{
    display: flex;
    align-items: center;
}
.badaboutus-block .badaboutus-title {
    font-size: 32px;
    line-height: 54px;
    color: #252525;
    padding-bottom: 15px;
    font-weight: 600;
    font-family: var(--badtheme-font-name-2);
    text-transform: capitalize;
    position: relative;
    width: 80%;
}
.badaboutus-block .badaboutus-desc{
    font-size: 18px;
    color: #000;
    line-height: 32px;
    margin-bottom: 20px;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-weight: 500;
}
.badaboutus-block .badaboutus-btn {
    color: #ffffff;
    padding: 5px;
    display: inline-block;
}
.badaboutus-block .badaboutus-btn a {
    background-color: var(--theme-custom-color);
    padding: 12px 22px;
    display: inline-block;
    text-transform:capitalize;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    border: 1px solid var(--theme-custom-color);
}
.badaboutus-block .badaboutus-btn:hover a {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.badaboutus-content-wrapper img {
    position: relative;
    transition: all 0.5s ease-in-out;
}
.badaboutus-content{
    padding-top: 30px;
    text-align: left;
}

@media(max-width:1300px){
    .badaboutus-block .badaboutus-title{
        width: 100%;
    }
}
@media(max-width: 1200px){
    .badaboutus-block {
        margin-bottom: 50px;
    }
    .badaboutus-block .badaboutus-title{
        width: 85%;
    }
}
@media(max-width: 1199px){
    .badaboutus-block .badaboutus-title {
        font-size: 30px;
        line-height: 42px;
    }
    .badaboutus-block .badaboutus-desc{
        line-height: 30px;
    }
    .badaboutus-block .badaboutus-btn a {
        padding: 10px 12px;
        font-size: 16px;
        line-height: 24px;
    }
}
@media(max-width: 991px){
    .badaboutus-block {
        margin-bottom: 30px;
    }
    .badaboutus-block .badaboutus-title{
        width: 100%;
        line-height: 35px;
        font-size: 26px;
    }
    .badaboutus-block .badaboutus-btn a {
        font-size: 15px;
        padding: 10px 20px;
    }
    .badaboutus-block .badaboutus-desc{
        line-height: 26px;
        margin-bottom: 12px;
        font-size: 16px;
    }
    .badaboutus-img::after{
        left:-30px;
    }
}
@media(max-width: 767px){
    .badaboutus-block .row{
        flex-wrap: wrap;
    }
    .badaboutus-content-wrapper{
        width: 100%;
    }
    .badaboutus-block .badaboutus-img {
        text-align: center;
        width: 80%;
        margin: auto;
    }
    .badaboutus-block .badaboutus-title {
        font-size: 28px;
        line-height: 35px;
    }
    .badaboutus-content{
        text-align: center;
    }
}
@media(max-width: 575px){
    .badaboutus-block .badaboutus-title{
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    .badaboutus-block .badaboutus-desc{
        font-size: 16px;
    }
    .badaboutus-content{
        padding-top: 20px;
    }
    .badaboutus-block .badaboutus-btn a {
        padding: 7px 15px;
    }
}