/* Fonts */
@font-face {
  font-family: 'Gotham Pro';
  src: url('/fonts/GothamPro-Bold.woff') format('woff'),
    url('/fonts/GothamPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('/fonts/GothamPro-Italic.woff') format('woff'),
    url('/fonts/GothamPro-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('/fonts/GothamPro-Medium.woff') format('woff'),
    url('/fonts/GothamPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('/fonts/GothamPro.woff') format('woff'),
    url('/fonts/GothamPro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-size: 37px;
  font-weight: 500 !important;
}

h2 {
  font-size: 30px !important;
  font-weight: 500 !important;
}

h3 {
  font-size: 24px !important;
  font-weight: bold;
}

p {
  line-height: 28px;
}

/*variable  */
:root {
  --gotham: 'Gotham Pro';
}

/* easy font apply */
.gotham {
  font-family: var(--gotham);
  text-rendering: geometricPrecision;
}

/* general */
.full-width-content {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* .main-content .container, .standard-body .main-content .container {
  padding-bottom: 19px;
}

.product-product .main-content .container, .product-product .standard-body .main-content .container {
  padding-bottom: 50px;
} */
.homepage .main-content .container, .homepage .standard-body .main-content .container {
  padding-bottom: 0;
}

.cd-top.cd-top--show {
  border-radius: 30px;
  width: 45px;
  height: 45px;
  left: 20px;
}

img.bor {
  border-radius: 15px;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--gotham);
}

a:hover, a:visited, a:focus {
  text-decoration: none;
}

.mobile_hidden {
  display: block !important;
}

.desktop_hidden {
  display: none !important;
}

/* Whatsapp */
.whatsapp-icon i {
  font-size: 26px;
}

.whatsapp-icon:hover {
  color: #ffffff !important;
  transform: translatey(-5px);
}

.whatsapp-icon {
  color: #fff;
  background: #38da56;
  border-radius: 50%;
  width: 50px;
  aspect-ratio: 1 / 1;
  /* animation: shadow-beat 1.5s infinite;
  animation-timing-function: linear; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
  right: 30px;
  z-index: 4;
}

@keyframes shadow-beat{
  0%{
      box-shadow: 0px 0px 0px  0px #38da56FF;
  }
  30%{
       box-shadow: 0px 0px 10x  10px #38da56AA;
  }
  60%{
       box-shadow: 0px 0px 20px  20px #38da5655;
  }
  90%,100%{
      box-shadow: 0px 0px 30px  30px #38da5600;
  }
}

/* Header */
.slider-header.is-sticky {
  box-shadow: 0 3px 1rem rgb(0 0 0 / 20%);
}

ul.megamenu>li>a strong {
  font-weight: 500;
}

ul.megamenu>li>a.active:before, ul.megamenu>li>a:before {
  display: none;
}

#header-right a[data-easydrawer-id="drawer-cart"] {
  width: 23px;
  position: relative;
  display: inline-flex;
}

#header-right a[data-easydrawer-id="drawer-cart"] span {
  position: absolute;
  font-size: 10px;
  height: 19px;
  width: 19px;
  background: #C41230;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: -8px;
  bottom: -5px;
  font-weight: 500;
}

#header-right>a {
  margin-left: 25px;
}

.search_form .smartsearch {
  width: 100% !important;
}

.smartsearch .smartsearch-product {
  display: flex !important;
  align-items: center;
}

.smartsearch a img {
  height: 68px;
  margin-left: 10px !important;
}

.smartsearch .smartsearch-product:hover {
  background: transparent !important;
  color: #1C3AD5;
}

.smartsearch .smartsearch-bottom {
  color: #333;
}

.mini-cart-info{
  height: 350px;
}

.drawer__content .mini-cart-info .name a{
    font-size: 13px;
    line-height: 20px !important;
    display: block;
}
.drawer__content .mini-cart-info .image{
    width: 35%;
}
.drawer__content .mini-cart-info td.total{
    padding: 0 10px
}
.drawer__content .mini-cart-info .quantity{
    padding: 0 12px 20px;
}

/* Preloader */
.preloader {
  align-items: center;
  background: #1a2674;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition-duration: 0.5s;
  width: 100%;
  z-index: 9999;
  opacity: 1;
  flex-wrap: nowrap;
  flex-direction: column;
}

.preloader img {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Button Animation */
.btn-main {
  border: 1px solid #1A2674;
  border-radius: 30px;
  padding: 13px 30px;
  font-weight: 500;
  color: #1A2674;
}

.btn-main:hover {
  background: #1A2674;
  color: #fff;
}

.btn_sect {
  margin-top: 25px;
}

/* Footer */
.footer{
  z-index: 2;
}
.footer .col-sm-3 {
  width: 33.3%;
}

.social-links {
  display: flex;
}

.social-links li {
  margin-right: 10px;
}

.our-brands {
  margin-top: 55px;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
}

.brand-list li {
  margin-bottom: 15px;
  width: 30%;
}

.brand-list li:nth-child(2), .brand-list li:nth-child(3), .brand-list li:nth-child(5)  {
  margin-left: 15px;
}

.footer-panel:nth-child(1) {
  order: 3;
}

.footer-panel:nth-child(2) {
  order: 2;
}

.footer h4, .custom-footer h4 {
  background: none !important;
  margin: 26px 0 5px;
}

.copy-left img{
  max-height: 32px;
}

.footer-info h5 {
  color: #fff;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500 !important;
}

.footer-iconlist {
  margin-top: 20px !important;
}

.footer-iconlist li {
  display: flex;
  margin-bottom: 10px;
}

.footer-iconlist li img {
  margin-right: 10px;
}

.footer-iconlist p {
  font-size: 14px;
}

.footer-info p.address {
  white-space: break-spaces;
  font-size: 15px;
  margin-top: 15px;
}

.o2o_prep {
  text-align: right;
}

.copyright .row {
  display: flex;
  align-items: center;
}

.copyright p {
  font-size: 13px;
  padding: 0 !important;
}

.copyright .pattern {
  padding: 20px 0;
}

.footer .pattern {
  padding: 30px 0 45px;
}

.footer .pattern a:hover {
  color: #0EAAB5;
}

/* Blog */
.blog-article .main-content .container, .blog-article .standard-body .main-content .container {
  padding-bottom: 0;
}

.ludoBlog table td{
  padding: 10px 15px;
}

/* Slideshow */
.caption {
  width: 100%;
  /* height: 100%; */
  display: flex;
  align-items: center;
  left: 0 !important;
}

.slider_element h1 {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin: 25px 0 15px;
}

.slider_element p {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 40px;
}

.slider_element a {
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 35px;
  border-radius: 30px;
}

.tp-bullets .bullet {
  background: #1A2674 !important;
  opacity: 0.3;
  border: none !important;
  width: 12px !important;
  height: 12px !important;
}

.tp-bullets .bullet.selected {
  opacity: 1 !important;
  background: #1A2674 !important;
  width: 25px !important;
}

.fullwidthbanner-container .tp-rightarrow, .fullwidthbanner-container .tp-leftarrow {
  border-radius: 30px;
  background: rgb(255 255 255 / 80%);
}

.fullwidthbanner-container .tp-leftarrow:before, .fullwidthbanner-container .tp-rightarrow:before {
  color: #000 !important;
}

/* Homepage */
.quality-sleep {
  background: #F1F5F7;
  margin-top: 35px;
  padding: 45px 30px 40px;
  position: relative;
}

.quality-sleep h1 {
  margin-bottom: 35px;
  text-align: center;
}

.quality-sleep>.container {
  padding-left: 30px !important;
  padding-right: 30px !important;
  position: relative;
}

.quality-sleep:before {
  content: url(/image/data/theme/text_block/sky-bg_080923165843.png);
  display: block;
  position: absolute;
  top: 0;
  right: -8%;
}

.quality-sleep .sect1 {
  padding: 70px 0;
}

.quality-sleep .sect1 .col-sm-7 {
  padding-left: 50px;
}

.quality-sleep .sect1 .col-sm-5 {
  padding-right: 40px;
}

.categry-home, .categry-home a {
  position: relative;
}

.categry-home .detal {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.categry-home img {
  border-radius: 15px;
}

.categry-home .detal a {
  color: #1A2674;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #1A2674;
  padding: 10px 25px;
  border-radius: 30px;
}

.categry-home:hover .detal a {
  background: #1A2674;
  color: #fff;
}

.categry-home:hover img {
  box-shadow: 0 0 13px rgb(23 23 23 / 20%);
}

.categry-home h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.categry-home {
  margin-bottom: 35px;
}

.mattress-collection {
  margin-top: 40px;
  margin-bottom: -1px;
}

.mattress-collection h1 {
  text-align: center;
  margin-bottom: 35px;
}

.matt-banner {
  position: relative;
}

.matt-banner img {
  position: relative;
  display: block;
  width: 100%;
}

.matt-banner:before {
  content: '';
  background: rgb(3 7 29 / 70%);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transition-property: top, opacity;
  transition-duration: 0.3s;
  z-index: 2;
}

.banner-det {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  margin: 0 auto;
  z-index: 3;
}

.matt-banner:hover:before {
  top: 0%;
}

.matt-banner:hover:before, .matt-banner:hover .banner-det h3, .matt-banner:hover .banner-det p, .matt-banner:hover .banner-det a {
  opacity: 1;
}

.matt-banner:hover .banner-det h3 {
  transition-delay: 0.15s;
}

.matt-banner:hover .banner-det p {
  transition-delay: 0.25s;
}

.matt-banner:hover .banner-det a {
  transition-delay: 0.35s;
}

.matt-banner:hover .banner-det a:hover {
  background: #C41230;
}

.banner-det h3, .banner-det p, .banner-det a {
  display: block;
  opacity: 0;
  position: relative;
  top: 100%;
  transition-property: top, opacity;
  transition-duration: 0.3s;
  transition-delay: 0s;
}

.banner-det h3 {
  color: #fff;
  font-weight: 500;
}

.banner-det p {
  color: #fff;
  margin-bottom: 15px;
}

.banner-det a {
  background: #1A2674;
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 20px;
  width: 50%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
}

.mattress-collection .owl-carousel {
  position: relative;
}

/* .mattress-collection .owl-next, .mattress-collection .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
} */
.mattress-collection .owl-nav {
  position: absolute;
  top: 50%;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.mattress-collection .owl-next {
  right: 43.7% !important;
}

.mattress-collection .owl-prev {
  left: 25px !important;
}

.mattress-collection .owl-prev, .mattress-collection .owl-next {
  /* position: absolute; */
  top: 50%;
  width: auto;
  transform: translateY(-50%);
  transition: left 0.3s, right 0.3s;
}

.mattress-collection .owl-item {
  pointer-events: auto;
}

.mattress-collection .owl-carousel .owl-stage {
  position: relative;
}

.mattress-collection .owl-next span, .mattress-collection .owl-prev span {
  font-size: 50px;
  color: #fff;
}

/* Home article */
.news-events {
  background: #F9F6F4;
  padding: 55px 0;
}

.news-events .box-heading {
  text-align: center;
  background: none;
  color: #1A2674;
  font-weight: 500;
  font-size: 40px;
}

.news-events .btn_cen{
  text-align: center;
  margin: 35px 0 20px;
}

.news-events .btn_cen a.btn{
  background: #C41230;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 13px 35px;
  border-radius: 35px;
}
.news-events .btn_cen a.btn:hover{
  background: #1a2674;
}


#cluetip {
  display: none !important
}

.news-events ul {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.blogModule .image img {
  float: left;
  border: none !important;
  background: none !important;
  margin-right: 0 !important;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
}

.news-events a.titles {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  margin-top: 25px !important;
  display: block
}

/* Home Quiz */
.home-quiz {
  margin: 55px 0 75px;
}

.home-quiz h1 {
  text-align: center;
}

.inner-quiz {
  margin-top: 35px;
}

.home-quiz .header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-radius: 35px;
  margin-bottom: 30px;
}

.home-quiz .header::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  /* Rotate the triangle 180 degrees */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0;
  /* Adjust the size of the triangle */
}

.home-quiz .header h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
}

.home-quiz .header h3 img {
  margin-right: 13px;
}

.mattress-for .header {
  background: #D6EDE7;
}

.mattress-for .header::before {
  border-color: #D6EDE7 transparent transparent transparent;
}

.flex-mattress {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-around; */
  text-align: center;
  margin: 50px 0 45px;
}

.flex-mattress input {
  display: none
}

.flex-mattress label {
  flex: 1;
  text-align: center;
  box-shadow: 1px 1px 12px rgb(0 0 0 / 16%);
  border-radius: 15px;
  margin: 10px;
  padding: 15px 10px;
  background: #fff;
  border: 5px solid #fff;
  position: relative;
  width: 18%;
  display: inline-block;
  vertical-align: top;
  margin: 0 7px;
}

.flex-mattress label span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #212121;
  margin-top: 15px;
  line-height: 20px;
}

input[type="radio"]:checked+.for-one {
  border: 5px solid #1FBECA !important;
}

input[type="radio"]:checked+.for-one span {
  color: #0EAAB5;
}

input[type="radio"]:not(:checked)+.for-one::before {
  display: none;
}

.for-one::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  font-size: 19px;
  color: #fff;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  background: linear-gradient(90deg, rgba(31, 190, 202, 1) 0%, rgba(36, 85, 145, 1) 100%);
}

