/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #694c2c;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
.container {
        max-width: 1140px !important;
}
a{
    text-decoration: none !important;
}
a:focus {
    outline: 0px;
    outline-offset: 0px;
}
img {
    max-width: 100%;
}
.hiding { opacity: 0; }
.visible { opacity: 1; }
.header_strip {
  background: #f2f2f2 50%;
  background: -webkit-linear-gradient(top, #f2f2f2 50%, #e6e6e6 50%);
  background: linear-gradient(to bottom, #f2f2f2 50%, #e6e6e6 50%);
  height: 75px;
  width: 100%;
  transition: ease .5s;
 }
 .header_strip .navbar-collapse {
    justify-content: center; 
}
.header_strip .navbar-collapse .main_nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-around;
  position: relative; 

}
.header_strip .navbar-collapse .main_nav li a {
    display: block;
    font-size: 16px;
    color: #6b4b2d;
    text-transform: uppercase;
    font-weight: 400; 
    font-family: "Montserrat", sans-serif;
    padding: 0px 15px;
}
.header_strip .navbar-collapse .main_nav li a:hover, .header_strip .navbar-collapse .main_nav li a.active {
    color: #e52b1f; 
}
.header_strip.sticky-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
    z-index: 99;
}
ul.main_nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.header_strip .social {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: flex-end; 
}
.header_strip .social li a {
    display: block;
    font-size: 30px;
    color: #aeaeae;
    margin: 0px 15px;
}
.header_strip .social li a:hover, .header_strip .social li a:focus {
        color: #6b4b2d; 
}
div#main-navigation {
    padding-left: 40px;
    padding-right: 40px;
}
.header_strip .social li a {
    height: 40px;
    width: 40px;
    border: 1px solid #F7E9C9;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    color: #4D2D24;
}
ul.social {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.section_heading h1{
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 64px;
    margin-bottom: 20px;
}
.section_heading p{
    text-align: center;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.home_banner {
    background: #3F1F03;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
    position: relative;
}
.home_banner:after {
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -90px;
    transform: rotate(180deg);
   -webkit-transform: rotate(180deg);
}
.brand_box {
      position: relative;
      margin-top: 50px;
      z-index: 1;
      display: -webkit-flex;
      display: -moz-flex;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; 
      margin-bottom: 40px;
}
.brand_box .shape_morph {
    height: 180px;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    width: 210px;
    z-index: 5;
    background: #fff;
    z-index: -1;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center; 
    justify-content: center;
    position: relative;
    z-index: 1;
}
.brand_box .shape_morph.blob {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: morph 8s ease-in-out infinite;
      -webkit-animation: morph 8s ease-in-out infinite;
      -ms-animation: morph 8s ease-in-out infinite; 
}
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 
}
.brand_box p {
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-top: 45px;
    transition: .3s ease;
}
.brand_box p:after {
    content: '';
    width: 25px;
    height: 2px;
    display: block;
    margin: 10px auto;
    background: transparent;
}
.brand_box:hover p:after {
    background: #e52b1f;
}
.brand_box img {
    transition: .3s ease;
    height: 200px;
    object-fit: contain;
    transition: .3s ease;
}
.brand_box:hover img {
    transform: scale(1.9);
}
.brand_box:hover p{
    margin-top: 100px;
}
.gallery_section a {
    display: block;
    margin: 15px 0px;
}
.section_padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.kider_social h1{
    color: #663300;
    margin: 0px 0px 20px;
    font-weight: 300;
    font-size: 40px;
    font-family: 'Montserrat';
}
.social_section {
      position: relative;
      background: #f6eade;
      text-align: center;
      padding: 80px 0px 0; 
      overflow: hidden;
}
.social_section:before {
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -50px; 
}
.social_section .kider_social {
    text-align: center; 
}
.social_section .kider_social p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
    padding: 0px 25%; 
    color: #694c2c;
    font-family: 'Montserrat';
}
.social_section .kider_social .social_like_btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    width: 100%;
    background: #271401;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    text-align: left;
    padding: 0px 20px;
    margin-bottom: 20px; 
    font-family: 'Montserrat';
}
.social_section .kider_social .social_like_btn:hover, .social_section .kider_social .social_like_btn:focus {
    background: #482603;
    color: #fff; 
}
.social_section .kider_social .social_like_btn .fas {
    margin-left: auto; 
}
.social_section .kider_social .choco_img {
    margin-top: 50px; 
}
.choco_img img{
    margin: auto;
}
.footer {
    background: #271401;
    height: 100px;
    font-size: 16px;
    color: #fff;
    margin-top: 0;
    position: relative;
    z-index: 999;
    font-family: 'Montserrat';
}
.footer .quick_links a {
    color: #fff; 
}
.quick_links.ml-auto {
    margin-left: auto;
}


