/* IMPORT FONTS */


@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.eot');
    src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat-Medium.ttf') format('truetype'),
        url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica-Hv';
    src: url('../fonts/HelveticaNeueLTStd-HvCn.eot');
    src: url('../fonts/HelveticaNeueLTStd-HvCn.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-HvCn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-HvCn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-HvCn.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLTStd-HvCn.svg#HelveticaNeueLTStd-HvCn') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/HelveticaNeueLTStd-Cn.eot');
    src: url('../fonts/HelveticaNeueLTStd-Cn.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-Cn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-Cn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-Cn.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLTStd-Cn.svg#HelveticaNeueLTStd-Cn') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




:root {
    --white:#ffffff;
    --black: #000000;
    --green: #046648;
    --blue: #252d3d;

    --f1: "Montserrat";
    --f2: "Helvetica";
    --f3: "Helvetica-Hv";

    --text: 300 16px/24px var(--f1);
    --title: bold 48px/48px var(--f1);
    
}

/* RESET */
body,
ul,
li,
ol,
form,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
p {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

input,
textarea,
select {
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

* {
    outline: none !important;
}



ul {
    list-style-type: none;
}

body {
    font: var(--text);
    color: var(--black)
}

body * {
    box-sizing: border-box;
    outline: 0
}

a {
    text-decoration: none;
    outline: none;
    color: var(--black);
    transition: all ease-in-out .4s;
}

img {
    border: none;
}

p {
    margin-bottom: 33px
}



/* CLASS */
.clear {
    clear: both;
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.clr:after {
    content: '';
    display: table;
    width: 100%;
    clear: both
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px
}

.slick-dots button {
    font-size: 0;
    line-height: 0;
    text-indent: -99999;
    width: 15px;
    height: 15px;
    border: 2px solid var(--white);
    background: transparent;
    border-radius: 50%;
    padding: 0;
}

.container {
    max-width: 100%;
    padding: 0 60px;
    margin: auto;
    width: 100%;
}

.slick-dots li {
    margin: 0 5px;
    font-size: 0;
    line-height: 0;
    text-indent: -99999
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.slick-dots li.slick-active button {
    background-color: var(--white);
}

.title {
    font: var(--f1);
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

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

.flex-row-reverse {
    flex-direction: row-reverse;
}



.slick-dots li {
    display: inline-block;
    height: 22px;
    margin: 0 5px
}
.btn {
    transition: all ease-in-out .4s
}


.btn {
    display: inline-block;
    padding: 20px 50px 20px 50px;
    font: normal 16px/20px var(--f1);
    font-weight: 600;
    background: var(--white);
    position: relative;
    text-align: center;
    color: var(--green);
    text-align: center;
    border-radius: 0 30px 30px 30px;
    min-width: 240px;
}
.btn:hover {
    color: var(--white);
    background: var(--green);

}
.title {
    font: var(--title);
}

.text-center {
    text-align: center;
}
h1 {
    font: var(--title);
}

h2 {
    font: var(--title);
}

body.overflow {
    overflow: hidden;
}

/**** HEADER ****/

body {
    background:url(../images/bg.jpg) no-repeat center #273d39;
    background-size: cover;
    min-height: 100vh;
 
}

.main-header {
    padding: 30px 0;
}
.blc-logo {
    text-align: center;
}
.logo {
    display: block;
    max-width: 377px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}
.logo img {
    width: 100%;
}
.blc-lst-produits {
    padding-top: 35px;
    position: absolute;
    padding-bottom: 0;
    height:calc(100vh - 167px);
    z-index: 10;
    opacity: 0;
    z-index: -50;
    width: 100%;
    transition: all ease-in-out .3s;
}

.blc-lst-produits.active{
    opacity: 1;
    z-index: 55;
}

.blc-tab{
    position: relative;
    height: calc(100vh - 167px);
}

.list-tab{
    width: 100%;
}


.blc-lst-produits .container{
    height: 100%;
    padding-bottom: 134px;
}

.lst-produits li {
    text-align: center
}
.lst-produits li .img {
    display: block;
    margin:0 auto 4px;
    text-align: center;
    max-width: 250px
}
.lst-produits li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lst-produits li h2 {
    font-size: 24px;
    font-family: var(--f3);
    color: var(--white);
    text-transform: uppercase;;
    text-align: center;
    line-height: normal;
    font-weight: 900
}
.lst-produits li span {
    color: var(--white);
    font-size: 20px;
    font-family: var(--f2);
}
.blc-lst-produits .blcLeft {
    width: 70%;
    height: 100%;
}
.blc-lst-produits .blcRight {
    width: 30%;
    height: 100%;
}
.lst-produits ul {
    width: 100%;
    flex: wrap
}

.lst-produits ul li {
    width: 25%;
    margin-bottom: 40px
}

#diffuseur .lst-produits ul li{
    margin-bottom: 30px;
}

#diffuseur .lst-produits ul li:nth-child(n+3){
    margin-bottom: 0;
}

#diffuseur  ul li{
    width: 50%;
}

#diffuseur  ul{
    max-width: 800px;
    margin:auto;
    width: 100%;
}

.img-details {
    text-align: center;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.img-details h2 {
    font-size: 50px;
    text-transform: uppercase;
    font-family:var(--f3); 
    color: var(--white);
    margin-bottom: 10px
}
.img-details .titre {
    margin-bottom: 20px;
}
.img-details .img {
    max-width: 500px;
    margin: 0 auto 0;
    height: 60%;
    
}
.img-details .infos-right{
    height: 40%;
}

.img-details .img img {
    width: 100%;
    height: 100%;
        object-fit: contain;
    object-position: bottom;
}
.img-details .titre span {
    font-size: 35px;
    font-family: var(--f2);
    display: block;
    line-height: normal;
}

 .blcBtn {
    position: absolute;
    bottom: 0;
    right: 60px;
    display: flex;
    gap: 13px;
    align-items: end;
    z-index: 100;
}
 .blcBtn a {
    border-radius: 20px 20px 0 0;
    background-color: var(--green);
    color: var(--white);
    padding: 15px 30px 10px;
    text-transform: uppercase;
    transition: all ease-in-out .4s;
    height: 65px;
    display: inline-flex;
    align-items: center;
    border: #fff solid 2px;
    font-family: var(--f1);
    font-weight: 600;
    border-bottom: none;
    font-size: 18px;
    justify-content: center;
    text-align: center;


}
 .blcBtn a:hover {
    background-color: var(--white);
    color: var(--green);
    height: 100px;


}
 .blcBtn a.active {
    background-color: var(--white);
    color: var(--green);
    height: 100px;
}

.my-scroll-container {
  height:100%;
 
}
    


.mCSB_buttonUp {
    background-image: url('../images/arw-t.png') !important;
    background-size: cover;
    background-repeat: no-repeat !important;
    width: 42px !important;
    height: 24px !important;
    background-position: center !important;
    opacity: 1 !important;
}

.mCSB_buttonDown {
    background-image: url('../images/arw-b.png') !important;
    background-size: cover;
    background-repeat: no-repeat !important;
    width: 42px !important;
    height: 24px !important;
    background-position: center !important;
    opacity: 1 !important;
}
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(255,255,255,.15) !important;
    width: 6px !important;
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: url(../images/ico.png) !important;
    width: 42px !important;
    height: 42px !important 

}
.mCSB_scrollTools {
    width: 42px !important
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 60px 0 !important;
}

.blc-details {
    padding-top: 23px;
}

.blc-details h1,
.blc-details h2 {
    color: var(--white);
    line-height: normal;
}
.blc-details h1 {
    font-family: var(--f3);
    font-size: 50px
}
.blc-details h2 {
    font-family: var(--f2);
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: normal;
}
.blc-details .blcLeft {
    width: 770px;
    padding: 0 60px;
    height: calc(100vh - 200px);
}

.blc-details .blcLeft .inner{
    max-width:650px;
    margin:auto;
    width: 100%;
}



.blc-details .blcRight {
    width: calc(100% - 770px);
    padding:14px 60px 0 0
}

.blcImg-thumb .img {
    width: 100%
}

.blcImg-thumb .img img {
    width: 100%
}
.blc-details .blcImg {
    margin-bottom: 40px
}
.blc-details .blcImg .img {
    border-radius: 10px;
    overflow: hidden;
}
.blc-details .blcImg .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-position: cover
}