.height_firmness {
  margin-top: 30px;
  margin-bottom: 30px;
}

.height_firmness .header {
  background: #C4D3DD;
}

.height_firmness .header::before {
  border-color: #C4D3DD transparent transparent transparent;
}

.height_firmness .row>div {
  text-align: center;
}

.height_firmness .col-sm-6 img {
  margin-bottom: 25px;
}

.height_firmness h4 {
  color: #1A2674;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 5px;
}

.fil-radio ul {
  display: flex;
  list-style: none;
}

.height_firmness .row {
  margin: 45px auto !important;
}

.height_firmness .col-sm-6 {
  padding: 0 45px;
}

.height_firmness .col-sm-6:first-child {
  border-right: 1px solid #B1B1B1;
}

.fil-radio ul {
  width: 100%;
  position: relative;
  padding-left: 0;
}

.hr {
  height: 2px;
  background: #C6C6C6;
  margin: 7px auto;
  position: relative;
  top: 28px;
  width: 90%;
}

.fil-radio li {
  position: relative;
}

.fil-radio input[type="radio"] {
  display: none;
}

.custom-radio {
  position: relative;
  cursor: pointer;
  padding-top: 45px;
}

.radio-button {
  display: inline-block;
  width: 37px;
  height: 37px;
  border: 2px solid #707070;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 37px;
}

.fil-radio ul div:first-child {
  /* position: absolute; */
  left: 0;
}

.fil-radio ul div:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fil-radio ul div:last-child {
  position: absolute;
  right: 0;
}

.fil-radio input[type="radio"]:checked+.custom-radio .radio-button::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  font-size: 19px;
  color: #fff;
}

.fil-radio input[type="radio"]:checked+.custom-radio .radio-button {
  background: linear-gradient(90deg, rgba(31, 190, 202, 1) 0%, rgba(36, 85, 145, 1) 100%);
  border: none;
}

.custom-radio span:not(.radio-button) {
  font-size: 14px;
  font-weight: 400;
  margin-top: -5px;
  display: block;
}

.home-quiz p.med {
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 0;
}

.fil-radio span {
  font-size: 14px;
}

/* .mattress-function{
  margin-top: 130px;
} */
.mattress-function .header {
  background: #CCC2B8;
}

.mattress-function .header::before {
  border-color: #CCC2B8 transparent transparent transparent;
}

.mattress-function p {
  text-align: center;
  margin-top: 40px;
}

.mattress-function ul {
  padding-left: 0;
  list-style: none;
  display: flex;
}

.mattress-function ul li {
  width: 12.5%;
  padding: 10px 6px;
  text-align: center;
}

.mattress-function input {
  display: none;
}

.mattress-function label p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 15px;
}

.mattress-function img {
  border: 5px solid transparent;
  border-radius: 100%;
}

.mattress-function input[type="checkbox"]:checked+label img {
  border: 5px solid #1FBECA;
}

.quiz-btn {
  text-align: center;
  margin-top: 45px;
}

.quiz-btn button {
  background: #C41230;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px 35px;
  border-radius: 35px;
}

.quiz-btn button:hover {
  background: #1a2674;
}

/* newsletter */
#form2 {
  width: 100vw !important;
  background-image: url(/image/data/theme/banners/others/dunlo-home-newsletter-bg_031123175655.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 55px;
}

#form2 .box-content {
  width: 85%;
  text-align: center;
  margin: 0 auto;
}

#form2 .join {
  margin-bottom: 10px;
}

#form2 h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

#form2 .join p {
  margin-bottom: 0;
}

#form2 .email2 {
  width: 40% !important;
  display: inline-block;
}

