/*

Theme Name: Ambient Child

Theme URI: http://ambient.elated-themes.com

Description: A child theme of Ambient Theme

Author: Elated Themes

Author URI: http://themeforest.net/user/elated-themes

Version: 1.0.0

Text Domain: ambient

Template: ambient

*/



body .pp_pic_holder .pp_description, body .pp_pic_holder .pp_gallery, body .pp_pic_holder .ppt {

display: block !important;

}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*

	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)

*/

/* pswp = photoswipe */

.pswp {

  display: none;

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  overflow: hidden;

  -ms-touch-action: none;

  touch-action: none;

  z-index: 1500;

  -webkit-text-size-adjust: 100%;

  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */

  -webkit-backface-visibility: hidden;

  outline: none; }

  .pswp * {

    -webkit-box-sizing: border-box;

            box-sizing: border-box; }

  .pswp img {

    max-width: none; }



/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {

  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */

  opacity: 0.001;

  will-change: opacity;

  /* for open/close transition */

  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);

          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }



.pswp--open {

  display: block; 

    z-index: 999999;

}



.pswp--zoom-allowed .pswp__img {

  /* autoprefixer: off */

  cursor: -webkit-zoom-in;

  cursor: -moz-zoom-in;

  cursor: zoom-in; }



.pswp--zoomed-in .pswp__img {

  /* autoprefixer: off */

  cursor: -webkit-grab;

  cursor: -moz-grab;

  cursor: grab; }



.pswp--dragging .pswp__img {

  /* autoprefixer: off */

  cursor: -webkit-grabbing;

  cursor: -moz-grabbing;

  cursor: grabbing; }



/*

	Background is added as a separate element.

	As animating opacity is much faster than animating rgba() background-color.

*/

.pswp__bg {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #000;

  opacity: 0;

  -webkit-transform: translateZ(0);

          transform: translateZ(0);

  -webkit-backface-visibility: hidden;

  will-change: opacity; }



.pswp__scroll-wrap {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  overflow: hidden; }



.pswp__container,

.pswp__zoom-wrap {

  -ms-touch-action: none;

  touch-action: none;

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0; }



/* Prevent selection and tap highlights */

.pswp__container,

.pswp__img {

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

      user-select: none;

  -webkit-tap-highlight-color: transparent;

  -webkit-touch-callout: none; }



.pswp__zoom-wrap {

  position: absolute;

  width: 100%;

  -webkit-transform-origin: left top;

  -ms-transform-origin: left top;

  transform-origin: left top;

  /* for open/close transition */

  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);

          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }



.pswp__bg {

  will-change: opacity;

  /* for open/close transition */

  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);

          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }



.pswp--animated-in .pswp__bg,

.pswp--animated-in .pswp__zoom-wrap {

  -webkit-transition: none;

  transition: none; }



.pswp__container,

.pswp__zoom-wrap {

  -webkit-backface-visibility: hidden; }



.pswp__item {

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  overflow: hidden; }



.pswp__img {

  position: absolute;

  width: auto;

  height: auto;

  top: 0;

  left: 0; }



/*

	stretched thumbnail or div placeholder element (see below)

	style is added to avoid flickering in webkit/blink when layers overlap

*/

.pswp__img--placeholder {

  -webkit-backface-visibility: hidden; }



/*

	div element that matches size of large image

	large image loads on top of it

*/

