/**
* 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
*/
.badaboutus-block {
    position: relative;
    background-color: #1C1B18;
    margin-bottom: 80px;
}
.badaboutus-block-inner {
    display: flex;
    align-items: center;
}
.badaboutus-content-block {
    width: 70%;
    padding-left: 100px;
}
.badaboutus-block .badaboutus-title {
    display: block;
    font-size: 32px;
    line-height: 35px;
    color: var(--theme-text-color);
    padding-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.badaboutus-subtitle {
    font-size: 16px;
    line-height: 25px;
    color: var(--theme-text-color);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 25px;
}
.badaboutus-desc {
    font-size: 14px;
    color: var(--theme-text-color);
    line-height: 25px;
    font-weight: 300;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
}
.badaboutus-btn {
    background-color: var(--theme-custom-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    font-size: 15px;
    position: relative;
    vertical-align: middle;
    border: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    overflow: hidden;
}
.badaboutus-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #333;
    border: none;
    transition: all .35s;
    z-index: -1;
}
.badaboutus-btn:hover{
    color: #fff;
}
.badaboutus-btn:hover::after {
    width: 100%;
}
.badaboutus-img {
    padding: 0;
    position: relative;
}
.badaboutus-pagination-wrapper .bad-all-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    top: auto;
}
@media(max-width: 1700px){
    .badaboutus-desc{
        -webkit-line-clamp: 2;
        margin-bottom: 15px;
    }
}
@media(max-width: 1400px){
    .badaboutus-content-block {
        width: 80%;
        padding-left: 40px;
    }
}
@media(max-width: 1200px){
    .badaboutus-content-block {
        width: 90%;
        padding: 20px 0 20px 20px;
    }
    .badaboutus-block .badaboutus-title{
        font-size: 30px;
        padding-bottom: 20px;
    }
    .badaboutus-subtitle,.badaboutus-desc{
        margin-bottom: 10px;
    }
    .badaboutus-block {
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .badaboutus-block .badaboutus-title {
        font-size: 25px;
        padding-bottom: 10px;
    }
    .badaboutus-subtitle{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .badaboutus-desc{
        -webkit-line-clamp: 2;
        margin-bottom: 15px;
    }
    .badaboutus-content-block{
        padding: 0;
    }
    .badaboutus-btn{
        font-size: 14px;
        padding: 9px 18px;
    }
    .badaboutus-block {
        margin-bottom: 30px;
    }
    .badaboutus-block-inner{
        display: block;
    }
    .badaboutus-content {
        padding: 30px 0;
    }
}
@media(max-width: 767px){
    .badaboutus-content-block{
        width: 100%;
    }
}
@media(max-width: 480px){
    .badaboutus-block .badaboutus-title {
        font-size: 23px;
        padding-bottom: 6px;
    }
    .badaboutus-subtitle{
        margin-bottom: 8px;
    }
    .badaboutus-btn{
        font-size: 13px;
        padding: 9px 15px;
    }
    .badaboutus-content {
        padding: 20px 0;
    }
}
@media(max-width: 350px){
    .badaboutus-block .badaboutus-title{
        font-size: 21px;
    }
}