#form2.form-builder input[type="text"] {
  background: #fff;
  border: 1px solid #C6C6C6;
  height: 50px;
  padding-left: 20px !important;
  border-radius: 45px;
  margin: 0;
  width: 96%;
}

#form2 .submit3 {
  width: 20% !important;
}

#form2 .submit3 .btn {
  height: 50px;
  padding: 13px 19px 10px !important;
  width: 100%;
  margin-left: -90px;
  background: #1a2674;
  border: 1px solid #1a2674 !important;
  border-radius: 0 50px 50px 0;
}

.form-builder [disabled="disabled"]{
  opacity: 1 !important;
}

#form2 .submit3 .btn:hover{
  background: #C41230;
  border: 1px solid #C41230 !important;
}

/* About Us */
.info-4 .box-information, .info-4 .breadcrumb {
  display: none;
}

.center-column {
  padding-top: 0;
}

.about-sect1 {
  background: url(/image/data/theme/information_page/about_us/starbg_130923153848.png);
  background-position: no-repeat;
  background-size: cover;
  padding: 80px 0;
  position: relative
}

.about-sect1:after {
  content: url(/image/data/theme/information_page/about_us/cool-luxe-banner_130824123325.png);
  position: absolute;
  right: -5%;
  top: 8%;
  zoom: 85%;
}

.about-sect1 h2 {
  font-size: 40px !important;
  color: #fff !important;
}

.about-sect1 p {
  color: #fff;
}

.about-sect2 {
  background: url(/image/data/theme/information_page/about_us/invention-bg_130923155647.jpg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.about-sect2 .row, .about-sect3 .row, .about-sect4 .row {
  display: flex;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  justify-content: center;
}

.about-sect2 h3, .about-sect3 h3, .about-sect4 h3 {
  font-size: 24px !important;
  margin-bottom: 0;
  margin-top: 5px;
}

.about-sect3 {
  background: url(/image/data/theme/information_page/about_us/reputation-bg_130923155647.jpg);
  background-position: center;
  background-repeat: no-repeat;
  /* background-size: cover; */
  padding: 80px 0;
}

.about-sect3 .col-sm-6 {
  padding-right: 16%;
}

.about-sect4 {
  background: url(/image/data/theme/information_page/about_us/mattress-bg_130923171557.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.find-us {
  background: url(/image/data/theme/information_page/about_us/globe-bg_130923153848.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
  text-align: center;
  margin-top: 45px;
}

.find-us h3 {
  font-weight: 500;
}

.btn-bg {
  border-radius: 30px;
  padding: 13px 45px;
  font-weight: 500;
  color: #fff;
  background: #1A2674;
}

.btn-bg:hover {
  background: #C41230;
  color: #fff !important
}

.btn-sec {
  margin-top: 20px;
}

.trophy {
  margin: 60px 0 15px;
}

.head-sec {
  text-align: center;
}

.head-sec h2 {
  font-size: 40px;
}

.head-sec p {
  width: 78%;
  margin: 0 auto;
}

.trophy-cabinet {
  width: 100%;
  text-align: center;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
}

.trophy-cabinet .title-award {
  font-size: 14px;
  font-weight: 500;
  color: #1A2674;
  line-height: 20px;
  margin: 10px 0 5px;
}

.trophy-cabinet p:not(.title-award) span {
  display: block;
}

.trophy-cabinet img {
  width: 156px;
  height: 156px;
  object-fit: contain;
}

.trophy-cabinet tr, .trophy-cabinet td {
  padding: 15px;
  text-align: center;
}

/* Information page general */
.information-information .breadcrumb h2 {
  font-size: 30px !important;
  font-weight: 500 !important;
  color: #fff;
  margin: 0;
  text-transform: none !important;
}

.information-information .breadcrumb ul {
  display: none;
}

.information-information .breadcrumb .background {
  background: url(/image/data/theme/information_page/innovation/information-bg_140923143759.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 35px 0;
}

/* Innovation page */
.info-14 .box-information {
  display: none;
}

.innovation-tech .row {
  display: flex;
}

.innovation-tech .col-sm-4 {
  position: sticky;
  top: 90px;
  height: 100%;
  overflow-y: auto;
}

.innovation-sect1 {
  background: url(/image/data/theme/information_page/innovation/unliketherest-bg_140923143759.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 0 70px;
  text-align: center;
}

.innovation-sect1>.container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.innovation-sect1 .inner {
  width: 90%;
  margin: 0 auto;
}

.innovation-sect1 .inner p {
  margin-bottom: 25px;
}

.innovation-tech {
  margin: 60px 0 15px;
}

.innovation-tech .col-sm-4 {
  padding-right: 5%;
}

.innovation-tech .col-sm-4 p {
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}

.innovation-tech .innovation-sidebar {
  list-style: none;
  padding-left: 0;
}

.innovation-sidebar .nav-link {
  background: #F1F5F7;
  padding: 10px 20px 8px;
  font-size: 16px;
  color: #1A2674 !important;
  border-radius: 6px;
}

.innovation-sidebar .nav-item.active .nav-link {
  background: #EFEEE3;
}

.innovation-sidebar .nav-submenu {
  padding-left: 20px;
  margin-bottom: 20px;
}

.innovation-sidebar .nav-submenu a {
  padding: 4px 0;
  color: #6F6F6F;
  font-size: 14px;
  cursor: pointer;
  display: block;
}

.innovation-sidebar .nav-submenu a.active, .innovation-sidebar .nav-submenu a:hover {
  color: #1A2674;
  font-weight: 500;
}

#comfort-layer h2 {
  font-size: 18px !important;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: #E2F2EE;
  padding: 23px 0 17px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: bold !important;
  display: flex;
  /* Make it a flex container */
  align-items: center;
  /* Vertically center items */
  justify-content: center;
  /* Horizontally center items */
}

#comfort-layer h2:before {
  background: url(/image/data/theme/information_page/innovation/icon/conformlayer_140923144011.svg);
  position: absolute;
  left: 7px; /* Position on the left */
  width: 50px;
  height: 50px;
  background-size: 50px;
  content: '';
  top: 5px;
}

.innvo-banner {
  border-radius: 8px;
  margin-bottom: 30px;
}

.inno-detail p {
  margin-bottom: 15px
}

.inno-detail {
  border-bottom: 1px solid #D1D1D1;
  padding-bottom: 45px;
  padding-top: 45px;
}

#comfort-sec1 ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#comfort-sec1 ul li {
  width: 20%;
  padding: 15px;
  text-align: center;
}

#comfort-sec1 ul li span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin-top: 15px;
}

#comfort-sec3 h3 {
  font-size: 20px !important;
}

.inno-detail p strong {
  font-weight: 500 !important;
  color: #1A2674;
}

#comfort-sec3 ul {
  padding-left: 15px;
}

#spring-inno h2 {
  font-size: 18px !important;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: #D3DEE6;
  padding: 23px 0 17px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: bold !important;
  display: flex;
align-items: center;
justify-content: center;
}

#spring-inno h2:before {
  background: url(/image/data/theme/information_page/innovation/icon/spring-innovation_140923144011.svg);
  position: absolute;
  left: 7px;
  width: 50px;
  height: 50px;
  background-size: 50px;
  content: '';
  top: 5px;
}

#spring-sec1 ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

#spring-sec1 ul li {
  width: 20%;
  padding: 15px;
  text-align: center;
}

#spring-sec1 ul li span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin-top: 15px;
}

.inno-detail .mod {
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 5px;
}

.inno-detail .mod strong {
  font-weight: 500 !important;
}

#spring-sec3 ul {
  padding-left: 15px;
}

#spring-sec3 ul li {
  padding: 3px 0
}

.inner-inno {
  margin: 15px 0;
}

.innvo-text-banner {
  display: block;
}

#fabric-layer h2 {
  font-size: 18px !important;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: #E8E4E0;
  padding: 23px 0 17px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: bold !important;
  display: flex;
align-items: center;
justify-content: center;
}

#fabric-layer h2:before {
  background: url(/image/data/theme/information_page/innovation/fabric/fabric-innovation_140923143853.svg);
  position: absolute;
  left: 7px;
  width: 50px;
  height: 50px;
  background-size: 50px;
  content: '';
  top: 5px;
}

.inner-inno {
  margin: 15px 0;
}

.innvo-text-banner {
  display: block;
}

#fabric-layer h2 {
  font-size: 18px !important;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: #E8E4E0;
  padding: 23px 0 17px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: bold !important;
}