/*content css*/
.content {
    max-width: 1140px;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 80px;
}
.content h2{
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #663300;
    margin-bottom: 40px;
}
.content p{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #694c2c;
}


/* brand page css*/

.product_Section {
    background: #FFE3CA;
    position: relative;
}
.brand_blob {
  margin: 50px 0px;
}
.brand_blob .shape_morph {
    height: 372px;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    width: 484px;
    z-index: 5;
    background: #fff;
    z-index: -1;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center; 
    justify-content: center;
}
.brand_blob .shape_morph img {
    transition: transform .5s ease;
    margin: auto; 
}
.brand_blob .shape_morph.blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    -webkit-animation: morph 8s ease-in-out infinite;
    -ms-animation: morph 8s ease-in-out infinite;
}
.brand_details h2 {
    color: #5A3600;
    font-family: "Montserrat", Sans-serif;
    font-size: 44px;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
}
.brand_details p{
    color: #5A3600;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
    max-width: 480px;
    font-family: 'Montserrat' ;
}
/*.product_Section:after {
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -90px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}*/
.product_Section.raffaello_bg {
    background: #F4F4F4;    
    position: relative;
}
.product_Section.raffaello_bg .brand_details h2 {
    color: #E52B1F;
}
.product_Section.randnoir_bg {
    background: #271606;
}
.product_Section.randnoir_bg  .brand_blob .shape_morph img {
    width: 230px;
}
.product_Section.randnoir_bg  .brand_details h2{
    color: #fff !important;
}
.product_Section.randnoir_bg  .brand_details p{
    color: #fff;
}
.available_products {
    background: #ffffffb0;
    padding-bottom: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0px 10px;
}
.available_products p{
    text-align: center;
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 20px;
}
.available_products a img {
   width: 240px;
    height: 100%;
    object-fit: contain;
    margin: auto;
}
#block-ferroero-views-block-brand-related-product-block-1:after, section#block-ferroero-views-block-rocher-brand-product-block-1:after{
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -90px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.product_images {
    display: block;
    background: #fff;
    padding: 13px;
    transition: opacity .3s;
    height: 250px;
    width: 100%;
    object-fit: contain;
}
#block-ferroero-views-block-brand-related-product-block-1, #block-ferroero-views-block-rocher-brand-product-block-1 {
  background: #ffe3ca;
    position: relative;
    padding-bottom: 160px;
}
#block-ferroero-views-block-raffaello-brand-product-block-1{
    background: #F4F4F4;
    position: relative;
    padding-bottom: 160px;
}
#block-ferroero-views-block-raffaello-brand-product-block-1:after{
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -90px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
#block-ferroero-views-block-raffaello-brand-product-block-1 .available_products p {
    color: #E52B1F;
}
#block-ferroero-views-block-collection-brand-product-block-1{
    background: #ffe3ca;
    position: relative;
    padding-bottom: 160px;
}
#block-ferroero-views-block-collection-brand-product-block-1:after, #block-ferroero-views-block-rondnoir-brand-product-block-1:after{
    content: '';
    background: url(../images/scratch.png) repeat-x center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 149px;
    width: 100%;
    margin-bottom: -90px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
#block-ferroero-views-block-rondnoir-brand-product-block-1 {
    background: #271606;
    position: relative;
    padding-bottom: 160px;
}
.default_product_slider .slick-dots li.slick-active:after{
    content: '';
    border: solid 1px #E52B1F;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -7px;
    left: -7px;
    padding: 10px;
    border-radius: 50px;

}
.default_product_slider .slick-dots li {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50px;
    margin: 0 10px;
}
.default_product_slider .slick-dots {
    bottom: -90px;
}
.default_product_slider .slick-dots li.slick-active{
    background: #fff;
}
.common_gallery_slider .field.field--name-field-gallery-images.field--type-image.field--label-above{
    margin-bottom: 20px;
}

/*barras page css*/