.pswp__img--placeholder--blank {

  background: #222; }



.pswp--ie .pswp__img {

  width: 100% !important;

  height: auto !important;

  left: 0;

  top: 0; }



/*

	Error message appears when image is not loaded

	(JS option errorMsg controls markup)

*/

.pswp__error-msg {

  position: absolute;

  left: 0;

  top: 50%;

  width: 100%;

  text-align: center;

  font-size: 14px;

  line-height: 16px;

  margin-top: -8px;

  color: #CCC; }



.pswp__error-msg a {

  color: #CCC;

  text-decoration: underline; }





  /*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*

	Contents:

	1. Buttons

	2. Share modal and links

	3. Index indicator ("1 of X" counter)

	4. Caption

	5. Loading indicator

	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/

/*

	

	1. Buttons

 */

/* <button> css reset */

.pswp__button {

  width: 44px;

  height: 44px;

  position: relative;

  background: none;

  cursor: pointer;

  overflow: visible;

  -webkit-appearance: none;

  display: block;

  border: 0;

  padding: 0;

  margin: 0;

  float: right;

  opacity: 0.75;

  -webkit-transition: opacity 0.2s;

          transition: opacity 0.2s;

  -webkit-box-shadow: none;

          box-shadow: none; }

  .pswp__button:focus, .pswp__button:hover {

    opacity: 1; }

  .pswp__button:active {

    outline: none;

    opacity: 0.9; }

  .pswp__button::-moz-focus-inner {

    padding: 0;

    border: 0; }



/* pswp__ui--over-close class it added when mouse is over element that should close gallery */

.pswp__ui--over-close .pswp__button--close {

  opacity: 1; }



.pswp__button,

.pswp__button--arrow--left:before,

.pswp__button--arrow--right:before {

  background: url(images/default-skin.png) 0 0 no-repeat;

  background-size: 264px 88px;

  width: 44px;

  height: 44px; }



@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {

  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */

  .pswp--svg .pswp__button,

  .pswp--svg .pswp__button--arrow--left:before,

  .pswp--svg .pswp__button--arrow--right:before {

    background-image: url(images/default-skin.svg); }

  .pswp--svg .pswp__button--arrow--left,

  .pswp--svg .pswp__button--arrow--right {

    background: none; } }



.pswp__button--close {

  background-position: 0 -44px; }



.pswp__button--share {

  background-position: -44px -44px; }



.pswp__button--fs {

  display: none; }



.pswp--supports-fs .pswp__button--fs {

  display: block; }



.pswp--fs .pswp__button--fs {

  background-position: -44px 0; }



.pswp__button--zoom {

  display: none;

  background-position: -88px 0; }



.pswp--zoom-allowed .pswp__button--zoom {

  display: block; }



.pswp--zoomed-in .pswp__button--zoom {

  background-position: -132px 0; }



/* no arrows on touch screens */

.pswp--touch .pswp__button--arrow--left,

.pswp--touch .pswp__button--arrow--right {

  visibility: hidden; }



/*

	Arrow buttons hit area

	(icon is added to :before pseudo-element)

*/

.pswp__button--arrow--left,

.pswp__button--arrow--right {

  background: none;

  top: 50%;

  margin-top: -50px;

  width: 70px;

  height: 100px;

  position: absolute; }



.pswp__button--arrow--left {

  left: 0; }



.pswp__button--arrow--right {

  right: 0; }



.pswp__button--arrow--left:before,

.pswp__button--arrow--right:before {

  content: '';

  top: 35px;

  background-color: rgba(0, 0, 0, 0.3);

  height: 30px;

  width: 32px;

  position: absolute; }



.pswp__button--arrow--left:before {

  left: 6px;

  background-position: -138px -44px; }



.pswp__button--arrow--right:before {

  right: 6px;

  background-position: -94px -44px; }



/*

	2. Share modal/popup and links

 */

.pswp__counter,

.pswp__share-modal {

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

      user-select: none; }



.pswp__share-modal {

  display: block;

  background: rgba(0, 0, 0, 0.5);

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  padding: 10px;

  position: absolute;

  z-index: 1600;

  opacity: 0;

  -webkit-transition: opacity 0.25s ease-out;

          transition: opacity 0.25s ease-out;

  -webkit-backface-visibility: hidden;

  will-change: opacity; }



.pswp__share-modal--hidden {

  display: none; }



.pswp__share-tooltip {

  z-index: 1620;

  position: absolute;

  background: #FFF;

  top: 56px;

  border-radius: 2px;

  display: block;

  width: auto;

  right: 44px;

  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

  -webkit-transform: translateY(6px);

      -ms-transform: translateY(6px);

          transform: translateY(6px);

  -webkit-transition: -webkit-transform 0.25s;

          transition: transform 0.25s;

  -webkit-backface-visibility: hidden;

  will-change: transform; }

  .pswp__share-tooltip a {

    display: block;

    padding: 8px 12px;

    color: #000;

    text-decoration: none;

    font-size: 14px;

    line-height: 18px; }

    .pswp__share-tooltip a:hover {

      text-decoration: none;

      color: #000; }

    .pswp__share-tooltip a:first-child {

      /* round corners on the first/last list item */

      border-radius: 2px 2px 0 0; }

    .pswp__share-tooltip a:last-child {

      border-radius: 0 0 2px 2px; }



.pswp__share-modal--fade-in {

  opacity: 1; }

  .pswp__share-modal--fade-in .pswp__share-tooltip {

    -webkit-transform: translateY(0);

        -ms-transform: translateY(0);

            transform: translateY(0); }



/* increase size of share links on touch devices */

.pswp--touch .pswp__share-tooltip a {

  padding: 16px 12px; }



a.pswp__share--facebook:before {

  content: '';

  display: block;

  width: 0;

  height: 0;

  position: absolute;

  top: -12px;

  right: 15px;

  border: 6px solid transparent;

  border-bottom-color: #FFF;

  -webkit-pointer-events: none;

  -moz-pointer-events: none;

  pointer-events: none; }



a.pswp__share--facebook:hover {

  background: #3E5C9A;

  color: #FFF; }

  a.pswp__share--facebook:hover:before {

    border-bottom-color: #3E5C9A; }



a.pswp__share--twitter:hover {

  background: #55ACEE;

  color: #FFF; }



a.pswp__share--pinterest:hover {

  background: #CCC;

  color: #CE272D; }



a.pswp__share--download:hover {

  background: #DDD; }



/*

	3. Index indicator ("1 of X" counter)

 */

.pswp__counter {

  position: absolute;

  left: 0;

  top: 0;

  height: 44px;

  font-size: 13px;

  line-height: 44px;

  color: #FFF;

  opacity: 0.75;

  padding: 0 10px; }



/*

	

	4. Caption

 */

.pswp__caption {

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  min-height: 44px; }

  .pswp__caption small {

    font-size: 11px;

    color: #BBB; }



.pswp__caption__center {

  text-align: left;

  max-width: 420px;

  margin: 0 auto;

  font-size: 13px;

  padding: 10px;

  line-height: 20px;

  color: #CCC; }



.pswp__caption--empty {

  display: none; }



/* Fake caption element, used to calculate height of next/prev image */

.pswp__caption--fake {

  visibility: hidden; }



/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */

.pswp__preloader {

  width: 44px;

  height: 44px;

  position: absolute;

  top: 0;

  left: 50%;

  margin-left: -22px;

  opacity: 0;

  -webkit-transition: opacity 0.25s ease-out;

          transition: opacity 0.25s ease-out;

  will-change: opacity;

  direction: ltr; }



.pswp__preloader__icn {

  width: 20px;

  height: 20px;

  margin: 12px; }



.pswp__preloader--active {

  opacity: 1; }

  .pswp__preloader--active .pswp__preloader__icn {

    /* We use .gif in browsers that don't support CSS animation */

    background: url(images/preloader.gif) 0 0 no-repeat; }



.pswp--css_animation .pswp__preloader--active {

  opacity: 1; }

  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {

    -webkit-animation: clockwise 500ms linear infinite;

            animation: clockwise 500ms linear infinite; }

  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {

    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;

            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }



.pswp--css_animation .pswp__preloader__icn {

  background: none;

  opacity: 0.75;

  width: 14px;

  height: 14px;

  position: absolute;

  left: 15px;

  top: 15px;

  margin: 0; }



.pswp--css_animation .pswp__preloader__cut {

  /* 

			The idea of animating inner circle is based on Polymer ("material") loading indicator 

			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html

		*/

  position: relative;

  width: 7px;

  height: 14px;

  overflow: hidden; }



.pswp--css_animation .pswp__preloader__donut {

  -webkit-box-sizing: border-box;

          box-sizing: border-box;

  width: 14px;

  height: 14px;

  border: 2px solid #FFF;

  border-radius: 50%;

  border-left-color: transparent;

  border-bottom-color: transparent;

  position: absolute;

  top: 0;

  left: 0;

  background: none;

  margin: 0; }



@media screen and (max-width: 1024px) {

  .pswp__preloader {

    position: relative;

    left: auto;

    top: auto;

    margin: 0;

    float: right; } }



@-webkit-keyframes clockwise {

  0% {

    -webkit-transform: rotate(0deg);

            transform: rotate(0deg); }

  100% {

    -webkit-transform: rotate(360deg);

            transform: rotate(360deg); } }



@keyframes clockwise {

  0% {

    -webkit-transform: rotate(0deg);

            transform: rotate(0deg); }

  100% {

    -webkit-transform: rotate(360deg);

            transform: rotate(360deg); } }



@-webkit-keyframes donut-rotate {

  0% {

    -webkit-transform: rotate(0);

            transform: rotate(0); }

  50% {

    -webkit-transform: rotate(-140deg);

            transform: rotate(-140deg); }

  100% {

    -webkit-transform: rotate(0);

            transform: rotate(0); } }



@keyframes donut-rotate {

  0% {

    -webkit-transform: rotate(0);

            transform: rotate(0); }

  50% {

    -webkit-transform: rotate(-140deg);

            transform: rotate(-140deg); }

  100% {

    -webkit-transform: rotate(0);

            transform: rotate(0); } }



/*

	

	6. Additional styles

 */

/* root element of UI */

.pswp__ui {

  -webkit-font-smoothing: auto;

  visibility: visible;

  opacity: 1;

  z-index: 1550; }



/* top black bar with buttons and "1 of X" indicator */

.pswp__top-bar {

  position: absolute;

  left: 0;

  top: 0;

  height: 44px;

  width: 100%; }



.pswp__caption,

.pswp__top-bar,

.pswp--has_mouse .pswp__button--arrow--left,

.pswp--has_mouse .pswp__button--arrow--right {

  -webkit-backface-visibility: hidden;

  will-change: opacity;

  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);

          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }



/* pswp--has_mouse class is added only when two subsequent mousemove events occur */

.pswp--has_mouse .pswp__button--arrow--left,

.pswp--has_mouse .pswp__button--arrow--right {

  visibility: visible; }



.pswp__top-bar,

.pswp__caption {

  background-color: rgba(0, 0, 0, 0.5); }



/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */

.pswp__ui--fit .pswp__top-bar,

.pswp__ui--fit .pswp__caption {

  background-color: rgba(0, 0, 0, 0.3); }



/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */

.pswp__ui--idle .pswp__top-bar {

  opacity: 0; }



.pswp__ui--idle .pswp__button--arrow--left,

.pswp__ui--idle .pswp__button--arrow--right {

  opacity: 0; }



/*

	pswp__ui--hidden class is added when controls are hidden

	e.g. when user taps to toggle visibility of controls

*/

.pswp__ui--hidden .pswp__top-bar,

.pswp__ui--hidden .pswp__caption,

.pswp__ui--hidden .pswp__button--arrow--left,

.pswp__ui--hidden .pswp__button--arrow--right {

  /* Force paint & create composition layer for controls. */

  opacity: 0.001; }



/* pswp__ui--one-slide class is added when there is just one item in gallery */

.pswp__ui--one-slide .pswp__button--arrow--left,

.pswp__ui--one-slide .pswp__button--arrow--right,

.pswp__ui--one-slide .pswp__counter {

  display: none; }



.pswp__element--disabled {

  display: none !important; }



.pswp--minimal--dark .pswp__top-bar {

  background: none; }





.eltdf-pl-item:hover  .lb-elements span {

  	display: block;



  }

  .eltdf-pl-item .lb-elements  {

  	width:100%;

  	height: 50px;

  	position: absolute;

  	left: 0;

  	bottom: 0;

  }

  .eltdf-pl-item .lb-elements span {

  	display: none;

  	color:#fff;

  	background-color: rgba(0,0,0,.6);

  	position: absolute;

  	bottom: 0;

  	padding:10px 0;

   text-align: center;

  	width: 100%;

}

@media screen and (max-width: 768px) { 

	#nav_menu-6 {

		margin-left: 10vh !important;

	}

}

@media screen and (max-width: 768px) { 

	.eltdf-pl-item .lb-elements span {

  	display: block;

	}

}





.lazy {

  opacity: 0;

  transition: opacity .3s ease-in;

} 



@media only screen and (min-width: 1100px) {

.big-images .eltdf-portfolio-media .eltdf-portfolio-single-media {

	text-align:center;

}

.big-images .eltdf-portfolio-media .eltdf-portfolio-single-media img {

max-width:940px;

min-width:940px;

display:inline-block!important;

}

}


.advantage li{
  float: left;
  width: 33.3%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.um input[type=submit].um-button:hover, .um a.um-button:hover, .um input[type=submit].um-button {
  background-color: #dfb947!Important;
}
#nav-menu-item-13309{
  background: rgba(183, 183, 183, 0.3);
}
.eltdf-page-header .eltdf-fixed-wrapper.fixed{
  border:0;
}
footer .eltdf-footer-top .widget h4{
  color:#fff!Important;
}
.topRound {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.dark {
  background: #eeeeee !important;
}

.specline {
  padding: 0px 5px;
  margin: 0px 0px 4px 0px;
  font-weight: bold;
  font-size: 14px;
  color: #666;
}
.eltdf-portfolio-list-holder article .eltdf-pli-text .eltdf-pli-title {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.eltdf-portfolio-list-holder.eltdf-pl-info-below-image .eltdf-pli-text-holder {
  height: 35px;
}
.eltdf-gallery-blocks-holder .eltdf-gb-images .eltdf-gb-image{
  width: auto;
}
.eltdf-gallery-blocks-holder.eltdf-normal-space .eltdf-gb-image {
  padding: 0 5px;
}
body .pp_pic_holder .pp_description, body .pp_pic_holder .pp_gallery, body .pp_pic_holder .ppt {
  display: block !important;
}
.owl-controls .owl-nav .owl-prev,
.owl-controls .owl-nav .owl-next{
  position: absolute;

  top: 40%;
}
.owl-controls .owl-nav .owl-prev {
  left: -20px;
}
.owl-controls .owl-nav .owl-next {
  right: -20px;
}
body .pp_pic_holder .pp_description {   position: absolute;
  top: -15px;
  left: 0px;
  right: 0px;
  text-align: center;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);

  margin: 0;
  line-height: 30px;
  font-weight: bold;
}
.contact-box {
  font-size: 14px;
  top: 10px;
  left: 40%;
  position: absolute;
  width: 250px;
  padding: 5px 32px;
  margin-left: -20%;
  margin-top: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  line-height: normal;
  z-index:999;
}
.contact-box  .wpcf7-form-control.wpcf7-text{
  background: #fff;
  border: 1px solid #dcdcdc;
  color: #222;

  padding: 5px 8px;
  margin-bottom: 8px;
}
.contact-box  .wpcf7-form-control.wpcf7-textarea {
  padding: 5px;
}

.contact-box input.wpcf7-form-control.wpcf7-submit {
  padding: 10px 46px;
  margin-top: 8px;
}


.eltdf-content .eltdf-content-inner > .eltdf-full-width > .eltdf-full-width-inner {
  padding-top: 10px !important;
}

#menu-carpet-more-main-menu > .menu-item:last-child {
.    margin-left: 100px;
}
#menu-carpet-more-main-menu >  .menu-item:last-child span{
  font-size: 21px;
}
.swipebox-gallery {
  display:none;}
.page-template-portfolio-gallery .swipebox-gallery{
  display: block;
}

footer .eltdf-footer-top .widget h1, footer .eltdf-footer-top .widget h2, footer .eltdf-footer-top .widget h3, footer .eltdf-footer-top .widget h4, footer .eltdf-footer-top .widget h5, footer .eltdf-footer-top .widget h6 {
  color: #444;
}
.swipebox-gallery a.img-link {
  display:none;
}
.swipebox-gallery a.img-link.img-link-0 {
  display:block;
}
.eltdf-portfolio-filter-holder.eltdf-portfolio-filter-top {
  margin-bottom: 0px;
}
.eltdf-mobile-header  .eltdf-position-center-inner {
  padding-top: 35px;
}
.eltdf-mobile-header .eltdf-icon-widget-holder {
  margin-top: 10px;
}
.menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu {
  padding: 10px 30px;
  text-align: center;
}
.menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu li {
  display: inline-block;
}
.menu-homepage-replicate-menu-container  ul#menu-homepage-replicate-menu li a {
  font-size: 13px;
  color: #373737;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 16px;
}
.home .widget_nav_menu{
  margin: 0;
}

@media (min-width: 992px) {
  .menu-homepage-replicate-menu-container {
    display:none;
  }
}
@media (max-width: 600px) {
  .eltdf-pl-item {
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee;
  }
  .eltdf-portfolio-list-holder.eltdf-pl-normal-space article {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .page-template-full-width-subpages  .eltdf-portfolio-filter-holder:not(.subpages-list) {
    display:none;
  }
  .contact-box {
    position:relative;
    font-size: 14px;
    top: 30px;
    left: 0;

    width: auto;
    padding: 20px;

    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
  }
  .eltdf-breadcrumbs-holder {
    display: none !important;
  }

  h1 {
    font-size: 30px;
    line-height: 32px

  }

  h2 {
    font-size: 26px;
    line-height: 28px
  }

  h3 {
    font-size: 24px;
    line-height: 26px
  }


}
.eltdf-ig-image-title h4{
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu .sub-menu.closed{
  display:none;
}
.menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu .sub-menu.open {
  display:block;
  text-align: left;
  padding-left: 4.4%;
  position: absolute;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 5px 0;
  width: 98%;
  margin-left: 1%;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu .sub-menu li {
  display: block;
}


/* COSTIN */
.landing-banner-area {
	background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5) ), url(https://www.mocheta-parchet.ro/wp-content/uploads/2022/06/IMG_6239.jpg?id=15262);
}
.main-landing-text {
	border: 2px solid #000;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 20px!important;
}

.page-id-15246 .vc_images_carousel .vc_carousel-control .icon-next:before {
	font-size: 60px;
	color: #fff;
}
.page-id-15246 .vc_images_carousel .vc_carousel-control .icon-prev:before {
	font-size: 60px;
	color: #fff;
}

.page-id-15246 .vc_images_carousel .vc_carousel-indicators li {
	border: 1px solid #fff;
    background-color: #fff;
}
.page-id-15246 .vc_images_carousel .vc_carousel-indicators .vc_active {
	border: 1px solid #fff;
	background: transparent;
}
.img-outline {
	outline: 5px solid white;
    outline-offset: -20px;
}
/*--------------------------------------------------------------
## TYPOGRAPHY -> HEADLINE
--------------------------------------------------------------*/

.text-headline-l {
	font-weight: normal !important;
	font-size: 22px !important;
	line-height: 28px !important;
}

.text-headline-m {
	font-weight: normal !important;
	font-size: 20px !important;
	line-height: 24px !important;
}

.text-headline-s {
	font-weight: normal !important;
	font-size: 18px !important;
	line-height: 24px !important;
}

@media (min-width: 360px) {
	.text-headline-l {
		font-size: 32px !important;
		line-height: 40px !important;
	}

	.text-headline-m {
		font-size: 28px !important;
		line-height: 36px !important;
	}

	.text-headline-s {
/* 		font-size: 24px !important; */
		line-height: 32px !important;
	}
}

/*--------------------------------------------------------------
## TYPOGRAPHY -> DISPLAY
--------------------------------------------------------------*/

.text-display-l {
	font-weight: normal !important;
	font-size: 32px !important;
	line-height: 40px !important;
	letter-spacing: -0.25px !important;
	margin: 0 !important;
}

.text-display-m {
	font-weight: normal !important;
	font-size: 28px !important;
	line-height: 36px !important;
	margin: 0 !important;
}

.text-display-s {
	font-weight: normal !important;
	font-size: 22px !important;
	line-height: 32px !important;
	margin: 0 !important;
}

@media (min-width: 360px) {
	.text-display-l {
		font-size: 40px !important;
		line-height: 52px !important;
	}

	.text-display-m {
		font-size: 32px !important;
		line-height: 40px !important;
	}

	.text-display-s {
		font-size: 28px !important;
		line-height: 36px !important;
	}
}

@media (min-width: 600px) {
	.text-display-l {
		font-size: 48px !important;
		line-height: 58px !important;
	}

	.text-display-m {
		font-size: 36px !important;
		line-height: 44px !important;
	}

	.text-display-s {
		font-size: 32px !important;
		line-height: 40px !important;
	}
}

@media (min-width: 1264px) {
	.text-display-l {
		font-size: 57px !important;
		line-height: 64px !important;
	}

	.text-display-m {
		font-size: 45px !important;
		line-height: 52px !important;
	}

	.text-display-s {
		font-size: 36px !important;
		line-height: 44px !important;
	}
}

@media (min-width: 1904px) {
	.text-display-l {
		font-size: 72px !important;
		line-height: 80px !important;
	}

	.text-display-m {
		font-size: 52px !important;
		line-height: 64px !important;
	}

	.text-display-s {
		font-size: 45px !important;
		line-height: 52px !important;
	}
}

/*--------------------------------------------------------------
## TYPOGRAPHY -> BODY
--------------------------------------------------------------*/

.text-body-l {
	font-size: 16px !important;
	line-height: 28px !important;
	letter-spacing: 0.5px !important;
}


.text-body-m {
	font-size: 14px !important;
	line-height: 20px !important;
	letter-spacing: 0.25px !important;
}

.text-body-s {
	font-size: 12px !important;
	line-height: 16px !important;
	letter-spacing: 0.4px !important;
}

/*--------------------------------------------------------------
## TYPOGRAPHY -> LABEL
--------------------------------------------------------------*/

.text-label-l {
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 20px !important;
	letter-spacing: 0.1px !important;
}

.text-label-m {
	font-weight: 500 !important;
	font-size: 12px !important;
	line-height: 16px !important;
	letter-spacing: 0.5px !important;
}

.text-label-s {
	font-weight: 500 !important;
	font-size: 11px !important;
	line-height: 16px !important;
	letter-spacing: 0.5px !important;
}

/*--------------------------------------------------------------
## TYPOGRAPHY -> TITLE
--------------------------------------------------------------*/

.text-title-l {
	font-weight: 500 !important;
	font-size: 22px !important;
	line-height: 28px !important;
	letter-spacing: 0 !important;
}

.text-title-m {
	font-weight: 500 !important;
	font-size: 16px !important;
	line-height: 24px !important;
	letter-spacing: 0.1px !important;
}

.text-title-s {
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 20px !important;
	letter-spacing: 0.1px !important;
}

/*--------------------------------------------------------------
# FONT WEIGHTS
--------------------------------------------------------------*/

.bold {
	font-weight: 700 !important;
}

.medium {
	font-weight: 500 !important;
}

.normal {
	font-weight: 400 !important;
}

.thin {
	font-weight: 100 !important;
}

/*--------------------------------------------------------------
## TEXT ALIGN
--------------------------------------------------------------*/

.text-initial {
	text-align: initial !important;
}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

@media (min-width: 600px) {
	.text-sm-initial {
		text-align: initial !important;
	}

	.text-sm-left {
		text-align: left !important;
	}

	.text-sm-center {
		text-align: center !important;
	}

	.text-sm-right {
		text-align: right !important;
	}
}

@media (min-width: 960px) {
	.text-md-initial {
		text-align: initial !important;
	}

	.text-md-left {
		text-align: left !important;
	}

	.text-md-center {
		text-align: center !important;
	}

	.text-md-right {
		text-align: right !important;
	}
}

@media (min-width: 1264px) {
	.text-lg-initial {
		text-align: initial !important;
	}

	.text-lg-left {
		text-align: left !important;
	}

	.text-lg-center {
		text-align: center !important;
	}

	.text-lg-right {
		text-align: right !important;
	}
}

@media (min-width: 1904px) {
	.text-xl-initial {
		text-align: initial !important;
	}

	.text-xl-left {
		text-align: left !important;
	}

	.text-xl-center {
		text-align: center !important;
	}

	.text-xl-right {
		text-align: right !important;
	}
}

/*--------------------------------------------------------------
## WHITE SPACE
--------------------------------------------------------------*/

.white-space-nowrap {
	white-space: nowrap;
}

.white-space-normal {
	white-space: normal;
}

.white-space-pre {
	white-space: pre;
}

@media (min-width: 600px) {
	.white-space-sm-nowrap {
		white-space: nowrap;
	}

	.white-space-sm-normal {
		white-space: normal;
	}

	.white-space-sm-pre {
		white-space: pre;
	}
}

@media (min-width: 960px) {
	.white-space-md-nowrap {
		white-space: nowrap;
	}

	.white-space-md-normal {
		white-space: normal;
	}

	.white-space-md-pre {
		white-space: pre;
	}
}

@media (min-width: 1264px) {
	.white-space-lg-nowrap {
		white-space: nowrap;
	}

	.white-space-lg-normal {
		white-space: normal;
	}

	.white-space-lg-pre {
		white-space: pre;
	}
}

@media (min-width: 1904px) {
	.white-space-xl-nowrap {
		white-space: nowrap;
	}

	.white-space-xl-normal {
		white-space: normal;
	}

	.white-space-xl-pre {
		white-space: pre;
	}
}
.r-0,
.r-0:before {
	border-radius: 0px !important;
}

.r-4,
.r-4:before {
	border-radius: 4px !important;
}

.r-8,
.r-8:before {
	border-radius: 8px !important;
}

.r-12,
.r-12:before {
	border-radius: 12px !important;
}

.r-16,
.r-16:before {
	border-radius: 16px !important;
}

.r-28,
.r-28:before {
	border-radius: 28px !important;
}

.r-full,
.r-full:before {
	border-radius: 99999px !important;
}
.r-28 figure img {
	border-radius: 28px !important;
}
.r-28 figure vc_carousel-inner a img {
	border-radius: 28px !important;
}
@media (max-width: 479px) {
  .menu-homepage-replicate-menu-container  #menu-homepage-replicate-menu {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .menu-homepage-replicate-menu-container  ul#menu-homepage-replicate-menu li a {
    padding: 0 5px;
    white-space: nowrap;
  }
}
@media (max-width:359px) {
  .owl-stage-outer {
    width: 95%;
    margin-left: 2.5%;
  }
  .owl-controls .owl-nav .owl-prev {
    left: -10px;
  }
  .owl-controls .owl-nav .owl-next {
    right: -10px;
  }

}
@media (max-width: 767px) {
  .pp_pic_holder.pp_default { width: 100%!important; left: 0!important; overflow: hidden; }
  div.pp_default .pp_content_container .pp_left { padding-left: 0!important; }
  div.pp_default .pp_content_container .pp_right { padding-right: 0!important; }
  .pp_content { width: 100%!important; height: auto!important; }
  .pp_fade { width: 100%!important; height: 100%!important; }
  a.pp_expand, a.pp_contract, .pp_hoverContainer, .pp_gallery, .pp_top, .pp_bottom { display: none!important; }
  #pp_full_res img { width: 100%!important; height: auto!important; }
  .pp_details { width: 100%!important; padding-left: 3%; padding-right: 4%; padding-top: 10px; padding-bottom: 10px; background-color: #fff; margin-top: -2px!important; }
  a.pp_close { right: 10%!important; top: 10px!important; }
  .pp_pic_holder a.pp_arrow_previous {margin-left: 0px; }
  .pp_pic_holder a.pp_arrow_next, .pp_pic_holder a.pp_arrow_previous {    min-width: 25px;}
  .swipebox-gallery .view-gallery {display:none;}
  .swipebox-gallery:hover .view-gallery {display:block;}
}

@media (max-width: 767px) {
  .swipebox-gallery .view-gallery {display:block;}
}
#swipebox-slider .slide img {
  max-width: 80%;
}
.eltdf-container-inner {
  padding-top: 20px;
}
@media screen and (max-width: 1024px){
  .eltdf-icon-widget-holder {
    display: block !important;
    margin-top: 18% !important;
  }
  .eltdf-position-center-inner {
    padding: 0px !important;
  }
}
.mobile-phone-top{
  position: relative;
  left: 50%;
  float:left;
  transform: translateX(-50%);
  font-size: 14px;
  top: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  display: inline-block;
}
.eltdf-search-opener{
  margin: -70px -10px 2px 25px!important;
}
@media (min-width: 801px) and (max-width: 1024px){
  .mobile-phone-top {
    left: -310px;
  }
}
@media (min-width: 681px) and (max-width: 800px){
  .mobile-phone-top {
    left: -220px;
  }
}
@media (min-width: 481px) and (max-width: 681px) {
  .mobile-phone-top{
    left: -130px;
  }
}

.eltdf-mobile-logo-wrapper a img {
    margin-top: 0 !important;
}

.mobile-phone-top-2{
font-weight:bold;
}

@media screen and (max-width: 900px){

.menu-homepage-replicate-menu-container{
 display:none !important;
}

.eltdf-mobile-logo-wrapper a img {
   margin-top: 0 !important;
}

}

@media (min-width: 768px) {
	.landing-row {
	display: flex;
	align-items: center;
}
}


/* FRAME STYLE */

@media (min-width: 600px) {
	.r-sm-0,
	.r-sm-0:before {
		border-radius: 0px !important;
	}

	.r-sm-4,
	.r-sm-4:before {
		border-radius: 4px !important;
	}

	.r-sm-8,
	.r-sm-8:before {
		border-radius: 8px !important;
	}

	.r-sm-12,
	.r-sm-12:before {
		border-radius: 12px !important;
	}

	.r-sm-16,
	.r-sm-16:before {
		border-radius: 16px !important;
	}

	.r-sm-28,
	.r-sm-28:before {
		border-radius: 28px !important;
	}

	.r-sm-full,
	.r-sm-full:before {
		border-radius: 99999px !important;
	}
}

@media (min-width: 960px) {
	.r-md-0,
	.r-md-0:before {
		border-radius: 0px !important;
	}

	.r-md-4,
	.r-md-4:before {
		border-radius: 4px !important;
	}

	.r-md-8,
	.r-md-8:before {
		border-radius: 8px !important;
	}

	.r-md-12,
	.r-md-12:before {
		border-radius: 12px !important;
	}

	.r-md-16,
	.r-md-16:before {
		border-radius: 16px !important;
	}

	.r-md-28,
	.r-md-28:before {
		border-radius: 28px !important;
	}

	.r-md-full,
	.r-md-full:before {
		border-radius: 99999px !important;
	}
}

@media (min-width: 1264px) {
	.r-lg-0,
	.r-lg-0:before {
		border-radius: 0px !important;
	}

	.r-lg-4,
	.r-lg-4:before {
		border-radius: 4px !important;
	}

	.r-lg-8,
	.r-lg-8:before {
		border-radius: 8px !important;
	}

	.r-lg-12,
	.r-lg-12:before {
		border-radius: 12px !important;
	}

	.r-lg-16,
	.r-lg-16:before {
		border-radius: 16px !important;
	}

	.r-lg-28,
	.r-lg-28:before {
		border-radius: 28px !important;
	}

	.r-lg-full,
	.r-lg-full:before {
		border-radius: 99999px !important;
	}
}

@media (min-width: 1904px) {
	.r-xl-0,
	.r-xl-0:before {
		border-radius: 0px !important;
	}

	.r-xl-4,
	.r-xl-4:before {
		border-radius: 4px !important;
	}

	.r-xl-8,
	.r-xl-8:before {
		border-radius: 8px !important;
	}

	.r-xl-12,
	.r-xl-12:before {
		border-radius: 12px !important;
	}

	.r-xl-16,
	.r-xl-16:before {
		border-radius: 16px !important;
	}

	.r-xl-28,
	.r-xl-28:before {
		border-radius: 28px !important;
	}

	.r-xl-full,
	.r-xl-full:before {
		border-radius: 99999px !important;
	}
}
@media (min-width: 768px) {
	.landing-carousel-mobile {
		display: none;
	}
	.landing-carousel-desktop {
		display: block;
	}
}
@media (max-width: 767px) {
	.landing-carousel-mobile {
		display: block;
	}
	.landing-carousel-desktop {
		display: none;
	}
	.mobile-switch-row {
	    display: flex;
        flex-direction: column-reverse;
   }
}

