/**
* 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 {
    margin-bottom: 100px;
    position: relative;
    -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;
}
.badaboutus-img:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    opacity: 0.5;
    border: 30px solid #fff;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out;
}
.badaboutus-img:hover:after {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s;
}
.badaboutus-img{
    width: 24%;
    text-align: center;
    padding: 0 15px;
    margin-left: -75px;
    position: relative;
    margin-top: -150px;
}
.badaboutus-content-wrapper{
    background: #faf4f2;
    width: 60%;
}
.badaboutus-content{
    width: 65%;
    padding: 80px 0;
    padding-right: 150px;
    margin-left: auto;
}
.badaboutus-block-contant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.badabout-first-section {
    text-align: left;
    width: 100%;
    margin: auto;
}
.badaboutus-block .badaboutus-subtitle {
    font-size: 30px;
    font-weight: 400;
    color: var(--theme-custom-color);
    font-family: var(--badtheme-font-name-2);
    line-height: 32px;
    background-color: #fff;
    display: inline-block;
    padding: 0px;
}
.badaboutus-subtitle span {
    font-size: 33px;
    color: #181818;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
}
.badaboutus-block .badaboutus-title {
    font-size: 35px;
    color: #2e2e2e;
    font-weight: 700;
    line-height: 48px;
    padding-bottom: 5px;
    position: relative;
    font-family: var(--badtheme-font-name-2);
    text-transform: capitalize;
    z-index: 1;
}
.badaboutus-block .badaboutus-title span{
    font-weight: 300;
    display: block;
}
.badaboutus-block .badaboutus-sub {
    font-size: 15px;
    color: #606060;
    font-weight: 400;
    line-height: 32px;
    padding-bottom: 5px;
    overflow: hidden;
}
.badaboutus-block .badaboutus-desc {
    font-size: 15px;
    color: #606060;
    font-weight: 400;
    line-height: 32px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 7;
    margin-bottom: 10px;
}
.badaboutus-block .badaboutus-desc-1{
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 400;
    line-height: 32px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    font-family: var(--badtheme-font-name-1);
}
.badaboutus-block-btn {
    text-align: left;
    margin-top: 10px;
    display: inline-block;
}
.badaboutus-block .badaboutus-btn {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    background-color: var(--theme-custom-color);
    padding: 10px 22px;
    display: inline-block;
    text-transform: uppercase;
    transform: perspective(1px) translateZ(0);
    -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;
    overflow: hidden;
}
.badaboutus-block .badaboutus-btn::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.badaboutus-block .badaboutus-btn:hover:before,
.badaboutus-block .badaboutus-btn:focus:before,
.badaboutus-block .badaboutus-btn:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    border-color:var(--theme-custom-color);
    transition-timing-function: cubic-bezier(0.52, 1.70, 0.37, 0.66);
}
.badaboutus-block .badaboutus-btn a {
    background-color: var(--theme-custom-color);
    padding: 13px 18px;
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
}
.badaboutus-block .badaboutus-btn:hover a {
    background: #333333;
    color: #ffffff;
}
.badaboutus-block .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
}
.badaboutus-block .prod-name-price{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
}
.badaboutus-content-wrapper .index {
    font-size: 18px;
    line-height: 30px;
    color: #111111;
    border: 2px solid #000;
    border-radius: 100px;
    height: 35px;
    width: 35px;
    padding: 0 10px;
    margin: 30px 0;
}
.badabout-second-block ul {
    text-align: center;
    margin: 0;
    position: relative;
}
.badabout-second-block ul li {
    padding-top: 72px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    font-family: var(--badtheme-font-name-2);
    color: #000;
}
.badabout-second-block ul li::before{
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: absolute;
    top: -66%;
    left: 0;
    right: 0;
}
.badabout-second-block ul li:nth-child(1):before{
    background-image: url(../img/1.png);
}
.badabout-second-block ul li:nth-child(2):before{
    background-image: url(../img/2.png);
}
.badabout-second-block ul li:nth-child(3):before{
    background-image: url(../img/3.png);
}
.badaboutus-content-wrapper .img-wrapper {
    padding-left: 20px;
}
.badaboutus-content-wrapper .img-wrapper img{
    height: 98px;
    width: 98px;
}
.badaboutus-content-wrapper .content-wrapper {
    padding-left: 20px;
}
.badaboutus-content-wrapper .content-wrapper .name{
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 40px;
    color: #111111;
    font-weight: 500;
}
.badaboutus-content-wrapper .content-wrapper .price{
    font-size: 18px;
    line-height: 40px;
    color: var(--theme-custom-color);
    text-align: right;
}
.badaboutus-content-wrapper .content-wrapper .attributes {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 44px;
    color: #777777;
    border: 1px solid #e3e3e3;
    width: 70%;
    padding: 0 15px;
}
.badaboutus-content-wrapper img {
    position: relative;
    -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;

}
@media(max-width: 1868px){
    .badabout-second-block ul li {
        font-size: 20px;
    }
    .badaboutus-content-wrapper {
        width: 65%;
    }
    .badaboutus-content {
        width: 72%;
    }
}
@media(max-width: 1650px){
    .badabout-second-block ul li {
        font-size: 18px;
    }
    .badaboutus-block {
        margin: 0 0 100px;
    }
    .badaboutus-content {
        width: 80%;
    }
    .badaboutus-img{
        width: 25%;
    }
}
@media(max-width: 1530px){
    .badaboutus-img{
        margin-left: -35px;
    }
    .badaboutus-content-wrapper {
        width: 70%;
        padding-left: 30px;
    }
    .badaboutus-img{
        padding: 0;
    }
    .badaboutus-img {
        width: 22%;
    }
}
@media(max-width: 1444px){
    .badaboutus-block {
        margin: 0 0 80px;
    }
    .badaboutus-content{
        width: 80%;
    }
    .badaboutus-img{
        width: 24%;
    }
    .badaboutus-content {
        width: 90%;
    }
    .badaboutus-content-wrapper {
        width: 68%;
    }
}
@media(max-width: 1399px){
    .badaboutus-img {
        width: 25%;
    }
    .badaboutus-content {
        width: 95%;
    }
}
@media(max-width: 1300px){
    .badaboutus-content {
        width: 95%;
    }
    .badaboutus-img {
        width: 28%;
    }
    .badfeatured-products-block {
        margin-bottom: 70px;
    }
}
@media(max-width: 1199px){
    .badaboutus-block .badaboutus-title {
        font-size: 30px;
        line-height: 40px;
    }
    .badaboutus-content{
        width: auto;
    }
    .badaboutus-img{
        width: 30%;
    }
    .badaboutus-subtitle-block{
        margin-bottom: 10px;
    }
    .badaboutus-block{
        margin-bottom: 45px;
    }
    .badaboutus-block .badaboutus-desc {
        font-size: 16px;
        line-height: 30px;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .badaboutus-block .badaboutus-subtitle {
        font-size: 45px;
    }
    .badaboutus-subtitle span {
        font-size: 30px;
    }
    .badaboutus-desc.bad-aboutus-second-desc {
        display: none;
    }
    .badaboutus-block .badaboutus-btn a {
        padding: 10px 12px;
        font-size: 16px;
        line-height: 24px;
    }
    .badaboutus-img{
        margin-top: -95px;
    }
    .badaboutus-content{
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .badaboutus-content-wrapper {
        width: 75%;
        padding-left: 30px;
    }
    .badaboutus-img {
        width: 25%;
    }
}
@media(max-width: 991px){
    .badabout-second-block ul li {
        font-size: 12px;
        padding-top: 35px;
        letter-spacing: 0;
    }
    .badaboutus-block .badaboutus-title{
        font-size: 24px;
    }
    .badaboutus-block .badaboutus-desc {
        font-size: 16px;
        line-height: 30px;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .badaboutus-subtitle-block{
        margin-bottom: 5px;
    }
    .badaboutus-block {
        margin: 0 0 30px;
    }
    .badaboutus-content-wrapper {
        width: 75%;
        padding-left: 30px;
    }
    .badaboutus-img {
        width: 25%;
    }
    .badaboutus-content{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .badaboutus-block .badaboutus-subtitle {
        font-size: 30px;
        line-height: 42px;
    }
    .badaboutus-subtitle span {
        font-size: 24px;
    }
    .badaboutus-block .badaboutus-desc {
        font-size: 15px;
        line-height: 25px;
        padding: 0px;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
    }
    .badaboutus-block .badaboutus-desc-1{
        font-size: 15px;
        line-height: 24px;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
    }
    .badaboutus-content{
        padding-right: 50px;
    }
    .badaboutus-block .badaboutus-btn a {
        font-size: 15px;
    }
    .badaboutus-block-btn{
        margin-top: 10px;
    }
    .badaboutus-block .badaboutus-btn {
        font-size: 15px;
        line-height: 30px;
        padding: 5px 18px;
    }
    .badaboutus-block .badaboutus-title::before{
        min-width: 155px;
        height: 15px;
    }
}
@media(max-width: 767px){
    .badaboutus-block-contant {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        flex-direction: column;
    }
    .badaboutus-content-wrapper{
        width: 100%;
        order: 1
    }
    .badaboutus-block .badaboutus-img {
        text-align: center;
        width: auto;
        margin: auto;
    }
    .badaboutus-block .badaboutus-btn {
        padding: 5px 24px;
    }
    .badaboutus-block .badaboutus-subtitle{
        font-size: 30px;
        line-height: 35px;
    }
    .badaboutus-content {
        padding-right: 30px;
    }
}
@media(max-width: 575px){
    .badaboutus-block .badaboutus-img {
        text-align: center;
        width: auto;
        padding: 0 15px;
        margin: 0 15px;
    }
}
@media(max-width: 475px){
    .badaboutus-block .badaboutus-subtitle {
        font-size: 22px;
        line-height: 28px;
    }
    .badaboutus-subtitle span {
        font-size: 20px;
    }
    .badaboutus-block .badaboutus-desc {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 0px;
        margin: 10px 0;
    }
    .badaboutus-block .badaboutus-desc-1{
        font-size: 14px;
        line-height: 30px;
    }
    .badaboutus-block .badaboutus-title::before {
        min-width: 134px;
    }
    .badaboutus-block .badaboutus-sub{
        font-size: 14px;
        padding-bottom: 0;
    }
}
@media(max-width: 375px){
    .badaboutus-content{
        padding-right: 0px;
    }
    .badaboutus-content-wrapper{
        padding-right: 30px;
    }
    .badaboutus-block .badaboutus-btn {
        font-size: 15px;
        line-height: 30px;
        padding: 5px 18px;
    }
}