  /*------------------------------------*\
  	Fonts
  \*------------------------------------*/

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

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

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

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

  /*------------------------------------*\
  Default Style
  \*------------------------------------*/

  input {
  /*outline: none !important;*/
  }

  html {
  position: relative;
  min-height: 100%;
  }

  body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'raleway';
  color: #000;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  li {
  padding: 0;
  margin: 0;
  font-weight: normal;
  }

  ul {
  list-style: none;
  }

  li {
  display: inline-block;
  }

  a {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  outline: none !important;
  }

  h1,
  h2 {
  font-size: 30px;
  text-align: center;
  font-family: 'raleway-bold';
  line-height: 36px;
  }

  h3 {
  font-family: 'raleway-bold';
  text-align: center;
  font-size: 25px;
  line-height: 28px;
  margin: 30px 0 5px;
  }

  p {
  font-size: 15px;
  line-height: 23px;
  margin-top: 20px;
  text-align: center;
  }

  .text-center h1,
  .text-center p {
  text-align: center;
  }

  .bold-text {
  font-family: 'raleway-bold';
  }

  p.mobile-margin,
  .mobile-margin p:last-child {
  margin-bottom: 15px;
  }

  @media(min-width: 1025px) {

  h1,
  h2 {
  font-size: 40px;
  line-height: 45px;
  text-align: left;
  }

  .center-bordered-title h2 {
  text-align: center;
  }

  h3 {
  text-align: left;
  font-size: 25px;
  margin: 35px 0 5px;
  }

  p {
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  }

  .mobile-margin p:last-child {
  margin-bottom: 0;
  }
  }

  /*------------------------------------*\
  Effects
  \*------------------------------------*/

  a,
  a:after,
  a:before,

  .btn,
  .btn:after,
  .btn:before,

  input,
  button,
  select,
  textarea,
  .menu-icon span,
  .thumbnails .slick-slide {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  }

  input,
  textarea,
  button,
  select,
  a,
  .mount-item,
  .menu-icon,
  .slick-arrow {
  -webkit-tap-highlight-color: transparent;
  }

  .menu-icon.active span:nth-child(1) { animation: ease .4s top forwards; }
  .menu-icon.not-active span:nth-child(1) { animation: ease .4s top-2 forwards; }
  .menu-icon.active span:nth-child(2) { animation: ease .4s scaled forwards; }
  .menu-icon.not-active span:nth-child(2) { animation: ease .4s scaled-2 forwards; }
  .menu-icon.active span:nth-child(3) {animation: ease .4s bottom forwards;}
  .menu-icon.not-active span:nth-child(3) { animation: ease .4s bottom-2 forwards; }

  @keyframes top {
  0% {
  top: 0;
  transform: rotate(0);
  }
  50% {
  top: 8px;
  transform: rotate(0);
  }
  100% {
  top: 8px;
  transform: rotate(45deg);
  }
  }

  @keyframes top-2 {
  0% {
  top: 8px;
  transform: rotate(45deg);
  }
  50% {
  top: 8px;
  transform: rotate(0deg);
  }
  100% {
  top: 0;
  transform: rotate(0deg);
  }
  }

  @keyframes bottom {
  0% {
  bottom: 0;
  transform: rotate(0);
  }
  50% {
  bottom: 8px;
  transform: rotate(0);
  }
  100% {
  bottom: 8px;
  transform: rotate(135deg);
  }
  }

  @keyframes bottom-2 {
  0% {
  bottom: 8px;
  transform: rotate(135deg);
  }
  50% {
  bottom: 8px;
  transform: rotate(0);
  }
  100% {
  bottom: 0;
  transform: rotate(0);
  }
  }

  @keyframes scaled {
  50% { transform: scale(0); }
  100% { transform: scale(0); }
  }

  @keyframes scaled-2 {
  0% { transform: scale(0); }
  50% { transform: scale(0); }
  100% { transform: scale(1); }
  }


  /*------------------------------------*\
  Global Style
  \*------------------------------------*/

  .page-header,
  .nav-primary,
  .page-main,
  .page-content,
  .page-footer,
  .masthead {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
  }

  .page-main {
  padding-top:43px;
  }

  @media(min-width: 1025px) {
  .page-main {
  padding-top:70px;
  }
  }


  .global-section {
  margin-top: 50px;
  }

  .global-section-margin-bottom {
  margin-bottom: 50px;
  }

  .padded-right-content {
  padding-right: 25px;
  }

  .bordered-title h1,
  .bordered-title h2,
  .center-bordered-title h2,
  .bordered-title h3,
  .powerline p
  {
  position: relative;
  padding-bottom: 15px;
  margin-top: 0 !important;
  }

  .bordered-title h1:after,
  .bordered-title h2:after,
  .center-bordered-title h2:after,
  .bordered-title h3:after
  {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  border-bottom: 2px solid #E8AC11;
  }

  .powerline p:nth-child(1):before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  border-bottom: 2px solid #E8AC11;
  margin-bottom:10px;
  }
  .mirrorfeedsline p:before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #E8AC11;
  margin-bottom:20px;
  }


  .slick-slider img {
  max-width: 100% !important;
  }

  @media(min-width: 1025px) {
  .global-section {
  margin-top: 100px;
  }

  .global-section-margin-bottom {
  margin-bottom: 100px;
  }
  }

  /*------------------------------------*\
  header
  \*------------------------------------*/

  .menu-icon {
  float: right;
  width: 32px;
  position: fixed;
  cursor: pointer;
  top: 10px;
  right: 20px;
  z-index: 12;
  transition: all 400ms ease-in-out;
  }
  .menu-icon span {
  display: block;
  background-color: #535353;
  height: 4px;
  width: 100%;
  border-radius: 4px;
  position: relative;
  transition: all 400ms ease-in-out;
  }
  .menu-icon span:not(:first-child) { margin-top: 4px; }


  .submenu li a {
  padding-left: 40px !important;
  }

  .submenu-flags-container {
  display: none;
  }

  .submenu-flags li a {
  padding-left: 65px !important;
  }

  .submenu-flags li a img {
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  width: 18px !important;
  }

  .hasachild {
  cursor: pointer;
  }

  .submenu-container { display: none; }


  @media(min-width: 1025px) {
  .submenu-container {
  position: absolute;
  left: 4px;
  top: 65px;
  width: 125px;
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
  }

  .submenu-container li {
  display: block !important;
  text-align: left;
  padding-bottom: 0 !important;
  margin-right: 0 !important;
  margin-top: -1px;
  }

  .separator.submenu li{
  display: block;
  }
  

  .desktop-hover {
  position: relative;
  }

  .desktop-hover:hover>.submenu-container {
  display: block;
  visibility: visible;
  opacity: 1;
  background-color: #F4EFEE;
  }

  .submenu li a {
  padding: 15px 10px !important;
  background-color: rgba(51, 51, 51, 1);
  color: #fff;
  line-height: normal !important;
  }

  .submenu li a:hover {
  color: #fff;
  
  }

  .desktop-hover:hover .hasachild {
  color: #c99e62;
  }

  .nav-primary li:not(:last-child) {
  margin-right: 30px;
  }


  .desktop-hover.mvhighlight .hasachild {
  width: 100%;
  position: relative !important;
  margin-right: 20px;
  }

  .desktop-hover.mvhighlight .hasachild img {
  position: absolute !important;
  top: 25px;
  right: -28px;
  }
  .submenu-container ul.separator>li:nth-child(1){
  border-bottom: 1px solid rgba(209, 209, 209, 0.5);
  }

  .submenu-flags-container {
  width: 180px;
  left: auto;
  right: -10px;
  border-bottom: 1px solid #d1d1d1!important;
  }

  .submenu-flags-container li {
  border: 1px solid #d1d1d1;
  }

  .submenu-flags-container li a {
  padding: 10px 10px 10px 35px !important;
  background-color: #fff;
  color: #666;
  }

  .submenu-flags-container li a:hover {
  color: #000;
  background-color: #fff;
  }

  .submenu-flags-container {
  display: block;
  }

  .submenu-flags li a img {
  left: 10px;
  }
  }

  .submenu-flags a {position: relative;}


  .hasachild span { position: relative!important;}

  .hasachild img {
  width: 10px !important;
  top: calc(50% - 5px);
  right: 20px;
  position: absolute;
  }

  .blackmenu {
  background: rgba(255, 255, 255, 1);
  }

  .blackmenu.stickyheader img:nth-child(2) {
  opacity: 0;
  }

  .blackmenu.stickyheader {
  background: rgba(51, 51, 51, .72);
  }

  .blackmenu.stickyheader li a, .blackmenu.stickyheader li span{
  color: #ffff;
  }

  .stickyheader .menu-icon span{
  background-color: #ffff;
  }

  .logo {
  position: relative;
  left: -14px;
  }
  .logo img:last-child{
  position: absolute;
  top:0;
  left:0;
  }
  .submenu-flags-container li a {color: #666!important; background-color: #fff!important; border-top: 1px solid #d1d1d1;}

  /*end*/
  .page-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flow-root;
  padding: 5px!important;
  background-color: #fff;
  }

  .logo {
  width: 100px;
  }

  .nav-primary {
  position: absolute;
  top: 38px;
  left: -10px;
  width: calc(100% + 20px);
  box-shadow: 0 4px 6px -6px black;
  display: none;
  /*     max-height: calc(100vh - 63px); */
  max-height: calc(85vh - 62px);
  overflow-x: hidden;
  overflow-y: scroll;
  }

  .nav-primary li {
  display: block;
  }

  .nav-primary li a,
  .nav-primary li span {
  padding: 0 20px;
  line-height: 42px;
  display: block;
  width: 100%;
  font-size: 14px;
  color: #ffff;
  font-family: 'poppins';
  position: relative;
  cursor: pointer;
  background: rgba(51, 51, 51, .72);
  /*border-top: 1px solid #d1d1d1; */
  }

  .nav-primary li span img {
  position: absolute;
  width: 10px !important;
  top: 16px;
  right: 20px;
  z-index: 2;
  }

  @media(min-width: 1025px) {
  .nav-primary li a,
  .nav-primary li span {
  background-color: #ffff;
  color: #1A1A1A;
  }

  .page-header {
  /*        padding: 10px 0;   */
  padding: 0;
  }
  .page-header .col-xxs-12 { text-align: center; }

  .logo {
  width: 132px;
  float: left;
  margin-top: 8px;
  }

  .nav-primary {
  width: auto;
  display: inline-block;
  float: right;
  position: relative;
  top: 0;
  box-shadow: none;
  background-color: transparent;
  overflow-x: inherit;
  overflow-y: inherit;
  }


  .nav-primary li {
  display: inline-block;
  padding-bottom: 0;
  /*         padding-bottom: 21px; */
  }

  .nav-primary li a,
  .nav-primary li span {
  color: #000000;
  font-size: 14px;
  line-height: 60px;
  font-family: 'poppins';
  padding: 0;
  background-color: transparent;
  line-height: 60px;
  border-top: none;
  }

  .nav-primary li a:hover,
  .nav-primary li span:hover,
  .desktop-hover:hover .hasachild {
  color: #ffcb2b;
  }
  .nav-primary li:not(:last-child) { margin-right: 50px; }
  }

  @media(min-width: 1200px) {
  .nav-primary li:not(:last-child) { margin-right: 38px; }
  }


  /*------------------------------------*\
  Footer
  \*------------------------------------*/

  .page-footer {
  background-color: #181816;
  color: #fff;
  }

  .footer-main {
  padding: 30px 0;
  }

  .footer-logo {
  max-width: 148px;
  margin: 0 auto;
  }

  .footer-main p {
  font-size: 13px;
  line-height: 18px;
  text-align: justify;
  margin-top: 25px;
  }

  .footer-main span {
  display: block;
  font-family: 'raleway-bold';
  font-size: 18px;
  margin-top: 40px;
  }

  .footer-main li {
  display: block;
  margin-top: 15px;
  }

  .footer-main li a {
  position: relative;
  color: #fff;
  font-size: 13px;
  padding-left: 28px;
  }

  .footer-main li p {
  margin-top: 0;
  font-size: 13px;
  position: relative;
  padding-left: 28px;
  }

  .footer-main li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  }

  .footer-main li:nth-child(1) img {
  top: 3px;
  }

  .footer-main li:nth-child(7) {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  }

  .footer-main li:nth-child(7) a {
  padding-left: 0;
  font-size: 18px;
  }

  .sac-link {
  width: 100%;
  max-width: 250px;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  padding: 10px;
  background-color: #E8AC11;
  color: #000;
  border-radius: 5px;
  font-size: 16px;
  }

  .sac-link:hover {
  background-color: #fff;
  color: #ffcb2b;
  }

  .sac-link img {
  position: absolute;
  left: 15px;
  }

  .sac-link:hover img:nth-child(2) {
  opacity: 0;
  }

  .instagram-link {
  max-width: 200px;
  margin-top: 20px;
  }

  .copyright p {
  text-align: center;
  border-top: 1px solid #fff;
  font-size: 12px;
  padding: 20px 0;
  line-height: 20px;
  }

  @media(min-width: 1025px) {
  .footer-main {
  padding: 30px 0 40px;
  }

  .footer-main .col-md-4 {
  padding-left: 35px;
  }

  .footer-main span {
  margin-top: 20px;
  margin-bottom: 35px;
  }

  .sac-link {
  margin: 20px auto 0;
  }

 
  }