.blcImg-thumb {
    margin: 0 -20px
}

.blcImg-thumb .img {
   border-radius: 10px;
   overflow: hidden;
   border: 6px solid transparent;
   cursor: pointer;
   position: relative;
   height: 150px;
}
.blcImg-thumb .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blcImg-thumb .img .ico-play {
    background: url(../images/play.png) no-repeat center;
    width: 40px;
    height: 40px;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto
}



.blcImg-thumb .slick-current .img {
    border-color: var(--blue)
}
.blcImg-thumb  .item {
    padding: 0 20px
}
.blcImg-thumb {
    margin-bottom: 30px
}

.accordion .card {
    border-bottom: #fff solid 1px;
    margin-bottom: 40px;
}

.accordion .card h3 {
    cursor: pointer;
    color: var(--white);
    font-family: var(--f1);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    line-height: normal;
}
.accordion .card h3:after {
    content: "";
    background: url(../images/arw.png);
    width: 16px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s
}
.accordion__title.accordion-active h3:after {
    transform: rotate(-180deg);
}
.accordion .card p,
.accordion .card ul{
    color: var(--white);
    font-size: 16px;
    line-height: 30px
}

.accordion .card ul{
    margin-bottom: 33px;
}

.accordion .card ul strong{
    font-weight: bold;
}