.barrs_page_section {
    background: url(../images/bg-barras.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}
.braas_box-content {
    background: #FFFBDE57;
    padding: 40px;
}
.braas_box-content h2{
    color: #231F20;
    font-family: "Montserrat", Sans-serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 20px;
}
.braas_box-content h4{
    color: #6B3B19;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
}
.braas_box-content p{
    text-align: left;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    padding-top: 30px;
    color: #694c2c;
}
.ferrero_img1{
    position: absolute;
    left: 0px;
    animation: floating1 2s ease-in-out infinite;
}
.ferrero_img2{
    position: absolute;
    left: 170px;
    z-index: 4;
    margin-top: 40px;
    animation: floating2 3s ease-in-out infinite;
}
.ferrero_img3{
    position: absolute;
    right: 174px;
    z-index: 0;
    animation: floating3 3s ease-in-out infinite;
}
.ferrero_img4{
    position: absolute;
    right: -25px;
    margin-top: 60px;
    animation: floating4 2s ease-in-out infinite;
}
@keyframes floating1 {
  0% {
    transform: translatey(0px);
  }
  60% {
    transform: translatey(10px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes floating2 {
  0% {
    transform: translatey(0px);
  }
  40% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@-webkit-keyframes floating3 {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-25px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes floating4 {
  0% {
    transform: translatey(0px);
  }
  60% {
    transform: translatey(-30px);
  }
  100% {
    transform: translatey(0px);
  }
}
.ferros_bars_pr {
    margin: auto;
    max-width: 780px;
    position: relative;
}
.flayer-cholates-section {
    min-height: 400px;
    margin-top: 80px;
    margin-bottom: 30px;
    background: url(../images/stream.png);
    background-repeat: no-repeat;
    background-size: cover;
}
 .video-container {
    position: relative;
    width: 440px;
    height: 247px;
    border: solid 8px #fff;
    box-shadow: 0px 3px 12px rgb(0, 0, 0, 16%);
    margin-left: 40px;
}

.thumbnail-video {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.thumbnail-video img {
    width: 100%;
    height: 100%;
    display: block;
}
#video
    {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
}
.play-icon {
    position: absolute;
    top: 70%;
    left: 84%;
    font-size: 16px;
    color: white;
    display: block;
    padding: 8px 12px;
    border: solid 3px;
    border-radius: 50px;
}
section.content-section {
    margin-bottom: 80px;
    margin-top: 80px;
}




/*Responsive css*/


@media only screen and (max-width: 767px){
    .navbar-toggler .navbar-toggler-icon{
    left: auto;
    right: 0;
    }
    .navbar-toggler .navbar-toggler-icon:first-child{
        transform: rotate(45deg);
        width: 20px;
        left: 21px;
        right: 0;
        top: 15px;
        position: absolute;
    }
    .navbar-toggler .navbar-toggler-icon:last-child{
        transform: rotate(-45deg);
        width: 20px;
        left: auto;
        right: 0;
        bottom: 11px;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon:first-child{
       transform: rotate(0);
        width: 25px;
        top: 0px;
        margin-left: -4px;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon:last-child{
        transform: rotate(0);
        width: 15px;
        bottom: 0px;
    }
    .navbar-toggler .navbar-toggler-icon:nth-child(2){
        display: none;
        width: 21px;
        position: relative;
        left: 10px;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2){
        display: block;
    }
    .header_strip .navbar-toggler{
        margin-left: auto;
    }
    .mobile_flex {
        height: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
        align-items: center; }
      .header_strip .navbar-toggler {
        color: #663300;
        display: block;
        margin-left: auto;
        padding: 9px 10px;
        background: transparent; 
    }
      .navbar-toggler {
        background-color: transparent;
        margin-right: 0;
        position: relative; 
        margin-right: 20px;
    }
    .navbar-toggler .navbar-toggler-icon {
        width: 30px;
        margin: 0;
        background-color: #663300;
        -webkit-transition: .3s;
        transition: .3s;
        height: 2px;
        display: block; 
    }
    div#main-navigation {
        padding-left: 0px;
        padding-right: 0px;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon:first-child {
        margin-top: 6px;
    }
    .navbar-toggler .navbar-toggler-icon + .navbar-toggler-icon {
        margin-top: 6px;
    }
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }
    .navbar-toggler .navbar-toggler-icon:last-child {
        margin-left: 10px;
        margin-bottom: 9px;
        
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .navbar-toggler.collapsed .navbar-toggler-icon:last-child {
        margin-left: 26px;
        margin-bottom: 0px;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    #navbarResponsive {
        padding-left: 0px !important;
        padding-right: 0px !important;
        background: #fff;
        width: 100%;
        position: absolute;
        z-index: 3;
        left: 0px;
        width: 100%;
    }
    .navbar-collapse.in {
        overflow-y: auto;
        display: block !important;
    }
    ul.main_nav {
        text-align: left;
        margin: 0;
        z-index: 1;
        top: 0px;
        width: 100%;
        left: 0px;
        display: block !important;
        padding: 30px;
    }
    .header_strip .navbar-collapse .main_nav li a {
        display: block;
        font-size: 16px;
        color: #6b4b2d;
        text-transform: capitalize;
        font-weight: 300;
        font-family: "Montserrat", sans-serif;
        padding: 0px 0px;
    }
    .header_strip li.nav-item {
        padding-bottom: 15px;
        border-bottom: 1px solid #F7E9C9;
        margin-bottom: 15px;
        position: relative;
    }
    .header_strip .navbar-collapse .main_nav li:after {
        content: '';
        background: url(../images/menu_caret.svg) no-repeat;
        width: 15px;
        height: 18px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -16px;
    }
    .home_banner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section_heading h1 {
        font-size: 32px;
        font-weight: 300;
        line-height: 38px;
        margin-bottom: 20px;
    }
    .brand_box .shape_morph {
        width: 160px;
        height: 160px;
    }
    .brand_box:hover img {
        transform: scale(1.0);
    }
    .brand_box:hover p {
        margin-top: 45px;
    }
    .brand_box p {
        font-size: 16px;
        font-weight: 500;
        margin-top: 45px;
    }
    .common_gallery_slider img{
        padding: 10px;
    }
    .common_gallery_slider .field.field--name-field-gallery-images.field--type-image.field--label-above {
        margin-bottom: 0px;
    }
    .social_section .kider_social p {
        padding: 0px 20px;
    }
    .social_section .kider_social {
        text-align: center;
        padding: 0px 10px;
    }
    .social_section .kider_social .choco_img {
        margin-top: 30px;
        margin-bottom: -15px;
    }
    .copyright {
        text-align: center;
    }
    .footer {
        font-size: 18px;
        font-family: 'Montserrat';
        height: auto;
    }
    .quick_links.ml-auto {
        margin-right: auto;
        margin-top: 15px;
    }
    .col-md-12.d-flex {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .header_strip .social {
        justify-content: center;
        margin-bottom: 30px;
        margin-top: -20px;
    }
    .logo {
        margin-left: 15px;
    }
    .section_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .brand_blob .shape_morph{
        height: 330px;
        width: 320px;
        margin: auto;
    }
    .brand_details h2{
        font-size: 32px;
    }
    .brand_details {
        margin-top: 40px;
        padding: 20px;
    }
    .brand_details p {
        font-size: 17px;
    }
    .brand_blob {
        margin: 0px 0px;
    }
    .default_product_slider .slick-dots {
        bottom: -50px;
    }
    #block-ferroero-views-block-brand-related-product-block-1, #block-ferroero-views-block-rocher-brand-product-block-1 {
        padding-bottom: 100px;
    }
    #block-ferroero-views-block-raffaello-brand-product-block-1 {
        padding-bottom: 100px;
    }
    #block-ferroero-views-block-collection-brand-product-block-1{
        padding-bottom: 100px;
    }
    #block-ferroero-views-block-rondnoir-brand-product-block-1 {
        padding-bottom: 100px;
    }
    .braas_box-content h2 {
        font-size: 18px;
    }
    .braas_box-content p {
            font-size: 16px;
            font-weight: 500;
            line-height: 27px;
            padding-top: 10px;
    }
    .video-container {
        position: relative;
        width: 360px;
        height: 247px;
        border: solid 4px #fff;
        box-shadow: 0px 3px 12px rgb(0, 0, 0, 16%);
        margin-left: 0px;
        margin-top: 30px;
    }
    .ferrero_img1 {
        position: absolute;
        left: 0px;
        animation: floating1 2s ease-in-out infinite;
        width: 120px !important;
    }
        .ferrero_img2 {
        position: absolute;
        left: 83px;
        z-index: 4;
        margin-top: 40px;
        animation: floating2 3s ease-in-out infinite;
        width: 120px !important;
    }
    .ferrero_img3 {
        position: absolute;
        right: 80px;
        z-index: 0;
        animation: floating3 3s ease-in-out infinite;
        width: 120px !important;
    }
    .ferrero_img4 {
        position: absolute;
        right: 0px;
        margin-top: 60px;
        animation: floating4 2s ease-in-out infinite;
        width: 120px !important;
    }
    .flayer-cholates-section {
        min-height: 130px;
        margin-top: 80px;
        margin-bottom: 50px;
    }
    .ferros_bars_pr {
        margin: auto;
        max-width: 370px;
        position: relative;
    }
    .content {
        max-width: 1440px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 70px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .copyright {
        text-align: center;
        order: 1;
        margin-top: 15px;
    }
        /*    .hiding { opacity: 1; }*/
    .product_Section.randnoir_bg .brand_blob .shape_morph img {
        width: 190px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_strip .social li a {
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 15px;
        color: #4D2D24;
        margin: 0px 6px;
    }
    .header_strip .navbar-collapse .main_nav li a {
        display: block;
        font-size: 10px;
        color: #6b4b2d;
        text-transform: uppercase;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        padding: 0px 5px;
    }
    .brand_blob .shape_morph {
        height: 320px;
        width: 320px;
    }
    #main-navigation {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .brand_box:hover p {
        margin-top: 45px;
    }
    .brand_box:hover img {
        transform: scale(1.2);
    }

}
@media only screen and (min-width: 992px) and (max-width: 1120px) 
{
    .header_strip .navbar-collapse .main_nav li a {
        display: block;
        font-size: 12px;
        color: #6b4b2d;
        text-transform: uppercase;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        padding: 0px 5px;
    }
}

@media only screen and (min-width: 1121px) and (max-width: 1320px) 
{
    .header_strip .navbar-collapse .main_nav li a {
        display: block;
        font-size: 14px;
        color: #6b4b2d;
        text-transform: uppercase;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        padding: 0px 10px;
    }
}


/*valentine day css */

.valtine_banner {
    background: url(../images/valentine_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 710px;
    position: relative;
}
.heart-img {
    position: absolute;
    left: -80px;
    bottom: -37px;
}
.heart-img2{
    position: absolute;
    left: 20px;
    width: 405px;
    bottom: 285px;
    z-index: 1;
}
.heart-img3 {
    position: absolute;
    top: 30px;
    left: 352px;
    width: 324px;
}
.heart-img4 {
    position: absolute;
    bottom: 25px;
    right: 100px;
}
.bg_text_valentine {
    position: absolute;
    right: 0px;
    text-align: center;
    display: inline-table;
    left: 60px;
    z-index: 2;
    margin: auto;
    padding-top: 140px;
}

@media only screen and (max-width: 767px){
    .heart-img {
        position: absolute;
        left: -80px;
        bottom: -37px;
        width: 252px;
    }
    .heart-img2 {
        position: absolute;
        left: 8px;
        width: 206px;
        bottom: 150px;
        z-index: 1;
    }
    .heart-img3 {
        position: absolute;
        top: 0px;
        left: -20px;
        width: 190px;
    }
    .bg_text_valentine {
        position: absolute;
        right: 0px;
        text-align: center;
        display: inline-table;
        left: 0px;
        z-index: 2;
        margin: auto;
        padding-top: 190px;
        width: 270px;
    }
    .heart-img4 {
        position: absolute;
        bottom: 30px;
        right: -1px;
        width: 190px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1320px) {
    .heart-img {
        position: absolute;
        left: -80px;
        bottom: -37px;
        width: 330px;
    }
    .heart-img2 {
        position: absolute;
        left: 20px;
        width: 260px;
        bottom: 182px;
        z-index: 1;
    }
    .heart-img3 {
        position: absolute;
        top: 62px;
        left: -26px;
        width: 242px;
    }
    .bg_text_valentine {
        position: absolute;
        right: 0px;
        text-align: center;
        display: inline-table;
        left: 60px;
        z-index: 2;
        margin: auto;
        padding-top: 140px;
        width: 280px;
    }
    .heart-img4 {
        position: absolute;
        bottom: 25px;
        right: 50px;
        width: 300px;
    }
}

@media only screen and (min-width: 1321px) and (max-width: 1580px) {
    .heart-img {
        left: -80px;
        bottom: -37px;
        width: 400px;
    }
    .heart-img2 {
        left: 20px;
        width: 319px;
        bottom: 217px;
        z-index: 1;
    }
    .heart-img3 {
        top: 126px;
        left: 276px;
        width: 250px;
    }
    .bg_text_valentine {
        left: 110px;
    }
    .heart-img4 {
        width: 400px;
    }
}