/*------------------------------------*\
    Cookie Banner
\*------------------------------------*/

.cky-notice-des p a {
	color: #fff;
	font-family: 'raleway';
}
.cky-notice-des p a:hover { color: #AA2926; }
.cky-title { display: none; }


  /*------------------------------------*\
  Arrows and Others
  \*------------------------------------*/

  .left-arrow-frames,
  .banner-prev,
  .left-arrow {
  transform: scaleX(-1);
  }

  .right-arrow-frames,
  .banner-next,
  .right-arrow {
  left: auto;
  }

  .left-arrow-frames,
  .right-arrow-frames,
  .banner-prev,
  .banner-next,
  .left-arrow,
  .right-arrow {
  display: none !important;
  }

  @media(min-width: 1025px) {

  .left-arrow-frames,
  .right-arrow-frames,
  .banner-prev,
  .banner-next,
  .left-arrow,
  .right-arrow {
  display: block !important;
  position: absolute;
  height: auto;
  cursor: pointer;
  z-index: 2;
  }

  .banner-prev,
  .banner-next {
  top: calc(50% - 36px);
  width: 35px;
  }

  .left-arrow-frames,
  .right-arrow-frames {
  top: 60%;
  }

  .left-arrow-frames,
  .banner-prev {
  left: 25px;
  }

  .right-arrow-frames,
  .banner-next {
  right: 25px;
  }

  .left-arrow,
  .right-arrow {
  top: 40%;
  width: 20px;
  }

  .left-arrow {
  left: 15px;
  }

  .right-arrow {
  right: 15px;
  }
  }

  /*------------------------------------*\
  Homepage - Banner
  \*------------------------------------*/

  .banner-slider-container {
  position: relative;
  background-color: #000;
  }

  .banner-img {
  height: auto !important;
  width: 100% !important;
  background-position: center;
  background-size: cover;
  }

  /*------------------------------------*\
  Slick Slider
  \*------------------------------------*/

  .slides img,
  .thumbnails img {
  width: 100% !important;
  height: auto !important;
  }

  .thumbnails {
  background-color: #000;
  overflow: hidden;
  }

  .thumbnails .slick-slide {
  margin: 6px 3px;
  opacity: 0.5 !important;
  }

  .thumbnails .slick-slide:hover,
  .thumbnails .slick-slide.slick-current {
  opacity: 1 !important;
  }

  .slider-container {
  position: relative;
  }

  .frames-thumbnails {
  background-color: #fff;
  overflow: hidden;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
  }

  .frames-thumbnail {
  width: 100% !important;
  height: auto !important;
  }

  .frames-thumbnails .slick-slide {
  margin: 6px 3px;
  opacity: 0.5 !important;
  }

  .frames-thumbnails .slick-slide:hover,
  .frames-thumbnails .slick-slide.slick-current {
  opacity: 1 !important;
  }

  @media(min-width: 1024px) {
  .frames-thumbnails {
  width: 80% !important;
  padding: 0 30px;
  }
  }

  /*------------------------------------*\
  Image Select
  \*------------------------------------*/

  .intro-large-img-container {
  position: relative;
  }

  .intro-vid {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  }

  .intro-vid.active {
  position: relative;
  opacity: 1;
  }
  .dv-thumbnails-container-4,
  .dv-thumbnails-container-5,
  .dv-thumbnails-container,
  .intro-thumbnails-container {
  display: grid;
  padding: 10px 0;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-row-gap: 10px;
  }

  .intro-thumbnail {
  padding: 0 5px;
  opacity: 0.5;
  }

  .intro-thumbnail.active {
  opacity: 1;
  }

  @media(min-width: 600px) {
  .intro-thumbnails-container {
  width: 60%;
  }

  .dv-thumbnails-container {
  width: 100%;
  grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
  }

  .dv-thumbnails-container-5 {
  width: 83%;
  grid-template-columns: 20% 20% 20% 20% 20%;
  }
  .dv-thumbnails-container-4 {
  width: 83%;
  grid-template-columns: 25% 25% 25% 25%!important;
  }
  }

  /*------------------------------------*\
  Image Filter
  \*------------------------------------*/

  .filtered-frames {
  display: block;
  }

  .filtered-img {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 10px;
  }

  .filtered-img img {
  position: relative;
  width: 100%;
  height: auto;
  }

  .filtered-img .filter {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  }

  .filtered-img:after {
  content: '\A';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 1;
  transition: all .5s;
  -webkit-transition: all .5s;
  }

  .filtered-img h3 {
  position: absolute;
  bottom: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
  line-height: 30px;
  color: #fff;
  }

  .image-overlay img {
  position: absolute;
  width: 50px;
  margin-left: 10px;
  top: 0px;
  z-index: 2;
  }

  .filtered-img:hover .image-overlay img,
  .filtered-img:hover:after {
  opacity: 0;
  }

  .filtered-img:hover .filter {
  -webkit-filter: grayscale(0);
  filter: none;
  }

  .filtered-img:hover h3 {
  color: #000;
  }

  @media(min-width: 1025px) {
  .filtered-frames {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
  }

  .filtered-img h3 {
  bottom: 10px;
  }

  .image-overlay img {
  width: 90px;
  }
  }

  /*------------------------------------*\
  Image FullScreen
  \*------------------------------------*/

  .fullscreen img {
  position: relative;
  }

  .fullscreen-content {
  position: absolute;
  display: block;
  top: 0;
  margin: 0;
  padding: 0 15px;
  }

  .fullscreen-content .klogo {
  display: block;
  max-width: 100%;
  margin: 25px auto;
  }

  .fullscreen-content h2,
  .fullscreen-content p {
  text-align: center;
  color: white;
  }

  @media(min-width: 1025px) {
  .fullscreen-content {
  width: 70%;
  top: 170px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  }

  .fullscreen-content .container {
  margin: 0;
  padding: 0;
  }

  .fc-content {
  width: 47%;
  }

  .fullscreen-content .klogo {
  margin: 0 0 30px 0;
  }

  .fullscreen-content h2,
  .fullscreen-content p {
  text-align: left !important;
  }
  }

  .op-system-weight{
  letter-spacing: 2px;
  line-height: 40px;
  font-size: 20px;
  font-family: 'raleway-bold';
  }

  .ope-system{
  padding: 0 5px;
  }

  img.ope-system {
  opacity: 0.5;
  }
  .ope-item {display: none !important; margin-bottom: 0 !important;}
  .ope-item.active {display: block !important;}
  .ope-system.active{opacity: 1;}
  span.ope-system.active p.op-system-weight,
  span.ope-system p.op-system-weight:hover {
  color: #E8AC11;
  }

  .img-pos img{
  height:70px;
  }
  .img-pos {
  display: flex;
  align-items: center;
  margin-bottom: 10px; 
  }

  .img-pos img {
  margin-right: 20px; 
  opacity: 1!important;
  }


  /*mounting option*/
  .mounting-option{padding: 0 5px;}
  img.mounting-option {opacity: 0.5;}
  .mounting-item {display: none !important; margin-bottom: 0 !important;}
  .mounting-item.active {display: block !important;} 
 .mounting-option.active{opacity: 1;} 
  span.mounting-option.active p.op-system-weight,
  span.mounting-option p.op-system-weight:hover {color: #E8AC11;} 

  /*special-mounting option*/
  .special-mounting-option{padding: 0 5px;}
  img.special-mounting-option {opacity: 0.5;}
  .special-mounting-item {display: none !important; margin-bottom: 0 !important;}
  .special-mounting-item.active {display: block !important;} 
  .mounting-option.active{opacity: 1;} 
  span.special-mounting-option.active p.op-system-weight,
  span.special-mounting-option p.op-system-weight:hover {color: #E8AC11;} 





  .img-pos-mounting img{height:70px;}
  .img-pos-mounting {display: flex; align-items: center; margin-bottom: 10px; }
  .img-pos-mounting img {margin-right: 10px; opacity: 1!important;}

  .grid-placement{display: grid!important; grid-template-columns: 33.33% 33.33% 33.33%;}
.grid-placement-two{display: grid!important; grid-template-columns: 50% 50%;}

  .gallery-slider div img {
  padding: 2px;
  margin: 0 auto;
  }

  td,tr{font-family:Raleway,sans-serif}
  img{max-width:100%}
  table{border-collapse:collapse; width: 100%; border-spacing: 0;}
  tr{border:1px solid #d1d1d1;border-right:none;border-left:none}
  td, th{padding:20px 7px;text-align:center;}
  td:first-child{text-align:left;font-family:'raleway-bold';}
  .table-responsive {overflow-y: hidden; overflow-x: scroll;}
  button#toggle, button#more-toggle {
  width: 100%;
  background: #E8AC11;
  color: #fff;
  padding: 5px;
  outline: 0;
  border: none;
  }

  @media (min-width: 320px) and (max-width: 991px) {
  table.specifications tbody tr td:first-child,
  table.specifications thead tr th:first-child { 
  position: sticky; 
  left: -1%;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  z-index: 1;
  }
  
  table.specifications thead tr th:first-child { border: 0;}
  
  table.specifications tbody tr td:first-child:before,
  table.specifications thead tr th:first-child:before {
  background: -webkit-gradient(linear,left top,right top,color-stop(60%,#fff),to(rgba(255,255,255,0)));
  background: linear-gradient(90deg,#fff 55%,rgba(255,255,255,0) 100%);
  display: block;
  content: '';
  opacity: 1;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: 116px;
  pointer-events: none;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  left: 2px;
  }
  
  table.specifications thead tr th:first-child { font-size: 0;}
  
  table.specifications thead th,
  table.specifications thead tr { border: none;}
  
  .table-responsive img { max-width: none;}
  
  td, th {
  width: 50%;
  vertical-align: bottom;
  font-size: 12px;
  }
  
  td { border: 1px solid #d1d1d1; }
  }
  .customer-sec{
  margin: 0 auto;
  height: 100%;
  text-align: center!important;
  }


  .hospitality-slider{
  position: relative;

  }

  .hospitality-prev{transform: scaleX(-1);}
  .hospitality-next{left: auto;}
  .hospitality-prev,
  .hospitality-next {display: none !important;}
  @media(min-width: 1025px) {
  .hospitality-prev,
  .hospitality-next{ 
  display: block !important;
  position: absolute;
  height: auto;
  cursor: pointer;
  z-index: 2;}
  .hospitality-prev,
  .hospitality-next {
  top: calc(50% - 20px);
  width: 50px;
  }
  .hospitality-prev{
  left: -29px;
  }
  .hospitality-next{
  right: -24px;
  }
  }

  @media(max-width: 1024px) {.hospitality-slider div img{padding:10px;} .op-system-weight {text-align:left!important; letter-spacing:1px;} .mobile-pad h2 {padding-top: 20px;}}

  .view-font{
  letter-spacing: 2px;
  line-height: 40px;
  font-size: 20px;
  font-family: 'raleway-bold';
  }

  .mirrorfeedsline p{margin-top:5px!important;}
  iframe.mv-frames {width: 100%; height: 1000px;}

  .submenu-flags {background-color:#ffff;}

  /*------------------------------------*\
  Menu Active Links
  \*------------------------------------*/

  .page-id-7 .nav-primary li:nth-child(1) a,
  .page-id-532 .nav-primary li:nth-child(2) a,
  .page-id-98 .nav-primary li:nth-child(3) a,
  .page-id-527 .nav-primary li:nth-child(5) a { color: #f4c73e; }

  .wpcf7-response-output {display:none!important;}


  .inspo-gallery {
  display: flex;
  }
  .grid-container {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 1px;
  }
  @media(min-width: 1025px) {
  .grid-container {
  grid-template-columns: 25% 25% 25% 25%;
  }

  .popup-image {
  max-width: 100%;
  }

  .close-btn {
  right: 50px!important;
  }
  }

  .inspo-gallery img {
  padding: 10px;
  }

  .grid-container img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  }

  .grid-container img:hover {
  transform: scale(1.07);
  cursor: pointer;
  }

  .category-btn {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  background-color: #fafafa;
  border: 1px solid #E8AC11;
  /* width: calc(24% - 8px);*/
  /*width: 100%;*/
  margin: 8px;
  padding: 8px 12px;
  text-align: center;
  color: black;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  }
  .category-btn.active {
   background-color: #E8AC11;
  color: #fff
  }
  .category-btn:hover {
  background-color: #E8AC11;
  color: #fff
  }


  .popup-container {
  display:none;
  position: fixed;
  z-index: 9999;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  width: 100vw;
  height: 100vh;
  }
  .pop-contain{
  width: 100vw;
  height: 100vh;
  display:flex;
  position:absolute;
  left: 0;
  top:0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  }

  .close-btn {
  position: absolute;
  top: 0px;
  right: 20px;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  }
  .frames-category{
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
  padding-bottom: 25px;
  padding-right: 10px;
  }


  @media(min-width: 1025px) {
  .frames-category{
  display: block;
  padding-right: 0;
  padding: 50px;
  }
  .category-btn{
  width: 23%;
  }
  }



.page-id-7 .banner-img {
    width: 100%!important;
    background-position: center;
    background-size: cover;
    height: 38vh!important;
}

  @media(min-width: 600px) {
.page-id-7 .banner-img {
height: 50vh!important; 
	  }}

  @media(min-width: 1025px) {
.page-id-7 .banner-img {
height: 100vh!important; 
	  }}

.gallery-btn {
    width: 100%;
    max-width: 250px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    padding: 10px;
    background-color: #ffcb2b;
    color: #000;
    font-size: 16px;
}

.gallery-btn a{
color: #ffff;
}

.gallery-btn a:hover{
color: black;
}

video.mounting-option {
    opacity: 0.5;
}

.img-ope-system-responsive {
    display: inline-block;
    max-width: 100%;
    height: auto !important;
    margin-bottom: -6px;
}



/*testingggg*/
/*testingggg*/

.page-id-7 .banner-slider{
    height: 230px;
    overflow: hidden;
}

.page-id-7 .banner-img {
    height: 230px !important;
    width: 100%;
	object-fit: cover;
	margin-bottom: 0 !important;
}

.page-id-7 .banner-slider {
    margin-bottom: -1px;
}

@media(min-width: 600px) {

   .page-id-7 .home-banner-slider img,
   .page-id-7 .home-banner-img,
   .page-id-7 .home-banner-slider {
        height: 180px !important;
    }

   .page-id-7 .banner-slider img,
   .page-id-7 .banner-img,
   .page-id-7 .banner-slider,
   .page-id-7 .tc-flex-banner {
        height: 290px !important;
    }
}

@media(min-width: 768px) {

   .page-id-7 .home-banner-slider img,
   .page-id-7 .home-banner-img,
   .page-id-7 .home-banner-slider {
        height: 230px !important;
    }

   .page-id-7 .banner-slider img,
   .page-id-7 .banner-img,
   .page-id-7 .banner-slider,
   .page-id-7 .tc-flex-banner {
        height: 370px !important;
    }
}

@media(min-width: 1025px) {

   .page-id-7 .home-banner-slider img,
   .page-id-7 .home-banner-img,
    .page-id-7 .home-banner-slider {
        height: 270px !important;
    }

    .page-id-7 .banner-prev,
   .page-id-7 .banner-next {
        display: block !important;
		width: 35px!important;
    }

   .page-id-7 .banner-slider-container .slick-hidden {
        display: none !important;
    }

   .page-id-7 .banner-slider img,
    .page-id-7 .banner-img,
    .page-id-7 .banner-slider,
    .page-id-7 .tc-flex-banner {
        height: 470px !important;
    }
}

@media(min-width: 1200px) {

   .page-id-7 .home-banner-slider img,
   .page-id-7 .home-banner-img,
   .page-id-7 .home-banner-slider {
        height: 500px !important;
    }

    .page-id-7 .banner-slider img,
    .page-id-7 .banner-img,
    .page-id-7 .banner-slider,
    .page-id-7 .tc-flex-banner {
        height: 595px !important;
    }
}

@media(min-width: 1500px) {

    .page-id-7 .banner-slider img,
    .page-id-7 .banner-img,
    .page-id-7 .banner-slider {
        height: 800px !important;
    }
}

@media(min-width: 1800px) {

    .page-id-7 .banner-slider img,
    .page-id-7 .banner-img,
	.page-id-7 .banner-slider {
        height: 825px !important;
    }
}
.back-img-container { position: relative; }
		.magnifying {
			position: absolute;
			border-radius: 50%;
			border: 2px solid #E8AC11;
			cursor: none;
			width: 150px;
			height: 150px;
			top: 0;
			left: 0;
			z-index: 999;
			display:none;
			
		}

		@media (min-width: 1025px) {
			.magnifying.active { display: block; }
			.desk-float{text-align: left!important;}
		}

.pos-rela{
position:relative;
}

.custom-img{
width:170px;
}

.back-home {
    background-color: #E8AC11;
    max-width: 200px;
    padding: 20px;
    margin: 25px auto;
}
.error-container a {
    color: #ffff;
    font-weight: 600;
   	font-family: 'raleway-bold';
}
.error-container {
    text-align: center;
    align-items: center;
    margin: 50px;
}


.rq-mount-btn {
	display: inline-block !important;
	cursor: pointer;
	padding: 0 !important;
	color: #e5ae49;
	margin-top: 10px;
	font-size: 14px!important;
}
.rq-mount-opacity {
    background: rgba(51, 51, 51, .5);
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999999999999;
    display: none;
}
.rq-mount-flex {
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    align-items: center;
}
.rq-mount-center {
    max-width: 500px;
    text-align: center;
    padding: 20px;
    position: relative;
}
.rq-mount-close {
    position: absolute;
    width: 20px !important;
    cursor: pointer;
    z-index: 2;
    top: 35px;
    right: 35px;
}

.popup-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  margin: auto;
  display: block;
  max-width: 80%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*------------------------------------*\
    Pop-up
\*------------------------------------*/
.pop-info-opacity {
    background: rgba(51, 51, 51, .5);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999999999999;
    display: none;
}

.pop-info-flex {
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.pop-info-center {
    max-width: 800px;
    max-height: 500px;
    text-align: center;
    padding: 30px 0 30px 30px;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #f4c73e;
    margin: 30px;
}

.pop-scroll {
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 440px;
    padding-right: 30px;
}

.pop-scroll strong {
    font-family: 'raleway-bold' !important;
}

.pop-scroll p:first-child {
    margin-top: 0;
}

.pop-scroll p {
    text-align: left;
    margin-bottom: 0;
    margin-top: 15px;
    line-height: 22px;
	font-size: 15px !important;
}

.pop-scroll p a {
    color: #272626;
}

.pop-scroll p a:hover {
    color: #f4c73e;
}

.pop-scroll ul {
    margin-top: 15px;
    text-align: left;
}

.pop-scroll li {
    display: block !important;
    line-height: 22px;
	font-size: 15px !important;
}

.global-section-margin-bottom { margin-bottom: 50px; }

@media(min-width: 1025px) {
	.global-section-margin-bottom { margin-bottom: 80px; }
}

/*------------------------------------*\
    Blog
\*------------------------------------*/

.blog-section,
.blog-div { margin-top: 20px; }
.blog-div:first-child { margin-top: 0; }
.blog-img a { width: 100%; }
.blog-img img {
	width: 100% !important;
	height: auto !important;
	margin-bottom: -6px !important;
}
.blog-title { margin-top: 25px; }
.blog-title a { color: #333; }
.blog-content p { margin-top: 20px; }
.blog-content a.read-blog {
	margin-top: 30px !important;
    padding: 15px 20px !important;
    line-height: 16px !important;
    background-color: #ffcb2b !important;
    color: #000 !important;
    border-radius: 4px !important;
    font-size: 16px !important;
}

.sidebar {
	max-width: 300px;
    margin: 40px auto 0;
}

@media (min-width: 1025px) {
	.blog-section, .blog-div { margin-top: 80px; }
	.blog-section:first-child { margin-top: 80px; }
	.blog-div:first-child  { margin-top: 0; }
	
	.sidebar {
		max-width: 100%;
    	margin: 0 auto;
	}
}

.blog-content p a { color: #ffcb2b; }

@media (min-width: 1025px) {
	.blog-img-center img { max-width: 450px; }
	.blog-img-left .img-link {
		max-width: 360px;
		float: left;
		margin-right: 30px;
		margin-bottom: 15px;
	}
	.blog-img-right .img-link {
		max-width: 360px;
		float: right;
		margin-left: 30px;
		margin-bottom: 15px;
	}
	.blog-img-left .img-link-small,
	.blog-img-right .img-link-small {max-width: 450px;}
}

/*------------------------------------*\
    Blog - Sidebar
\*------------------------------------*/

.widget_block h3 {
	margin-top: 0;
	text-align: center;
	font-family: 'montserrat-bold';
	font-size: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.wp-block-categories li { display: block; }
.wp-block-categories li:not(:first-child) { margin-top: 10px; }
.wp-block-categories li a {
	background-color: #ffcb2b;
    color: #000;
	text-align: center;
	width: 100%;
	padding: 5px;
	font-size: 14px;
}

/*------------------------------------*\
    Blog - Single
\*------------------------------------*/

.share-div { margin-top: 30px; }
.share-div span {
	display: inline-block;
	font-family: 'montserrat-bold';
}
.share-div a {
	display: inline-block;
	width: 30px;
	margin-left: 5px;
}

.blog-banner img{
padding-top:10px;
width:100%;
}

.tzinnershare img{
	width: 40px;
}

ul.tzinnershare {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog-title h2{
    font-size: 25px;
    line-height: 40px;
}

.blog-content li {
    padding-left: 10px;
    display: list-item;
    list-style-type: disc;
}
.blog-content ul {
  font-family: 'raleway';
    padding-top: 20px!important;
    padding-left: 35px!important;
}

.blog-content li a {
    color: #c99e62;
}

@media(max-width: 1024px) {
.wp-block-categories li a {
margin-bottom: 10px;
}
}

/*------------------------------------*\
    New Blog
\*------------------------------------*/

.blog-container {
	float: left;
	width: 100%;
}
.blog-item {
	float: left;
	width: 100%;
	padding: 0 10px;
	margin-top: 20px;
}
.blog-item:nth-child(1) { margin-top: 0; }
.blog-item a {
	float: left;
	width: 100%;
	position: relative;
	padding-top: 100%;
}
.blog-item img {
	float: left;
	position: absolute;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
	z-index: 1;
}
.blog-info {
	position: absolute;
	width: 100%;
	padding: 20px;
	left: 0;
	bottom: 0;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.8);
	color:#222;
}
.blog-info h3 {
	margin-top: 0;
	font-family: "montserrat-regular";
	text-transform: uppercase;
	font-size: 19px;
	text-align: left;
}
.blog-date {
	padding-top: 10px;
	font-size: 14px;
	display: block;
}
.blog-categ {
	display: inline-block;
	background-color: #E8AC11;
	color: #fff;
	font-family: "montserrat-regular";
	text-transform: uppercase;
	font-size: 11px;
	padding: 5px 15px;
	margin-bottom: 15px;
	border-radius: 50px;
}

.blog-hide {
	float: left;
	width: 100%;
	margin-top: 20px;
	display: none;
}
.blog-item-view .blog-info { display: none; }
.blog-item-view { position: relative; }
.blog-view {
	position: absolute;
	width: calc(100% - 20px);
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	top: 0;
	left: 10px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-view-all {
	cursor: pointer;
	display: inline-block;
	background-color: #aa2926;
	color: #fff;
	border-radius: 50px;
	font-size: 16px;
	padding: 10px 25px;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.blog-item { width: 33.33%; }
	.blog-item:nth-child(2),
	.blog-item:nth-child(3) { margin-top: 0; }
}

/*------------------------------------*\
    Blog Category
\*------------------------------------*/

.blog-category {
	float: left;
	width: 100%;
	text-align: center;
	background-color: #f4f4f4;
	padding: 30px 30px;
}
.blog-category a {
	text-transform: uppercase;
	font-size: 13px;
    padding: 15px 30px;
	background-color: #fff;
	border: 1px solid #acacac;
	border-radius: 5px;
	display: block;
	margin-top: 10px;
	color: #222;
}
.blog-category a:hover,
.blog-category a.blog-active {
	color: #fff;
	background-color: #E8AC11;
	border: 1px solid #E8AC11;
}
.blog-category a:first-child { margin-top: 0; }

@media (min-width: 1025px) {
	.blog-category a {
		display: inline-block;
		margin-left: 10px;
		margin-top: 0;
	}
	.blog-category a:first-child { margin-left: 0; }
	.blog-category a:nth-child(2) { margin-left: 5px; }
	.blog-category { padding: 30px 0; }
}

.single-post .blog-categ { margin: 30px 0 0; }
.single-post main .container { max-width: 1200px; }


.no-banner-margin-blog {
    margin-top: 0px;
}


@media(min-width: 1025px) {


    .no-banner-margin-blog {
        margin-top: 100px;

}
}

/* ------------------- *\
 	New Sticky Footer
\* ------------------- */
.sticky-quote {
	position: fixed;
    display: flex;
    background-color: white;
    width: 100%;
    height: 55px;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, .1);
	padding: 10px;
	gap: 15px;
	z-index: 999999999 !important;
}

.sticky-quote div {
	background-color: #fff;
    border: 1px solid #D0D1D2;
    height: 35px;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 70px;
    width: 100%;
    border-radius: 5px;
}

.sticky-quote div.quote-btn {
	max-width: 320px !important;
	border: 1px solid #E8AC11;
	background-color: white !important;
}

.sticky-quote div:hover {
	background-color: #f6f6f6 !important;
	cursor: pointer;
}

.sticky-quote div a {
	color: #333333;
	font-size: 14px !important;
}

.sticky-quote div.quote-btn a {
	color: #E8AC11 !important;
}

.sticky-quote img {
	width: 20px !important;
	height: auto;
	margin-bottom: -5px !important;
}

.page-id-527 .sticky-quote {
	display: none !important;
}

.whatsapp-icon {
	display: none;
}

.page-id-527 .whatsapp-icon {
	display: block !important;
}

@media (min-width: 1025px) {
	.sticky-quote {
		height: 65px !important;
	}
	
	.sticky-quote div {
		height: 40px !important;
	}

	.sticky-quote div a {
		font-size: 16px !important;
	}

	.sticky-quote img {
		width: 25px !important;
		margin-bottom: -6px !important;
	}
}

/*------------------------------------*\
    DecoVue Banner
\*------------------------------------*/

	.framepage-slider-container {
		position: relative;
		background-color: #000;
	}

	.framepage-slider-img {
		height: auto !important;
		width: 100% !important;
		background-position: center;
		background-size: cover;
	}

	.arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background-color: transparent;
		background-image: url(https://www.decovue.com/wp-content/uploads/banner-arrow.webp);
		background-repeat: no-repeat;
		background-size: contain;
		width: 40px;
		height: 40px;
		border: none;
		cursor: pointer;
	}

	.left-arrow {
		left: 10px;
		transform: translateY(-50%) rotate(180deg);
	}

	.right-arrow {
		right: 10px;
		transform: translateY(-50%);
	}

/*------------------------------------*\
    DecoVue Frames
\*------------------------------------*/

.frames-h1 {
    text-align: center;
}

.dv-frames-category {
    text-align: center;
    width: 100%;
}

.dv-frames-category .category-btn.active {
    background-color: #c99e62;
    border-color: #c99e62;
    color: #fff;
}

.dv-frames-category .category-btn {
    font-family: 'raleway', sans-serif;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #c99e62;
    width: calc(23% - 8px);
    margin: 8px;
    padding: 8px 12px;
    text-align: center;
    color: black;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
}

.dv-frames-category .category-btn:hover {
    background-color: #c99e62;
    border-color: #c99e62;
    color: #fff;
}

.dv-frames-img {
    grid-template-columns: 25% 25% 25% 25%;
    display: grid;
}

.dv-frames-img li {
    padding: 20px;
}

.dv-frames-img .all img {
    cursor: pointer;
	margin-bottom: 7px !important;
}

.dv-frames-img .frames-img li video {
    margin-bottom: 14px;
}

.dv-frames-img .global-section video {
    float: left;
}

.dv-frames-img .comp-img img, video {
    width: 100% !important;
    height: auto !important;
}

.dv-frames-img span {
	font-size: 18px;
    font-weight: 700;
}

.dv-frames-img p {
	font-size: 13px;
    margin-top: 0;
    text-align: left !important;
}

@media (max-width: 868px) {
    .dv-frames-category .category-btn {
        width: 60%;
    }
	
	.dv-frames-img {
        grid-template-columns: 50% 50%;
    }
	
	.dv-frames-img li {
        padding: 10px;
    }
}

.socmed-section {
	display: flex;
	justify-content: center;
	gap: 20px;
/* 	margin-top: 40px; */
}

.socmed-section a {
	width: 40px !important;
}

.socmed-icon {
	transition: transform 0.3s ease;
}

.socmed-icon:hover {
	transform: scale(1.3);
}

.socmed-section {
	max-width: 280px !important;
	margin: auto !important;
	margin-top: 40px !important;
}

.footer-center .shipping {
	text-align: center !important;
	font-family: 'NNS-bold' !important;
}

@media(min-width: 1025px) {
	.footer-center .shipping {
		text-align: left !important;
	}
}

/*------------------------------------*\
    SocMed Footer
\*------------------------------------*/
.footer-right-end {
    max-width: 280px !important;
    margin: auto !important;
}

.store-div {
    display: grid;
    grid-template-columns: 100%;
    margin: 15px 0 0;
	margin-top: 40px !important;
}

@media (min-width: 1025px) {
    .store-div {
        margin-top: 190px !important;
    }
	
	.socmed-section {
        margin-top: 90px !important;
    }
}