.accordion__item .accordion__content {
    display: none;
}

.accordion__content.show {
    display: block;
}

.blcTable h4 {
    color: #fff;
    font-family: var(--f1);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 24px
}
.lstComposition {
    display: flex;
    margin-bottom: 40px
}
.lstComposition .item {
    width: 33.33%;
    padding: 0 2px;
    display: flex;
}
.lstComposition .item .inner {
    background-color: rgba(255,255,255,0.15);
    border-radius: 10px;
    width: 100%
}

.lstComposition .item .inner h5 {
    padding: 28px 20px;
    background-color: var(--blue);
    font-weight: 600;
    text-align: center;
    color: var(--white);
    border-radius: 10px 10px 0 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lstComposition .item .inner .txt {
    padding: 30px 25px
  
}
.lstComposition .item .inner .txt p {
    margin-bottom: 0
}
.lstComposition .item .inner .txt.texte-center {
    text-align: center;
}
.accordion {
    border-top: #fff solid 1px;
    padding-top: 34px;
}
.blc-details .container {
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 40;
}

.blc-details .blcImg video {
    width: 100%;
}

.blc-details .blcImg .img {
    height: 380px;
    width: 100%;
    display:block;
    position: relative;
}

.blc-details .blcImg .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    height: 380px;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: #000
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 200ms ease-in-out;
    z-index: 100;
    cursor: pointer;
    background: url(../images/play.png) no-repeat center;
    cursor: pointer;
    border: none
}
.play-btn:hover {
    opacity: 1;
}
.playing {
    background-image: none;
}
.playing:hover {
    background-image: none;
}
.head-details {
    padding: 0 60px;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 90px;
    align-items: center;
    z-index: 50;
}

.head-details  .titre-Left span {
    color: #fff;
    text-transform: uppercase;
}

.blc-details .my-scroll-container {
        height: calc(100vh - 240px);

}