/* #fabric-layer h2:before {
  background: url(/image/data/theme/information_page/innovation/fabric/fabric-innovation_140923143853.svg);
  position: absolute;
  left: 7px;
  width: 50px;
  height: 50px;
  background-size: 50px;
  content: '';
  top: 5px;
} */

.fabric-sided {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fabric-sect {
  width: 48%;
  padding: 15px;
}

.fabric-sect img {
  margin-bottom: 15px;
}

#fabric-sec13 ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

#fabric-sec13 ul li {
  width: 33.33%;
  padding: 10px;
  text-align: center
}

#fabric-sec13 ul li p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.par-inno .inno-detail:last-child {
  border-bottom: none;
}

.par-inno .inno-detail:first-child {
  padding-top: 0;
}

/* Store Locator */
.info-15 .box-information, .info-16 .box-information, .info-17 .box-information {
  display: none;
}

.info-15 .main-content .container, .info-15 .standard-body .main-content .container, .info-16 .main-content .container, .info-16 .standard-body .main-content .container, .info-17 .main-content .container, .info-17 .standard-body .main-content .container {
  padding-bottom: 0;
}

.store-menu {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.store-menu ul {
  display: flex;
  list-style: none;
  text-align: center;
  flex-wrap: wrap;
  padding-left: 0;
  justify-content: center;
}

.store-menu li {
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
}

.store-menu li a {
  color: #747474;
}

.store-menu li.active a {
  color: #1A2674;
  border-bottom: 2px solid #1A2674;
  padding-bottom: 15px;
}

.store-menu li:hover a {
  color: #1A2674;
}

.store-locator {
  background: #F1F5F7;
  position: relative;
  padding: 0 0 45px;
}

.store-locator:before {
  content: url(/image/data/theme/information_page/locator/globe-bg_180923094343.png);
  position: absolute;
  right: 0;
  margin: 0 auto;
  top: 10%;
  left: 40%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}

.store-locator .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
  z-index: 2 !important;
  position: relative;
}

.store-locator .main-sect {
  margin-top: 15px;
}

.locate-info {
  width: 100%;
  border-spacing: 25px;
  border-collapse: separate;
}

.suite-locate .locate-info {
  display: none;
}

.suite-locate .locate-info.open {
  display: block;
}

.locate-info td {
  width: 33.33%;
  display: table-cell;
  vertical-align: top;
  background: #fff;
  border-radius: 10px;
}

.inner-local {
  padding: 30px 20px 25px;
}

.inner-local .med {
  font-weight: 500;
  text-transform: uppercase;
  color: #1A2674;
}

.inner-local .international {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1A2674;
}

.inner-local p:not(.med) {
  font-size: 14px;
  line-height: 22px;
  /* white-space: */
}

.store-locator p.phone, .store-locator p.hours, .store-locator p.fax, .store-locator p.web, .store-locator p.email {
  position: relative;
  padding-left: 22px;
}

.store-locator p.phone:before, .store-locator p.hours:before, .store-locator p.fax:before, .store-locator p.web:before, .store-locator p.email:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #937A63;
  position: absolute;
  left: 0;
}

.store-locator p.phone:before {
  content: '\f095';
}

.store-locator p.hours:before {
  content: '\f017';
}

.store-locator p.fax:before {
  content: '\f1ac';
}

.store-locator p.web:before {
  content: '\f0ac';
}

.store-locator p.email:before {
  content: '\f0e0';
}

p.address {
  width: 95%;
}

.suite-locate {
  margin: 30px 0 40px;
}

.suite-locate h2 {
  text-align: center;
  font-size: 40px !important;
}

.suite-locate h3 {
  font-weight: bold !important;
  text-transform: uppercase !important;
  position: relative;
  background: #DFD9D3;
  padding: 15px 0 13px;
  text-align: center;
  border-radius: 30px;
  display: block;
  font-size: 20px !important;
}

.suite-locate h3:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  right: 3%;
  content: "\f067";
  font-size: 15px;
  color: #1A2674;
  position: absolute !important;
  transform: translateY(-50%);
  top: 53%;
}

.suite-locate h3.open:after {
  content: '\f00d';
}

.suite-locate h3.open {
  background: #C4D3DD;
}

.state-locate {
  margin-bottom: 20px;
}

.sect-enq {
  margin: 30px;
}

.sect-enq p.med {
  font-weight: 500;
  color: #1A2674;
  text-transform: capitalize;
  margin-bottom: 25px
}

.sect-enq p.international {
  font-weight: 500;
  color: #1A2674;
  font-size: 14px;
  margin-bottom: 5px;
}

.sect-enq p.email, .sect-enq p.phone {
  font-size: 14px;
  margin-bottom: 5px;
}

.export-inc {
  margin-bottom: 30px;
}

/* Mattress Collection */
.info-18 .breadcrumb, .info-19 .breadcrumb, .info-20 .breadcrumb, .info-21 .breadcrumb, .info-22 .breadcrumb, .info-23 .breadcrumb, .info-24 .breadcrumb {
  display: none;
}

.collection-menu {
  background: #F1F5F7;
  padding: 20px 0 15px;
}

.mattress-menu {
  margin-top: 0 !important;
  padding-top: 0
}

.mattress-menu ul {
  display: flex;
  list-style: none;
  text-align: center;
  flex-wrap: wrap;
  padding-left: 0;
  justify-content: center;
  margin-bottom: 0;
}

.mattress-menu li {
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
}

.mattress-menu li a {
  color: #747474;
}

.mattress-menu li.active a {
  color: #1A2674;
  border-bottom: 2px solid #1A2674;
  padding-bottom: 19px;
}

.mattress-menu li:hover a {
  color: #1A2674;
}

.mattress_collection-info .sect1 img {
  width: 100%;
}

.mattress_collection-info .lightblue {
  background: #F6F8FA;
  margin-top: 65px;
  padding: 50px 0 65px;
}

.mattress_collection-info .lightblue h2 {
  text-align: center;
}

.mattress_collection-info .lightblue .container, .mattress_collection-info .lightcream .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.mattress_collection-info .lightcream {
  background: #F9F6F4;
  padding: 50px 0 75px;
  text-align: center;
}

.mattress_collection-info .lightcream h2 {
  margin-bottom: 20px;
}

.mattress_collection-info .sect2 {
  width: 85%;
  margin: 45px auto;
  text-align: center
}

.mattress_collection-info .sect2 p {
  margin-bottom: 20px;
}

/* TalaSilver */
/* .tala-wave .sect2 {
  width: 85%;
  margin: 45px auto;
  text-align: center
}

.tala-wave .sect2 p {
  margin-bottom: 20px;
} */
.tala-wave .sect2 ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 35px auto 0;
}

.tala-wave .sect2 ul li {
  width: 20%;
  padding: 15px;
  text-align: center;
}

.tala-wave .sect2 ul li span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin-top: 15px;
}

.tala-wave .sect3 {
  margin-bottom: 30px;
}

.tala-slider {
  text-align: center;
  display: block;
  width: 100%;
  overflow: hidden;
}

.tala-slider .owl-dots .owl-dot.active span {
  background: #1A2674;
  width: 25px;
  opacity: 1;
}

.tala-slider .owl-dots .owl-dot:hover span {
  background: #1A2674;
  opacity: 1;
}

.tala-slider .owl-dots .owl-dot span {
  background: #1A2674;
  opacity: 0.3;
}

.tala-slider .owl-dots {
  margin-top: 20px;
}

.tala-wave .sect4 ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.tala-wave .sect4 ul li {
  width: 25%;
  padding: 15px;
}

.tala-wave .sect4 ul li img {
  margin-bottom: 15px;
}

.tala-wave .spring_inno {
  margin: 45px 0;
}

.tala-wave .spring_inno h2 {
  text-align: center;
}

.tala-wave .dyn_row {
  display: flex;
  align-items: center;
  margin: 35px 0 45px;
}

.tala-wave .dyn_row .col-sm-6:first-child {
  text-align: center;
  padding-right: 45px;
}

.tala-wave .dyn_row .col-sm-6:first-child img {
  margin-bottom: 20px;
}

.tala-wave .spring_inno .row:last-child {
  width: 90%;
  margin: 0 auto;
}

.tala-wave .spring_inno .row:last-child .col-sm-6:first-child {
  padding-right: 4%;
}

.tala-wave .spring_inno .row:last-child h3 {
  font-size: 20px !important;
  color: #212121;
  margin-bottom: 0;
}

.tala-wave .spring_inno .row:last-child ul {
  padding-left: 15px;
}

.tala-wave .spring_inno .row:last-child ul li {
  margin-bottom: 5px;
}

.tala-wave .sect6 {
  margin: 50px 0;
  text-align: center;
}