.blc-details .mCSB_inside > .mCSB_container {
    margin-right: 30px;
    padding-left: 100px;
}




.blc-details  #mCSB_1_scrollbar_vertical {
    left: 0  !important;
    right: auto !important;
}

.blc-details .mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.blc-details .mCSB_inside > .mCSB_container.mCS_y_hidden{
        padding-left: 0;
}

@media (max-width:1800px) {  
.blc-details h1 {
        font-size: 42px;
    }
    .blc-details h2 {
        font-size: 40px;
        margin-bottom: 15px
    }

    .blcBtn a{
        width: 250px;
    }

}




@media (max-width:1530px) { 
    .blc-tab{
        height: calc(100vh - 111px);
    } 
    .container {
        padding: 0 40px;
    }
    .main-header {
        padding: 17px 0;
    }
    .logo {
        max-width: 265px;
    }
    .blc-lst-produits {
        padding-top: 25px;
    }
    .lst-produits ul li {
        margin-bottom: 25px;
    }
    .lst-produits li .img {
        max-width: 160px
    }
    .lst-produits li h2 {
        font-size: 16px;
        line-height: normal;
    }
    .lst-produits li span {
        font-size: 14px
    }
    .img-details .img {
        margin: 0 auto ;
    }
    .img-details h2 {
        font-size: 40px;
        margin-bottom: 0;
        line-height: normal;
    }
    .img-details .titre span {
        font-size: 30px;
    }
    .img-details .titre {
        margin-bottom: 12px;
    }
    .btn {
        padding: 10px 30px 10px 30px;
        font: bold 16px/22px var(--f1);
        border-radius: 0 20px 20px 20px;
        min-width: 170px;
    }
     .blcBtn a {
        height: 60px;
        font-size: 14px;
        width: 200px;
        padding: 15px 20px 10px;
    }
     .blcBtn a.active {
        height: 85px;
    }
     .blcBtn a:hover {
        height: 85px;
    }

   /* .my-scroll-container {
      height: calc(100vh - 314px);
     
    }*/
    .mCSB_buttonUp, .mCSB_buttonDown {
        width: 26px !important;
        height: 16px !important;
       
    }
    .mCSB_scrollTools {
        width: 26px !important;
    }
    .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 26px !important;
        height: 26px !important;
        background-size: cover !important;
    }
     .blcBtn {
        right: 20px
    }

    .blc-details .blcLeft {
        padding: 0 0 0 40px;
    }
    .blc-details .blcRight {
        padding: 14px 40px 0;
    }
    
    .accordion {

        padding-top: 26px;
    }
    .accordion .card h3 {
        font-size: 20px;
        margin-bottom: 15px
    }
    .accordion .card p {
        font-size: 14px;
        line-height: normal;
    }
    .blcTable h4 {
        font-size: 16px;
    }
    .lstComposition .item .inner h5 {
        padding: 14px 10px;
        font-size: 14px;
    }
    .lstComposition .item .inner .txt {
        padding: 19px 15px;
    }
    .lstComposition {
        margin-bottom: 20px;
    }

    .accordion .card {
        
        margin-bottom: 20px;
    }
    .blc-details .blcImg {
        margin-bottom: 20px;
    }
    .blcImg-thumb .item {
        padding: 0 10px;
    }
    .blcImg-thumb {
        margin: 0 -10px;
    }
    .blc-details .blcLeft {
        padding: 0 0 0 40px;
        width: 50%;
    }
    .blc-details .blcRight {
        padding: 14px 40px 0;
        width: 50%;
    }

    .blc-details .blcLeft .inner{
        max-width: 100%;
    }

    .blc-details .blcImg .img {
        height: 350px;
        width: 100%;
    }
    .video-container {
        height: 350px
    }
    .blcImg-thumb .img {
        border-width: 3px;
        height: 145px
    }
    .head-details {
        top: 50px;
    }
 /*   .blc-details .my-scroll-container {
        height: 650px;
    }*/
    .blc-details .mCSB_inside > .mCSB_container {
        padding-left: 65px;
    }
    .blc-details {
        padding-bottom: 40px;
    }
    .head-details {
        padding: 0 20px;
    }

    .blc-lst-produits {
        height: calc(100vh - 111px);
    }




}

@media (max-width:1200px) { 
    .blc-details .blcImg .img{
        height: 330px;
    }
    .blc-details .my-scroll-container {
    height: calc(100vh - 218px);
    }
}


@media (max-width:1024px) { 
    .lstComposition .item .inner h5 {
        font-size: 12px;
        line-height: normal;
    }
    .lstComposition .item .inner .txt p {
        font-size: 12px;
    }
    .lstComposition .item .inner .txt {
        padding: 15px 10px;
    }
    .blc-details h1 {
        font-size: 30px;
    }
    .blc-details h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

        .blcImg-thumb .img {
            height: 110px;
        }



}


@media (max-width:991px) {

    .img-details .img {
        max-width: 250px;
       
    }
    .lst-produits ul li {
        width: 33.33%;
        margin-bottom: 20px;
    }
    .img-details h2 {
        font-size: 30px;

    }
    .img-details .titre span {
        font-size: 25px;
    }
    /*.my-scroll-container {
      height: 660px;
     
    }*/
     .blcBtn a {
        padding: 15px 20px;
        width: 200px;
        text-align: center;
    }
    .blc-details .blcLeft {
        padding: 0 20px 30px 20px;
        width: 100%
    }
    .blc-details .blcRight {
        width: 100%;
        padding: 0 20px
    }
    .head-details {
        padding: 0 20px 20px;
    }
    .blc-details .mCSB_inside > .mCSB_container {
        padding-left: 0;
          margin-right: 0;
    }
    .blc-details .my-scroll-container {
        height: auto;
    }
    .blc-details .blcLeft{
        height: auto;
    }
    .blc-details .blcLeft .inner{
        max-width: 100%;
    }

    .blcImg-thumb .img{
        height: 130px;
    }
    
    
}
 @media (max-width:767px) {
    .blc-lst-produits .blcLeft {
        width: 100%;
    }
    .my-scroll-container {
        height: 456px;
    }
    .blc-lst-produits .blcRight{
        width: 100%;
        margin-top: 20px;
    }
    .blc-lst-produits {
        padding-bottom: 0;
    }
    .blc-details .blcLeft {
        padding: 0 20px 30px 20px;
        width: 100%
    }
    .blc-details .blcRight {
        width: 100%;
        padding: 0 20px
    }
    .blc-details {
        padding-top: 10px;
        padding-bottom: 40px
    }
    .head-details {
        position: relative;
        top: inherit;
    }
    .blc-lst-produits{
        height: auto;
    }
    .blc-lst-produits{
        position: relative;
        opacity: 1;
        display: none;
    }

     .blc-lst-produits.active{
        display: block;
     }
     .blc-tab{
        height: auto;
     }

     .blcBtn{
        left: 0;
        right: 0;
        justify-content: center;
     }

}


@media (max-width:600px) { 
    .container {
        padding: 0 20px;
    }
    .lst-produits ul li {
        width: 50%;
    }
     .blcBtn {
        right: 20px;
        left: 20px;
    }
    .blc-details .blcLeft {
        padding: 0 20px 0 20px;    
    }
    .blc-details .blcRight {
        padding: 14px 20px 0;
    }
    .blc-details h1 {
        font-size: 30px;
    }
    .blc-details h2 {
        font-size: 30px;
    }
    .lstComposition .item {
        width: 100%;
        margin-bottom: 10px
    }
    .lstComposition {
        flex-direction: column;
    }
    .accordion .card h3 {
        font-size: 16px;
    }


}
























  

    
 

 