.tala-wave .sect6 img:not(.bor) {
  margin: 30px 0 15px;
}

.tala-wave .sect7 .row {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.tala-wave .sect7 .text-det {
  padding: 0 45px;
}

.tala-wave .sect7 .text-det img {
  margin-bottom: 20px;
}

.collection-prod {
  text-align: center;
  margin: 50px 0 35px;
}

.latex-world .sect3 {
  margin: 55px 0 35px;
  text-align: center;
}

.latex-world .sect4 .row {
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.latex-world .sect4 .col-sm-6 {
  text-align: center;
}

.latex-world .sect4 ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.latex-world .sect4 ul li:first-child, .latex-world .sect4 ul li:last-child {
  width: 30%;
  padding: 5px 35px;
}

.latex-world .sect4 ul li:nth-child(2) {
  width: 40%;
}

.text-det {
  padding: 0 40px;
}

.marg-up {
  margin: 20px 0 20px;
}

/* .latex-world .lightblue {
  padding-bottom: 60px;
} */
.latex-world .sect4 .text-det ul p {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin: 10px 0 0;
}

.latex-world .sect5 {
  text-align: center;
  margin: 55px 0;
}

.latex-world .sect5 .row {
  margin-top: 30px;
}

.latex-world .sect5 img:first-child {
  width: 273px;
}

.latex-world .sect5 .dura-log {
  min-height: 55px;
  object-fit: contain;
  margin-bottom: 10px;
  margin-top: 25px;
}

.latex-world .sect5 .col-sm-4 {
  padding: 0 25px;
}

.latex-world .sect6 .row {
  margin-top: 45px;
  display: flex;
  align-items: center;
}

.latex-world .sect6 .text-det img {
  margin-bottom: 20px;
}

/* Royale 2.0 */
.royale .sect2 ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 35px auto 0;
}

.royale .sect2 ul li {
  width: 20%;
  padding: 15px;
  text-align: center;
}

.royale .sect2 span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin-top: 15px;
}

.royale .lightcream .row {
  text-align: left;
  display: flex;
  align-items: center;
}

.royale .lightcream .row:not(:last-child) {
  margin-bottom: 55px;
}

.royale .lightcream .row p:not(:last-child) {
  margin-bottom: 20px;
}

.royale .lightcream p.med {
  color: #1A2674;
  font-weight: 500;
}

/* Hotel */
.hotel .lightblue ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  width: 90%;
  margin: 35px auto 0;
}

.hotel .lightblue li {
  width: 50%;
  padding: 0 25px;
}

.hotel .lightblue li img {
  text-align: center;
  margin: 0 auto 15px;
  display: block;
}

.hotel .sect5 {
  margin: 55px 0;
  text-align: center;
}

.hotel .wid-cen {
  width: 90%;
  margin: 0 auto;
}

.hotel .sect5 h2 {
  margin-bottom: 20px;
}

.hotel .sect5 p {
  margin-top: 20px;
}

.hotel .sect5 ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 35px auto 45px;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.hotel .sect5 ul li {
  width: 25%;
  text-align: center;
  padding: 15px;
}

.hotel .sect5 li span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  width: 80%;
  margin: 15px auto 0;
}

.hotel .lightcream .wid-cen img {
  margin-bottom: 20px;
}

.hotel .lightcream .row {
  margin-top: 45px;
  display: flex;
  align-items: center;
}

.hotel .lightcream .row div:first-child img {
  margin-bottom: 20px;
}

/* NormaBlock */
.normablock .sect2 ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 35px auto 55px;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
}

.normablock .sect2 ul li {
  width: 25%;
  text-align: center;
}

.normablock .sect2 ul span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  width: 80%;
  margin: 15px auto 0;
}

.normablock .lightcream {
  padding: 75px 0;
}

.normablock .lightcream .row {
  display: flex;
  align-items: center;
}

.normablock .lightcream .text-det img {
  margin-bottom: 20px;
}

.normablock .sect4 {
  margin: 45px 0 55px;
}

.normablock .sect4 h2 {
  text-align: center;
}

.normablock .sect4 ul.main {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 25px auto 40px;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.normablock .sect4 ul.main li {
  width: 14.28%;
  padding: 10px;
  text-align: center;
}

.normablock .sect4 ul.main li span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin: 15px auto 0;
}

.normablock .sect4 .row {
  display: flex;
  align-items: center;
}

.normablock .sect4 .row h3 {
  margin-top: 20px;
  font-size: 20px !important;
  line-height: 28px;
  color: #212121;
  margin-bottom: 0
}

.normablock .sect4 .text-det ul {
  padding-left: 15px;
  margin-bottom: 0;
}

.normablock .sect4 .text-det ul p {
  margin-bottom: 0;
}

.normablock .lightblue {
  padding: 65px 0 55px;
}

.normablock .lightblue .row {
  display: flex;
  align-items: center;
  text-align: center;
}

.normablock .lightblue .text-det img {
  margin-bottom: 20px;
}

/* CoolSilk */
.coolsilk .sect2 ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 35px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.coolsilk .sect2 ul li {
  width: 25%;
  padding: 10px;
  margin-bottom: 10px;
}

.coolsilk .sect2 ul span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #212121;
  margin: 15px auto 0;
}

.coolsilk .lightblue {
  text-align: center;
  padding-bottom: 35px;
}

.coolsilk .lightblue img {
  margin: 25px auto;
  text-align: center;
}

.cool-sect {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cool-sect div {
  width: 33.33%;
  padding: 15px;
}

.cool-sect h3 {
  font-size: 19px !important;
  font-weight: 500;
  margin-bottom: 0;
}

.cool-sect ul {
  padding-left: 15px;
}

.cool-sect ul p {
  margin-bottom: 0;
}

/* DeStress */
.darkblue {
  background: #021E36;
}

.de_stress .sect2 ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 35px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.de_stress .sect2 ul li {
  width: 20%;
  padding: 10px;
  margin-bottom: 25px;
}

.de_stress .sect2 ul span {
  font-size: 14px;
  line-height: 20px !important;
  display: block;
  font-weight: 500;
  color: #fff;
  margin: 15px auto 0;
  width: 80%;
}

.de_stress .sect4 {
  padding: 55px 0;
}

.de_stress .sect2 .container, .de_stress .sect3 .container, .de_stress .sect4 .container, .de_stress .sect5 .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.whatis {
  text-align: center;
  position: relative;
}

.whatis img {
  margin-bottom: 20px;
}

.whatis h2, .whatis p {
  color: #fff !important;
}

.whatis:before {
  content: url(/image/data/theme/information_page/de_stress/girl-sleep_031023165412.png);
  position: absolute;
  right: 0;
  bottom: -6%;
}

.whatis .col-sm-6 {
  padding-right: 6%;
}

.de_stress .sect5 {
  background: #16344E;
  padding: 65px 0;
}

.de_stress .sect5 .row:first-child {
  text-align: center;
  margin-bottom: 50px;
}

.de_stress .sect5 .row:first-child h3 {
  color: #fff;
  font-size: 20px !important;
  font-weight: 500;
  margin-top: 10px;
}

.de_stress .sect5 p {
  color: #fff;
}

.de_stress .sect5 .row:first-child .col-sm-6:first-child {
  padding-right: 5%;
}

.de_stress .sect5 .row:first-child .col-sm-6:last-child {
  padding-left: 5%;
}

.de_stress .sect5 .row:last-child {
  display: flex;
  align-items: center;
}

.de_stress .sect5 .row:last-child h2 {
  color: #fff;
  font-size: 30px !important;
}

.de_stress .sect5 .row:last-child p {
  margin-bottom: 20px;
}

.de_stress .sect5 .row:last-child .col-sm-6:last-child {
  padding-left: 5%;
}

/* Product Page */
.product-info .price .price-new{
  color: #1A2674 !important;
}

.count_holder_small{
  display: none;
}
.count_holder {
  background-color: #fff !important;
  border: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 5px !important;
}
.hasCountdown span{
    color: #191919 !important
}
.offer_title {
  color: #191919 !important;
}
.sales_promo #text{
  color: #B71D1C !important;
}
.sales_promo{
  font-size: 16px !important;
  margin-top: -10px;
  margin-bottom: 10px;
}
.sales_promo h3{
  font-size: 20px !important;
  margin-bottom: 0;
  padding-bottom: 0
}

.product-product .breadcrumb .container ul {
  text-align: left;
  margin: 5px 0 0;
  font-size: 12px;
}

.product-product .breadcrumb .container ul li:not(:last-child) a {
  color: #212121;
}

.product-product .breadcrumb .container ul li:last-child a {
  color: #1A2674;
}

.product-product .center-column {
  padding-top: 30px;
}

.product-product #title-page, .product-info .options h2 {
  display: none;
}

#review_click {
  cursor: pointer;
}

.product-info .review {
  display: none;
}

#product {
  margin-bottom: 15px;
}

h2.product-title {
  font-size: 24px !important;
}

.product-info .product-center {
  margin-top: 0 !important;
  width: 45%;
  margin-left: 15px;
}

.firmness-level {
  margin: 25px 0;
}

.firmness-level img{
  width: 66%;
}

.review_textno {
  font-size: 14px;
  color: #212121;
}

.product-info .cart, .product-info .description, .product-info .options, .product-info .price {
  padding: 0;
  background: none;
}

.product-info .options .option b {
  font-weight: 500 !important;
  font-size: 14px;
  color: #1A2674;
}

/* .product-info .thumbnails.thumbnails-bottom .slick-slider li {
  padding: 5px;
} */
.product-info .cart .add-to-cart p {
  display: none;
}

.product-info .cart .add-to-cart .quantity input {
  color: #1A2674;
  text-align: center;
  padding: 10px 40px;
  min-width: 160px;
  height: 52px;
  margin: 0;
  border: 1px solid #DBDBDB;
  width: 100%;
  font-size: 16px !important;
  border-radius: 30px;
  background: #fff;
}

.product-info .cart .add-to-cart .button {
  font-size: 18px;
  height: 52px;
  font-weight: 500 !important;
  padding: 10px 55px;
  margin-left: 10px;
  width: 280px;
  border-radius: 30px;
}

.product-info .cart .add-to-cart .quantity #q_up, .product-info .cart .add-to-cart .quantity #q_down {
  border: 0;
  top: 2px;
  padding-top: 15px;
  width: 30px;
  position: absolute;
  right: 15px;
  width: 18px;
  font-size: 11px;
  line-height: 17px;
  display: block;
  text-align: center;
}

.product-info .cart .add-to-cart .quantity #q_up i, .product-info .cart .add-to-cart .quantity #q_down i {
  color: #1A2674;
}

.product-info .cart .add-to-cart .quantity #q_down {
  left: 15px;
  right: auto;
}

.product-info .cart .links {
  display: none;
}

.rating-modified {
  margin-top: 15px;
}

.rating-modified i {
  color: #D5D5D5 !important;
  font-size: 18px;
}

.rating-modified i.active {
  color: #1FBECA !important;
}

.optionsList {
  background: #fff;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #1A2674;
  margin-top: 10px;
  width: 60%;
}

.product-info .price {
  margin-bottom: 15px;
}

.attribute-det {
  margin-top: 30px;
}

.attribute-det p, p.shipping_price {
  font-size: 14px;
  margin-bottom: 0
}

.thumbnails .slick-track {
  display: flex;
}

.htabs {
  text-align: center;
  background: #ECE8E4;
  border-radius: 30px;
  margin-top: 45px;
}

.htabs a[href="#tab-attribute"]{
  display: none !important;
}

.htabs a {
  padding: 0;
  display: inline-block;
  float: none;
  font-size: 18px !important;
  padding-bottom: 10px;
  font-weight: 500 !important;
  margin: 13px 20px 8px !important;
  padding: 0;
  position: relative;
}

#tabs.htabs a.selected {
  border-color: transparent !important;
}

#tabs.htabs a.selected::before {
  content: '';
  position: absolute;
  bottom: -80%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0;
  border-color: #ECE8E4 transparent transparent transparent;
}

#tab-description h2 {
  display: none;
}

#tab-description {
  margin-top: 45px;
}

.catalog_btn {
  text-align: center;
}

.catalog_btn a {
  border: 1px solid #1A2674;
  padding: 15px 45px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #1A2674;
}

.catalog_btn i {
  margin-right: 10px;
}

/* Review Tab */
#tab-review {
  padding: 0;
  margin: 25px 0 0;
}

#tab-review .rating-review-detail .rating-review {
  display: inline-flex;
  align-items: center;
}

#tab-review .rating-review-detail .rating-review p {
  margin-bottom: 0;
}

#tab-review .rating-review-detail {
  margin-top: 40px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div#review {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #dbdbdb;
}

.star-review-rating:not(:checked)>label:before {
  content: "\f005";
  font-weight: 100 !important;
  font-family: "Font Awesome 5 Pro";
}

.product-info .thumbnails ul.slick-dots {
  display: none !important;
}

.star-review-rating:not(:checked)>label.active:before {
  content: "\f005";
  font-weight: 900 !important;
  font-family: "Font Awesome 5 Pro";
  color: #FFD31A;
}

.star-review-rating:not(:checked)>label {
  width: 22px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 20px;
  color: #191919;
  margin-right: 8px;
  transition: .3s;
  margin-top: 5px;
}

.star-review-rating {
  padding: 0;
}

.star-review-rating:not(:checked)>input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.star-review-rating label.active {
  color: #191919;
}

.add-review-button {
  float: right;
  margin: 0 !important;
}

.write-review-btn {
  background: transparent;
  border: 1px solid #1A2674;
  color: #1A2674;
  padding: 7px 25px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 0px;
  display: block;
  border-radius: 30px;
}

.write-review-btn:hover {
  background: #1A2674;
  color: #fff !important;
}

/* .write-review-btn:focus {
  color: #212121 !important;
  text-decoration: none !important;
} */
#collapsereview {
  margin-top: 25px;
}

#collapsereview h2 {
  display: none;
}

.review_form p {
  color: #212121;
  margin-top: 10px !important;
  font-size: 15px;
  font-weight: 500;
}

.entry_review textarea {
  width: 83.33% !important;
  border: solid 1px #dbdbdb !important;
  height: 160px !important;
  background: #fff !important;
  font-size: 16px;
}

.review_form input[type="text"] {
  border-color: #dbdbdb;
  font-size: 16px;
  background: #fff;
}

#collapsereview .recaptcha {
  float: right !important;
  margin: 25px 0 0;
  padding-left: 0 !important;
}

.text_note {
  float: right !important;
  padding-left: 0 !important;
}

#collapsereview .buttons {
  float: right !important;
  padding-left: 0 !important;
  margin-bottom: 20px;
}

.review_form {
  height: 100% !important;
  display: flex;
}

.review-star-box {
  padding: 10px 0 5px;
}

#button-review {
  background: #1A2674 !important;
  border-radius: 30px;
  color: #fff !important;
}

#button-review:hover {
  background: #ab1b1b !important;
}

/* Review List */
#tab-review h2 {
  display: none;
}

.review-list .text:before {
  display: none !important;
}

.review-list .rating {
  float: none !important;
}

.review_det {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-list {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.rating-review-detail .fa-star:before {
  color: #D5D5D5 !important;
}

.rating-review-detail .fa-star.active:before {
  color: #FDCC0D !important;
}

#review .review-list .text {
  margin: 5px 0 0;
  padding: 0;
  border: transparent !important;
  background: transparent !important;
  display: inline-block;
  font-size: 16px;
}

#review .review-list .text:after {
  display: none;
}

.review-list p.review_text {
  font-size: 16px;
  color: #01131A;
}

.review-list p.review_name {
  font-size: 16px;
  color: #01131A;
  font-weight: 500;
}

.review-photos {
  display: none;
}

#review .rating i.active {
  color: #1FBECA !important;
}

#review .rating i {
  color: #D5D5D5 !important;
}

/* Related Product */
/* Related Product List */
.box.related-product .next, .box.related-product .prev {
  background: #1a2674;
/*   border: 1px solid #19B3C5; */
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.box.related-product .next {
  z-index: 2;
}

.box.related-product .prev {
/*   position: absolute;
  top: 35%; */
  margin: 41px 10px 0 10px;
  z-index: 2;
}

.box.filter-product .slider-center-arrow .next:hover, .box.filter-product .slider-center-arrow .prev:hover, .box.related-product .next:hover, .box.related-product .prev:hover {
  background: #ab1b1b;
}

.box.filter-product .slider-center-arrow .prev:hover span:before, .box.filter-product .slider-center-arrow .next:hover span:before, .box.related-product .next:hover span:before, .box.related-product .prev:hover span:before {
  color: #fff;
}

.box.related-product .prev span:before, .box.related-product .next span:before {
  color: #fff;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 16px;
}

.box.related-product .next span:before {
  content: "\f054";
}

.box.related-product .prev span:before {
  content: "\f053";
}

.box>.next span, .box>.prev span {
  margin: 8px auto 0;
  background: none;
}

.box.related-product .box-heading {
  background: none;
  text-align: center;
  font-size: 32px !important;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.box.related-product {
  text-align: center;
  margin-top: 35px;
}

/* Responsive */
@media (max-width: 948px){
  .responsive .mini-cart-info .image img{
    max-width: 100%;
  }
}
@media (min-width: 787px) {
  #slider .slotholder img {
    object-fit: contain !important;
    width: 100% !important;
    left: 0 !important;
    height: 100% !important;
  }
}

@media (min-width: 990px) {
  .footer .row {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .footer h4, .custom-footer h4 {
    font-size: 15px !important;
  }

  .responsive .center-column {
    padding-top: 2px;
  }

  .mobile_hidden {
    display: none !important;
  }

  .desktop_hidden {
    display: block !important;
  }

  h1, .news-events.box .box-heading {
    font-size: 28px !important;
    line-height: 36px;
  }

  h2 {
    font-size: 24px !important;
    line-height: 33px;
  }

  h3 {
    font-size: 20px !important;
  }

  .responsive .standard-body .fixed{
    overflow-x: hidden;
  }

  /* p{
    font-size: 15px !important;
  } */

  /* newsletter */
  #form2{
    padding: 40px 15px 35px;
  }

  #form2 .box-content{
    width: 100%;
  }

  #form2 .email2{
    display: block;
    width: 100% !important;
  }

  #form2.form-builder input[type="text"]{
    width: 100%;
  }

  #form2 .submit3{
    width: 100% !important;
  }

  #form2 .submit3 .btn{
    margin-left: 0;
    border-radius: 50px;
  }

  #form2 h3{
    margin-bottom: 10px;
  }

  /* Homepage */
  .quality-sleep {
    padding: 0 0 30px;
  }

  .quality-sleep h1 {
    margin-top: 40px;
    margin-bottom: 0px;
  }

  .quality-sleep .sect1 {
    padding: 0 0 50px;
  }

  .quality-sleep .sect1 .col-sm-7 {
    padding-left: 0;
    margin-top: 45px;
  }

  .home-quiz {
    margin: 55px 0 45px;
  }

  .home-quiz .header h3 {
    font-size: 16px !important;
  }

  .home-quiz .header h3 img {
    width: 25px;
  }

  .inner-quiz {
    margin-top: 25px;
  }

  .flex-mattress label {
    width: 40%;
    min-height: 185px;
    margin-bottom: 30px;
  }

  .flex-mattress {
    margin: 50px 0 20px;
  }

  .height_firmness .header {
    padding: 15px;
  }

  .height_firmness .col-sm-6:first-child {
    border-right: none;
    margin-bottom: 25px;
  }

  .mattress-function ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mattress-function ul li {
    width: 33.33%;
  }

  .quiz-btn {
    margin-top: 15px;
  }

  .news-events.box .box-heading {
    margin-top: 25px;
  }

  .banner-det h3, .banner-det p, .banner-det a {
    opacity: 1;
  }

  .matt-banner:before {
    opacity: 1;
    top: 0;
  }

  .mattress-collection .owl-next {
    right: 86.5% !important;
  }

  .mattress-collection {
    margin-bottom: -5px;
  }

  .responsive .homepage .main-content .pattern>.container, .responsive .homepage .standard-body .main-content .pattern>.container {
    padding-bottom: 0 !important;
  }

  .mattress-collection h1 {
    margin-top: 0;
  }

  /* About Us */
  .about-sect1 .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .about-sect1 {
    padding: 45px 0 250px;
  }

  .about-sect1:after {
    zoom: 45%;
    right: -8%;
    top: 62%;
  }

  .about-sect1 h2 {
    font-size: 27px !important;
    line-height: 40px;
  }

  .about-sect2 .row, .about-sect3 .row, .about-sect4 .row {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .about-sect2 {
    padding: 65px 0 45px;
  }

  .about-sect2 .col-sm-6:first-child, .about-sect4 .col-sm-6:first-child {
    margin-bottom: 35px;
  }

  .about-sect3 .row {
    flex-direction: row;
  }

  .about-sect3 .col-sm-6:first-child {
    order: 2;
  }

  .about-sect3 .col-sm-5:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .about-sect3 {
    padding: 0;
  }

  .about-sect4 {
    padding: 50px 0 0;
  }

  .find-us {
    padding: 55px 0 75px;
  }

  .trophy {
    margin: 40px 0 55px;
  }

  .head-sec p {
    width: 95%;
  }

  /* Innovation */
  .innovation-sect1>.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .innovation-sect1 .inner {
    width: 100%;
  }

  .innovation-tech .row {
    display: block;
  }

  .innovation-tech {
    margin: 40px 0;
  }

  .innovation-tech .col-sm-4 {
    position: relative;
    top: 0;
    margin-bottom: 35px;
  }

  .innovation-sect1 {
    padding: 30px 0 15px;
  }

  #comfort-layer h2, #spring-inno h2, #fabric-layer h2 {
    font-size: 16px !important;
    padding: 20px;
  }

  #comfort-layer h2:before, #spring-inno h2:before, #fabric-layer h2:before {
    width: 40px;
    height: 40px;
    background-size: 40px;
    /* top: 12px;
    left: 10px; */
    top: unset;
  }

  #comfort-sec1 ul li, #spring-sec1 ul li {
    width: 33.33%;
  }

  .inno-detail {
    padding-bottom: 20px;
    padding-top: 35px;
  }

  /* #fabric-sec13 ul li{
  width: 50;
} */
  #fabric-sec13 ul li p {
    font-size: 13px !important;
  }

  .fabric-sect {
    width: 100%;
  }

  /* Product Page */
  .product-info .product-center {
    width: 100%;
    margin-left: 0;
    margin-top: 20px !important;
  }

  .responsive .product-info .cart, .responsive .product-info .description, .responsive .product-info .options, .responsive .product-info .price {
    padding: 0 !important;
  }

  .product-info .cart .add-to-cart .quantity input {
    min-width: 120px;
  }

  .product-info .cart .add-to-cart .button {
    width: 220px;
  }

  .attribute-det p, p.shipping_price {
    margin-top: 25px;
  }

  .htabs {
    margin-top: 20px;
    column-gap: 30px;
    padding: 0 15px;
    overflow-x: scroll;
    justify-content: flex-start;
    flex-wrap: nowrap;
    display: flex;
  }

  .review_form {
    display: block;
  }

  .entry_review textarea {
    width: 100%;
  }

  .review_form p {
    padding: 0;
    margin: 5px 0;
  }

  .text_note, #collapsereview .recaptcha, #collapsereview .buttons {
    float: left !important;
  }

  #tab-review .rating-review-detail .rating-review p, #tab-review .rating-review-detail .rating-review {
    display: block;
  }

  #collapsereview input[type=text] {
    width: 100% !important;
  }

  h2.product-title {
    font-size: 22px !important;
  }

  .htabs a {
    font-size: 15px !important;
    margin: 10px 20px 8px !important;
    white-space: pre;
  }

  #tabs.htabs a.selected::before{
    display: none;
  }

  #tab-description {
    margin-top: 25px;
  }

  #tab-review {
    margin: 0;
  }

  .box.related-product .box-heading{
    font-size: 26px !important;
    line-height: 27px;
    margin-bottom: 45px;
  }

  .box.related-product .prev, .box.related-product .next{
    margin-top: 45px !important;
  }

  .box.related-product{
    margin-bottom: 35px;
  }

  /* Mattress Collection Info */
  .mattress-menu ul {
    column-gap: 30px;
    padding: 0 15px;
    overflow-x: scroll;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .mattress-menu li {
    font-size: 14px;
    padding: 20px 0;
    white-space: pre;
  }

  .mattress-menu li.active {
    color: #1A2674;
    border-bottom: 2px solid #1A2674;
    /* padding-bottom: 12px; */
  }

  .mattress-menu li.active a {
    color: #1A2674;
    border-bottom: none;
    padding-bottom: 0;
  }

  .collection-menu {
    padding: 15px 0 0;
  }

  .mattress_collection-info .sect2 {
    width: 100%;
    margin: 25px auto;
  }

  .mattress_collection-info .sect2 p {
    margin-bottom: 13px;
  }

  .tala-wave .sect2 ul {
    width: 100%;
    margin: 20px auto 0;
  }

  .tala-wave .sect2 ul li {
    width: 33.33%;
    padding: 15px 10px;
  }

  .tala-wave .sect2 ul li img {
    width: 70px;
  }

  .tala-wave .sect3 {
    margin-bottom: 15px;
  }

  .mattress_collection-info .lightblue {
    margin-top: 35px;
    padding: 35px 0 30px;
  }

  .mattress_collection-info .lightblue .container, .mattress_collection-info .lightcream .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .tala-wave .sect4 ul li {
    width: 50%;
  }

  .tala-wave .spring_inno {
    margin: 20px 0 30px;
  }

  .tala-wave .dyn_row {
    display: block;
    margin: 25px 0;
  }

  .tala-wave .dyn_row .col-sm-6:last-child {
    margin-top: 20px;
  }

  .tala-wave .dyn_row .col-sm-6:first-child {
    padding-right: 10px;
  }

  .tala-wave .spring_inno .row:last-child .col-sm-6:first-child {
    padding-right: 10px;
  }

  .tala-wave .spring_inno .row:last-child {
    width: 100%;
  }

  .tala-wave .sect6 {
    margin: 30px 0 10px;
  }

  .tala-wave .sect6 img:not(.bor) {
    margin: 15px 0 0;
  }

  .tala-wave .sect6 .col-sm-4 {
    margin-bottom: 20px;
  }

  .tala-wave .lightcream h2 {
    width: 90%;
    margin: 0 auto 20px;
  }

  .mattress_collection-info .lightcream {
    padding: 30px 0 40px;
  }

  .mattress_collection-info .tala-wave .lightcream {
    padding: 30px 0 20px;
  }

  .tala-wave .sect7 .row {
    display: block;
    margin-bottom: 25px;
  }

  .tala-wave .sect7 .text-det {
    padding: 0 10px;
    margin-top: 30px;
  }

  .tala-wave .sect7 .row:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .tala-wave .sect7 .row:last-child .col-sm-6:first-child {
    order: 2;
  }

  .tala-wave .sect7 .row:last-child .col-sm-6:last-child {
    order: 1;
    margin-bottom: 10px;
  }

  .collection-prod {
    margin: 25px 0 45px;
  }

  /* Latexworld */
  .latex-world .sect3 {
    margin: 35px 0 45px
  }

  .mattress_collection-info .latex-world .lightblue h2 {
    margin-top: 0;
    padding-top: 0;
  }

  .mattress_collection-info .latex-world .sect4 .first-one {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .latex-world .sect4 .first-one .col-sm-6:first-child {
    order: 2;
  }

  .latex-world .sect4 .first-one .col-sm-6:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .latex-world .sect4 ul li:first-child, .latex-world .sect4 ul li:last-child {
    padding: 5px;
  }

  .latex-world .sect4 .row:last-child {
    display: block;
  }

  .latex-world .sect4 .row:last-child img.bor {
    margin-bottom: 30px;
  }

  .small-img {
    width: 60%;
  }

  .latex-world .sect5 {
    margin: 35px 0 5px;
  }

  .latex-world .sect5 .col-sm-4 {
    padding: 0 15px;
    margin-bottom: 35px;
  }

  .latex-world .sect6 .row {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .latex-world .sect6 .row .col-sm-6:first-child {
    order: 2;
  }

  .latex-world .sect6 .row .col-sm-6:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .mattress_collection-info .latex-world .lightcream {
    padding: 25px 0;
  }

  /* Royale */
  .royale .sect2 ul {
    width: 100%;
    margin: 20px auto 0;
  }

  .royale .sect2 ul li {
    width: 33.33%;
    padding: 15px 10px;
  }

  .royale .sect2 ul li img {
    width: 65%;
  }

  .royale .lightcream {
    padding: 30px 0;
  }

  .royale .lightcream h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .royale .lightcream .row:not(.rotate-mobi) {
    display: block;
    margin-top: 20px;
  }

  .royale .lightcream .row:not(.rotate-mobi) img.bor {
    margin-bottom: 25px;
  }

  .rotate-mobi {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .rotate-mobi .col-sm-6:first-child {
    order: 2;
  }

  .rotate-mobi .col-sm-6:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .royale .lightcream .row:not(:last-child) {
    margin-bottom: 30px;
  }

  /* Hotel */
  .hotel .sect3 {
    margin-bottom: 45px;
  }

  .hotel .lightblue ul {
    width: 100%;
    margin: 15px auto 0;
    display: block;
  }

  .hotel .lightblue li {
    width: 100%;
  }

  .hotel .lightblue li:first-child {
    margin-top: -35px;
    margin-bottom: 25px;
  }

  .hotel .lightblue li:last-child {
    margin-bottom: 15px;
  }

  .hotel .lightblue li img {
    width: 140px;
  }

  .hotel .sect5 {
    margin: 35px 0;
  }

  .hotel .wid-cen {
    width: 100%;
  }

  .hotel .sect5 ul li {
    width: 50%;
  }

  .hotel .sect5 ul {
    width: 100%;
    margin: 20px auto 45px;
  }

  .hotel .sect5 img.small-img {
    width: 65%;
  }

  .mattress_collection-info .hotel .lightcream h2 {
    margin-bottom: 10px;
  }

  .mattress_collection-info .hotel .lightcream {
    padding: 30px 0 20px;
  }

  /* NormaBlock */
  .normablock .sect2 ul {
    width: 100%;
    margin: 20px auto 15px;
  }

  .normablock .sect2 ul li {
    width: 50%;
    margin-bottom: 25px;
  }

  .mattress_collection-info .normablock .sect2 {
    margin: 25px auto 0;
  }

  .normablock .lightcream .row {
    display: block;
  }

  .normablock .lightcream img.bor {
    margin-bottom: 35px;
  }

  .mattress_collection-info .normablock .lightcream {
    padding: 55px 0 45px;
  }

  .normablock .sect4 {
    margin: 35px 0 45px;
  }

  .normablock .sect4 ul.main {
    width: 100%;
    margin: 20px auto 15px;
  }

  .normablock .sect4 ul.main li {
    width: 50%;
    margin-bottom: 15px;
  }

  .mattress_collection-info .normablock .lightblue {
    padding: 50px 0 30px;
  }

  .normablock .lightblue .row {
    display: block;
  }

  .normablock .lightblue .text-det {
    margin-top: 30px;
  }

  /* CoolSilk */
  .coolsilk .sect2 ul {
    width: 100%;
    margin: 20px auto 5px;
  }

  .coolsilk .sect2 ul li {
    width: 33.33%;
    margin-bottom: 10px;
  }

  .coolsilk .sect2 ul li img {
    width: 68%;
  }

  .coolsilk .sect3 {
    margin-bottom: 45px;
  }

  .mattress_collection-info .coolsilk .lightblue {
    padding: 25px 0;
  }

  .cool-sect {
    display: block;
  }

  .cool-sect div {
    width: 100%;
    padding: 10px 10px 0;
  }

  .coolsilk .lightblue img {
    margin: 25px auto 10px;
  }

  /* De_stress */
  .de_stress .sect2 .container, .de_stress .sect3 .container, .de_stress .sect4 .container, .de_stress .sect5 .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .de_stress .sect2 ul {
    width: 100%;
    margin: 15px auto 0;
  }

  .de_stress .sect2 ul li {
    padding: 5px;
    width: 33.33%;
  }

  .de_stress .sect2 ul li img {
    width: 70%;
  }

  .mattress_collection-info .de_stress .sect2 {
    margin: 25px auto 0;
  }

  .de_stress .sect3 .container {
    padding: 0 !important;
  }

  .de_stress .sect4 {
    padding: 45px 0;
  }

  .whatis img {
    width: 70%;
  }

  .whatis .col-sm-6 {
    padding-bottom: 200px;
  }

  .whatis:before {
    right: -16%;
    bottom: -15%;
    zoom: 70%;
  }

  .de_stress .sect5 {
    padding: 45px 0 25px;
  }

  .de_stress .sect5 .row:first-child .col-sm-6:first-child {
    padding-right: 15px;
    margin-bottom: 25px;
  }

  .de_stress .sect5 .row:first-child img {
    width: 50%;
  }

  .de_stress .sect5 .row:first-child .col-sm-6:last-child {
    padding-left: 15px;
  }

  .de_stress .sect5 .row:last-child {
    display: block;
  }

  .de_stress .sect5 .row:last-child .col-sm-6:last-child {
    padding-left: 15px;
    margin-top: 25px;
  }

  .de_stress .sect5 .row:last-child h2 {
    font-size: 24px !important;
  }

  .store-locator .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .store-locator {
    padding: 0 0 25px;
  }
}

@media (min-width: 1450px) {
  .about-sect1 {
    padding: 120px 0;
  }
}
