/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');*/

/*font-family: 'Open Sans', sans-serif;*/

@font-face {
  font-family: "Plus Jakarta Text ExtraLight";
  src: url("../fonts/PlusJakartaSans-ExtraLight.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text Light";
  src: url("../fonts/PlusJakartaSans-Light.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-Light.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text Regular";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-Regular.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text Medium";
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-Medium.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text SemiBold";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text Bold";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-Bold.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text ExtraBold";
  src: url("../fonts/PlusJakartaSans-ExtraBold.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text ExtraLightItalic";
  src: url("../fonts/PlusJakartaSans-ExtraLightItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-ExtraLightItalic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text LightItalic";
  src: url("../fonts/PlusJakartaSans-LightItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-LightItalic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text Italic";
  src: url("../fonts/PlusJakartaSans-Italic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-Italic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text MediumItalic";
  src: url("../fonts/PlusJakartaSans-MediumItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text SemiBoldItalic";
  src: url("../fonts/PlusJakartaSans-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-SemiBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text BoldItalic";
  src: url("../fonts/PlusJakartaSans-BoldItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "Plus Jakarta Text ExtraBoldItalic";
  src: url("../fonts/PlusJakartaSans-ExtraBoldItalic.woff2") format("woff2"),
    url("../fonts/PlusJakartaSans-ExtraBoldItalic.woff") format("woff");
}

:root {
  --primary-color: #001945 !important ; /*ABC blue*/
  --secondary-color: #d79f28 !important ; /*ABC gold*/
}

/*Primary-Button-Color*/
.btn.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}
/*Secondary-Button-Color*/
.btn.btn-secondary {
  background-color: var(--secondary-color) !important ;
  border-color: var(--secondary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-secondary:hover {
  background-color: var(--primary-color) !important ;
  border-color: var(--primary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-primary:hover {
  background-color: var(--secondary-color) !important ;
  border-color: var(--secondary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-secondary:active {
  background-color: var(--primary-color) !important ;
  border-color: var(--primary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-primary:active {
  background-color: var(--secondary-color) !important ;
  border-color: var(--secondary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-secondary:focus {
  background-color: var(--primary-color) !important ;
  border-color: var(--primary-color) !important ;
  color: #ffffff !important;
}

.btn.btn-primary:focus {
  background-color: var(--secondary-color) !important ;
  border-color: var(--secondary-color) !important ;
  color: #ffffff !important;
}

.btn:focus,
.btn:active,
.btn:hover {
  outline: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

html,
body {
  height: 100%;
}



/*=========================nav bar drop down menu css*/

a:focus,
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: medium none;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
	
	margin: 0;
  	background: #fff;	
	
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  color: #001945;
  background-color: #f4f4f4;
  font-family: "Plus Jakarta Text Light", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

b,
strong {
  font-weight: normal;
  font-family: "Plus Jakarta Text Medium", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
}

a {
  color: #d79f28;
  text-decoration: none !important;
}

a:hover {
  color: #001945 !important;
  text-decoration: none !important;
}


.page-template-page-about-fullbleed .team-email a,
.page-template-page-about .team-email a {
	color: #001945 !important;
}

.page-template-page-about-fullbleed .team-email a:hover,
.page-template-page-about .team-email a:hover {
	color: #d79f28 !important;
}

.single-team .team-email a {
	color: #001945 !important;
}

.single-team .team-email a:hover {
	color: #d79f28 !important;
}





.page-template-page-cubic .inner_title h1 a,
.page-template-page-art .inner_title h1 a,
.page-template-page-signature .inner_title h1 a,
.page-template-page-registrationform .inner_title h1 a,
.page-template-page-blog .inner_title h2 a,
.page-template-page-videos .inner_title h2 a {
  	color: #999 !important;
  	text-decoration: none !important;
}

.page-template-page-cubic .inner_title h1 a:hover,
.page-template-page-art .inner_title h1 a:hover,
.page-template-page-signature .inner_title h1 a:hover,
.page-template-page-registrationform .inner_title h1 a:hover,
.page-template-page-blog .inner_title h2 a:hover,
.page-template-page-videos .inner_title h2 a:hover {
  	color: #001945 !important;
  	text-decoration: none !important;
}


.signature-term-and-condition-link a {
	color: #999;
	text-decoration: none !important;
}

.signature-term-and-condition-link a:hover {
	color: #001945;
  	text-decoration: none !important;
}


.site-footer .social .fa-w-14 {
	color: #001945 !important;
}

.site-footer .social .fa-w-14:hover {
  color: #d79f28 !important;
}

.secondarycolor {
  color: #d79f28;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #001945;
  font-weight: normal;
}

.h1,
h1 {
	font-family: "Plus Jakarta Text Light", "Helvetica Neue", Helvetica, Arial,
	sans-serif;
	font-weight: normal;
	/*font-size: 36px;*/
	font-size: 2.25em;
	line-height: 1.2;	
	margin-bottom: 1rem;
}

.h2,
h2 {
  font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
	font-weight: normal;
  /*font-size: 22px;*/
font-size: 1.4em;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.h3,
h3 {
  font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
	font-weight: normal;
  /*font-size: 16px;*/
	font-size: 1em;
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.h4,
h4 {
  font-family: "Plus Jakarta Text Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
	font-weight: normal;
  /*font-size: 12px;*/
	font-size: .75em;
	line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.h5,
h5 {
  font-family: "Plus Jakarta Text LightItalic", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
	font-weight: normal;
  /*font-size: 14px;*/
	font-size: .85em;
  line-height: 1.5;
}

p {
  margin-bottom: 1rem;
}

.wp-caption-text, .gallerycaption {
  font-size: 11px;
  line-height: 1.5;
}

.wp-caption-text {
    margin-top: 1rem;
}

hr {
  border-top: 1px solid #001945 !important;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  width: 100%;
}

.alignnone {
    margin: 0;
}

/*MENU CSS*/

/* .logged-in .slider.abcVideos {
  height: calc(100vh - 32px);
} */

.menu-nav nav.nav-mobile {
  display: none;
}

.menu-nav nav.nav-desktop {
  display: block;
}

.menu-nav input ~ nav {
  background: white;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 79px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}

.menu-nav input ~ nav ul {
  text-align: left;
  position: absolute;
  top: 90px;
  padding-left: 20px;
  list-style: none;
  margin: 0;
  line-height: 50px;
}

.menu-nav input ~ nav ul > li {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
}

.menu-nav input ~ nav ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: #001945;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  padding: 0;
  font-size: 38px;
  letter-spacing: 2px;
}

.menu-nav input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
  top: 0px;
  opacity: 1;
}

.menu-nav input:checked ~ nav ul > li {
  opacity: 1;
  transition-delay: 0.5s;
}

.home .menu-nav input {
  z-index: 20;
}

.menu-nav input {
  float: right;
  opacity: 0;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 0;
}

/*Menu Css*/

.slider {
  float: left;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.slider ul {
  padding: 0;
  margin: 0;
}

header .menu-nav {
  position: relative;
}

#wrapper_bgndVideo,
#vimeo_player_wrapper_vimeo_player_bgndVideo {
  z-index: 1 !important;
}

/* material-portfolio */

body {
  float: left;
  width: 100%;
}

.inner-page_content {
  margin-top: 100px;
}

.inner-page_content ul {
  /*float: left;*/
  list-style: outside disc none;
  margin: 0 0 24px 0;
  padding: 0 0 0 20px;
  width: 100%;
	clear: both;
}

.portfolio ul.port-menu {
  margin: 0 0 20px;
}

.inner-page_content ul.port-menu li {
  background: #eeeeee none repeat scroll 0 0;
  color: #001945;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 14px;
}

.inner-page_content ul.port-menu li.active {
  background: #001945 none repeat scroll 0 0;
  color: #ffffff;
}

.products img {
  max-width: 100%;
}

ul.products li a {
  float: left;
  text-decoration: none;
  width: 100%;
}
.wrapper {
  float: left;
  width: 100%;
}

/*.lapitec .single_portfolio_related, .lapitec .single_portfolio_tag {
    display: none;
}*/

/*Right-scrollable*/

/* .home.logged-in .menu-nav input:checked ~ nav {
  top: 0;
} */

.inner_pages {
  float: left;
  margin-top: 80px;
  width: 100%;
}

.logo {
  display: table;
  position: relative;
  z-index: 9;
}

.logo {
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 406px;
  min-width: 340px;
  height: 60px;
}



.inner_banner.mobile {
  display: none;
}

.inner_banner.tab-landscape {
  display: none;
}

.inner_banner.tab-portrait {
  display: none;
}

.portfolio form.aws-search-form::before {
  content: "\f002";
  font-family: fontawesome;
  left: 0;
  position: absolute;
  top: 26%;
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  z-index: 9;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/image-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.home .content-main {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -100;
}

.embed-container.tab {
  display: none;
}

.embed-container.mobile {
  display: none;
}

.slider .vimeo_player_wrapper iframe {
  max-width: 100% !important;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .logo img {
    width: 86%;
  }
  .about .inner-page_content .inner_banner {
    overflow: hidden;
  }
}

_:-ms-lang(x),
.logo img {
  width: 86%;
}

_:-ms-lang(x),
.about .inner-page_content .inner_banner {
  overflow: hidden;
}

img {
  margin: 0px;
}

.content-main .embed-container video {
  width: auto !important;
}

/*Logo overlay*/

.logo-overlay > img {
  opacity: 0.8;
  width: 70%;
}

.logo-overlay {
  left: 50%;
  line-height: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  margin-top: 2px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
}

.inner-page_content ul.port-menu {
  list-style: outside none none;
  margin: 0 0 10px;
  padding: 0;
}

.lightbox .lb-data .lb-close {
  background-size: 100%;
}

/* .logged-in .menu-nav input:checked ~ nav {
  top: 122px;
} */

/*POPUP SINGLE*/

.create-bookmatch {
  display: inline-block;
  background-color: #474b7d;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 10px;
  text-shadow: 0 1px 0 #333333;
  border: 1px solid #222222;
  -webkit-box-shadow: 0 0 0 0.327em rgba(0, 0, 0, 0.075),
    0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px #999999, inset 0 -1px #333333;
  box-shadow: 0 0 0 0.327em rgba(0, 0, 0, 0.075), 0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px #999999, inset 0 -1px #333333;
}

.create-bookmatch:hover {
  background-color: #565b97;
  color: #fff;
}

.noScroll {
  overflow: hidden;
}

/* Overlay style */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  overflow-y: scroll;
}

/* Overlay closing cross */

.overlay .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  background: url(../images/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
  cursor: pointer;
  background-size: 100%;
  opacity: 1;
}

.overlay-scale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.overlay-scale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

/*The Modal (background) */

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 999999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */

/* The Close Button */

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/**/

.portfolio .psgal figure {
  padding: 10px 10px 0;
}

.portfolio .photoswipe-gallery-caption {
  display: block;
  font-size: 15px;
  padding: 5px 0;
  text-transform: capitalize;
}

/*IE*/

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .logo {
    display: block;
  }
  header .logo img {
    max-width: 55%;
    margin-top: 0;
  }
}

/*.accordion {
  display: block !important;
}

.portfolio .accordion h3 {
  width: 100%;
  color: #001945;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.accord-outer .sh-link {
  border-bottom: 1px solid;
  float: left;
  padding-bottom: 7px;
  text-align: right;
  text-transform: uppercase;
  width: 100%;
  color: #001945;
  font-size: 12px;
  font-weight: 600;
}

.accord-outer {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}*/

.sh-link {
  order: 2;
}

.sh-content {
  order: 1;
  transition: height 0.35s ease 0s;
}

.inner-page_content .up-sells.upsells.products .products li a h4 {
  display: none;
}

.up-sells.upsells.products h6 {
  margin-bottom: 10px;
}

.page-id-10789 h1 {
  /* MAs CONCRETE */
  text-transform: none;
}

.masonry-brick {
  display: table;
  float: none;
  height: 100%;
  margin: 0 auto 15px;
  width: 100%;
  position: relative;
}

.masonry-brick .masonary-view.grid-item {
  cursor: pointer;
}

.default-page .grid-view {
  padding-bottom: 30px;
}

.outer-grid-3,
.outer-grid-4,
.outer-grid-2 {
  float: left;
  width: 100%;
}


/*single*/

.single .blog img.aligncenter {
  display: block;
  float: none;
  margin: 5px auto;
  height: auto;
  max-width: 100%;
}

.single .blog img.alignnone {
  margin: 5px 20px 20px 0;
}

.masonry-brick .list-unstyled li,
.default-page .list-unstyled li {
  list-style: outside none none;
}

.default-page .list-unstyled {
  padding: 0;
}

.default-page .masonry {
  margin: 0 0 20px;
}

.masonry-outer .masonry-content {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 25px;
}

.slide-content {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 25px;
}

section.masonry_page_temp {
  margin: 20px 0;
}

.slider_out_stru {
  margin: 20px 0;
	
overflow: auto;	
}


.masonry-brick .masonary-view.grid-item {
  padding: 10px 10px 10px;
  box-sizing: border-box;
  float: left;
  margin: 0;
  text-align: center;
  width: 33.3333%;
}

.masonry-brick .masonary-view.grid-item img {
  border: 0 none;
  height: auto;
  margin: auto;
  max-width: 100%;
  width: auto;
}

.masonary-view.grid-item > a {
  display: block;
}

/*Gallery Section*/

.grid-brick .grid-gallery {
  list-style: outside none none;
  padding-left: 0;
}

.grid-brick .grid-gallery li.grid-view {
  margin: 0 40px 40px 0;
  float: left;
  overflow: hidden;
  padding-bottom: 0;
}

.grid-brick .grid-gallery.columns-4 li.grid-view {
  width: calc((100% - 40px * 3) / 4);
}

.default-page .grid-view img {
  width: 100%;
}

.grid-brick .grid-gallery.columns-4 li.grid-view:nth-child(4n),
.grid-brick .grid-gallery.columns-2 li.grid-view:nth-child(2n),
.grid-brick .grid-gallery.columns-3 li.grid-view:nth-child(3n),
.grid-brick .grid-gallery.columns-5 li.grid-view:nth-child(5n),
.grid-brick .grid-gallery.columns-6 li.grid-view:nth-child(6n),
.grid-brick .grid-gallery.columns-7 li.grid-view:nth-child(7n),
.grid-brick .grid-gallery.columns-8 li.grid-view:nth-child(8n) {
  margin-right: 0;
}

.grid-brick .grid-gallery.columns-1 li.grid-view {
  margin: 0 0px 40px 0;
}

.grid-brick .grid-gallery.columns-2 li.grid-view {
  width: calc((100% - 40px * 1) / 2);
}

.grid-brick .grid-gallery.columns-3 li.grid-view {
  width: calc((100% - 40px * 2) / 3);
}

.grid-brick .grid-gallery.columns-5 li.grid-view {
  width: calc((100% - 40px * 4) / 5);
}

.grid-brick .grid-gallery.columns-6 li.grid-view {
  width: calc((100% - 40px * 5) / 6);
}

.grid-brick .grid-gallery.columns-7 li.grid-view {
  width: calc((100% - 40px * 6) / 7);
}

.grid-brick .grid-gallery.columns-8 li.grid-view {
  width: calc((100% - 40px * 7) / 8);
}

.columns-3 .grid-view.grid-image:nth-child(3n + 1) {
  clear: both;
}

.grid-brick .grid-gallery li.grid-view img {
  height: auto;
  max-width: 100%;
}

.grid-brick .columns-1.grid-gallery li.grid-view img {
  display: table;
  float: none;
  margin: 0 auto;
  width: auto;
}

.grid-brick .grid-gallery.columns-1 li.grid-view {
  width: 100%;
}

.grid-brick .grid-gallery.columns-4 li.grid-view:nth-child(4n + 1) {
  clear: both;
}

.grid-brick .grid-gallery.columns-5 li.grid-view:nth-child(5n + 1) {
  clear: both;
}

.grid-brick .grid-gallery.columns-6 li.grid-view:nth-child(6n + 1) {
  clear: both;
}

/*.wow { visibility: hidden; }*/

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wow {
    visibility: visible;
  }
}

_:-ms-lang(x),
.wow {
  visibility: visible;
}

/*.term-description*/

.term-description {
  max-width: 1000px;
}

/* home-popup */

#myModal.modal.subscription {
  display: block;
  z-index: 9999;
  visibility: visible !important;
  padding-top: 0px;
}

#myModal.modal.subscription .modal-dialog {
  display: table;
  margin: 0 auto;
  background: #fff;
  width: 775px;
  padding: 165px 86px 115px;
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#myModal.modal.subscription .modal-dialog h4.modal-title {
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2em;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#myModal.modal.subscription .modal-dialog p {
  margin: 0 0 20px;
  font-size: 18px;
}

#myModal.modal.subscription .modal-dialog .btn.btn-default {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0px solid;
  background-color: transparent;
  color: #162846;
  background-image: url(../images/cross-new.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* home-popup */

#myModal1.modal.subscription,
#myModal.modal.subscription {
  display: block;
  z-index: 9;
  visibility: visible !important;
  padding-top: 0px;
}

#myModal1.modal.subscription .modal-dialog,
#myModal.modal.subscription .modal-dialog {
  display: table;
  margin: 0 auto;
  background: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#myModal1.modal.subscription .modal-dialog h4.modal-title,
#myModal.modal.subscription .modal-dialog h4.modal-title {
  font-size: 37px;
  font-weight: 100;
  line-height: 1.2em;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#myModal1.modal.subscription .modal-dialog p,
#myModal.modal.subscription .modal-dialog p {
  margin: 0 0 20px;
  font-size: 18px;
}

#myModal1.modal.subscription .modal-dialog .btn.btn-default,
#myModal.modal.subscription .modal-dialog .btn.btn-default {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0px solid;
  background-color: transparent;
  color: #162846;
  background-image: url(../images/cross-new.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.page-template-template-video-php img.tab-portrait,
.page-template-template-video-php img.tab-landscape {
  display: none;
}

/* footer popup */

.footer-newsletter-subscription-outer
  div.ctct-form-embed
  form.ctct-form-custom
  input {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid #ccc !important;
  outline: 0 !important;
}
.footer-newsletter-subscription-outer
  fieldset.ctct-form-lists
  .ctct-form-listitem {
  float: left;
  margin: 0 20px 0 0 !important;
}
.footer-newsletter-subscription-outer button.ctct-form-button:hover {
  background-color: #d79f28 !important;
  border: 1px solid #d79f28 !important;
}
.footer-newsletter-subscription-outer legend#list_memberships_label_0 {
  font-size: 16px;
  margin: 0;
}

.footer-newsletter-subscription-outer {
  max-width: 500px;
  display: table;
  margin: 0 auto;
  background: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer-newsletter-subscription {
  display: none;
}
.footer-newsletter-subscription {
  position: fixed;
  z-index: 99999;
  padding-top: 0px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.footer-newsletter-subscription .ctct-form-defaults div#ctct_recaptcha_0 {
  display: none;
}
.footer-newsletter-subscription-outer
  button.footer-newsletter-subscription-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0px solid;
  background-color: transparent;
  color: transparent6;
  background-image: url(../images/cross-new.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
/*custom-header-mob*/

/*logo*/

.home header .menu-nav .header_blue_logo.header_logo {
  position: absolute;
  top: 20px;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.home header .menu-nav .header_white_logo.header_logo {
  opacity: 1;
  display: block;
}

header .menu-nav .header_blue_logo.header_logo {
  position: absolute;
  top: 20px;
  opacity: 1;
  display: block;
}

header .menu-nav .header_white_logo.header_logo {
  opacity: 1;
  display: block;
}

header .menu-nav.navbar-white .header_white_logo.header_logo {
  opacity: 0;
  display: block;
}

header .menu-nav.navbar-white .header_blue_logo.header_logo {
  position: absolute;
  top: 20px;
  opacity: 1;
  display: block;
  transition: 0.5s;
  transition: opacity 0.5s ease;
}

header .menu-nav .header_logo {
  height: 60px;
  width: 60px;
  transition-delay: 0s;
  transition: 0.5s;
}

header .menu-nav.menu_active .header_logo {
  transition-delay: 0s;
}

header .menu-nav .header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*logo-end*/

.home header {
  position: static;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0;
}

.home .menu-nav {
  background-color: transparent;
  transition: background-color 0.5s ease;
}

.home .menu-nav.navbar-white {
  background-color: white;
}

header .menu-nav {
  background-color: white;
  padding: 20px;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
}

/*desktop-nav*/

.home .menu-nav input ~ nav.nav-desktop {
  opacity: 0;
}

.menu-nav input ~ nav.nav-desktop {
  background: transparent;
  position: static;
  top: 0px;
  left: 0;
  width: auto;
  height: auto;
  z-index: 3;
  transition: 0.5s;
  overflow: hidden;
  z-index: -1;
  display: flex;
  align-items: center;
  opacity: 1;
}

.menu-nav.navbar-white input ~ nav.nav-desktop {
  opacity: 1;
}

.menu-nav input ~ nav.nav-desktop ul {
  text-align: left;
  position: static;
  top: 0;
  padding-left: 0px;
  list-style: none;
  margin: 0;
  line-height: 20px;
  display: flex;
  justify-content: space-between;
}

.menu-nav input ~ nav.nav-desktop ul > li {
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0s;
  margin-right: 16px;
}

.menu-nav input ~ nav.nav-desktop ul > li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #001945;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  padding: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "Plus Jakarta Text Medium";
	font-weight: normal;
}

/* blog mansory */

.common_grid_outer {
  margin-top: 100px;
  float: left;
  width: 100%;
  height: max-content;
}

.card-columns .card .card_img img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.common_grid_outer .card-columns {
  column-gap: 2rem;
}

.common_grid_outer .card-columns .card .card_content {
  margin: 15px 0 0;
}

/* end of blog mansory */

/* product page */

.portfolio_outer {
  float: left;
  width: 100%;
  position: relative;
}

/* end of product page */

/* product-detail page */

.single-portfolio .common_breadcrumbs {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 100px;
  z-index: 99;
  padding: 20px 30px 10px 30px;
}

.portfolio_content_left,
.portfolio_content_right {
  margin-top: 70px !important;
}

.common_breadcrumbs {
  font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
	font-weight: normal;
  color: #001945 !important;
 /* font-size: 14px;*/
	font-size: .9em;
  text-transform: capitalize;
  background-color: #f4f4f4;
  padding: 20px 0;
}

.common_breadcrumbs a {
  color: #666 !important;
}

.common_breadcrumbs a:hover {
  color: #001945 !important;
}

.portfolio_outer ul.port-menu {
  padding: 0;
  list-style: none;
  margin: 10px 0;
  display: table;
  font-family: "Plus Jakarta Text Medium", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*font-size: 10px;*/
	font-size: .6em;
}

.portfolio_outer ul.port-menu li {
  background: #fff none repeat scroll 0 0;
  color: #001945;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
}


.portfolio_outer ul.port-menu li a, .single_portfolio_tag ul li a {
  color: #001945;
  text-decoration: none;
}

.portfolio_outer nav.pagination {
  display: table;
  clear: left;
}

.portfolio_outer.portfolio_cat_outer img {
  height: auto;
  object-fit: cover;
}

.portfolio-featured-image {
  position: relative;
}

.bookmarkbutton {
  position: absolute;
  bottom: 4px;
  right: 4px;
  /* z-index: 999999; */
  background-color: rgba(255,255,255,.5);
  padding: 4px;
  font-size: 14px;
  line-height: 0;
}

.bookmarkbutton a {
    color: #fff;
}

.bookmarkbutton a:hover {
    color: #d79f28;
}


.product-video iframe {
    max-width: 100%;
}



/* end of product-detail page */

.modal-open .common_grid_outer .modal {
  opacity: 1;
}

.common_grid_outer .common_breadcrumbs h3 a {
  color: #b3b3b3 !important;
  font-weight: 500;
}

.common_grid_outer .common_breadcrumbs h3 span {
  font-weight: 500;
}

.common_grid_outer .common_breadcrumbs .breadcrumbs_left h3 a {
  color: #b3b3b3 !important;
  font-weight: 500;
}

.common_grid_outer .common_breadcrumbs .breadcrumbs_left h3 span a {
  color: #b3b3b3 !important;
  font-weight: 500;
}

.common_grid_outer .common_breadcrumbs .breadcrumbs_left h3 span {
  font-weight: 500;
}

.single_top_outer .breadcrumbs_left {
  float: left;
}

.single_top_outer .mylist_right {
  float: right;
  padding-right: 17px;
}

.single_top_outer .mylist_right a.add_to_list {
  font-size: 13px;
  text-transform: uppercase;
}

.portfolio_content_outer {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio_content_outer .portfolio_content_left {
  /*float: left;
  width: 40%;
  position: relative;*/
}

.portfolio_content_outer .portfolio_content_right {
  /*float: right;
  width: 57%;
  position: relative;
  margin: 0 0 30px;*/
}

.portfolio_content_outer .portfolio_content_right .single_portfolio_image {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio_content_outer .portfolio_content_right .single_portfolio_image img {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
}

.single_top_outer .mylist_right {
  float: right;
  padding-right: 0px;
  display: flex;
}

.single_top_outer .mylist_right .my_list_btn {
  float: left;
  font-size: 13px;
  text-transform: uppercase;
  padding-right: 20px;
  position: relative;
}

.single_top_outer .mylist_right a.add_to_list {
  text-transform: uppercase;
  position: relative;
  border: 0px solid !important;
  background: transparent;
  padding-right: 25px;
  margin-right: 0;
  font-size: 10px;
  letter-spacing: 1px;
  font-family: "Plus Jakarta Text Medium";
font-weight: normal;
  color: #001945 !important;
}

.single_top_outer .mylist_right a.add_to_list:before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(../images/book-blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

.portfolio_content_outer .portfolio_content_left .portfolio_outer {
  /*position: fixed;
  width: 40%;
  padding: 0 40px 0 0;*/
}

.portfolio_outer .portfolio_content {
  float: left;
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 24px;
}

.portfolio_outer .single_portfolio_related {
  float: left;
  width: 100%;
  position: relative;
}

.single_portfolio_tag {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.common_grid_outer .container-fluid {
  padding: 0 30px;
}

.portfolio_content_outer {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio_content .portfolio_single_outer {
  float: left;
  width: 100%;
  position: relative;
}

body.modal-open {
  padding-right: 0 !important;
}

.portfolio_outer .single_portfolio_related ul {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}

.portfolio_outer .single_portfolio_related ul li {
  float: left;
  list-style: none;
  width: calc((100% - 10px * 3) / 4);
  margin-right: 10px;
margin-bottom: 10px;
cursor:pointer;
}

.portfolio_outer .single_portfolio_related ul li:nth-child(4n) {
  margin-right: 0;
}

.portfolio_outer.portfolio_cat_outer .product .outer-div {
  /*width: 300px;
	height: 300px;
	position: relative;*/
  overflow: hidden;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  margin: 0 auto;
}

.portfolio_outer.portfolio_cat_outer .product .outer-div img {
  /*height: 100%;
	object-fit: cover;
	width: 100%;
	position: absolute;
	left: 0px;
	right: 0px;*/
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.portfolio_outer.portfolio_cat_outer .product:hover .outer-div img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.portfolio_outer .single_portfolio_related ul li a {
  float: left;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.portfolio_outer .single_portfolio_related ul li a img {
  float: left;
  position: relative;
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: absolute;
}
.product-video {
  float: left;
  width: 100%;
}


.single_portfolio_tag ul {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Plus Jakarta Text Medium", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
	font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*font-size: 10px;*/
	font-size: .6em;
}

.single_portfolio_tag ul li {
  float: left;
  list-style: none;
  background: #fefefe none repeat scroll 0 0;
  color: #001945;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
}

/* custom wishlist */

.single_top_outer .mylist_right button#valwhistlist {
	text-transform: uppercase;
	position: relative;
	border: 0px solid !important;
	background: transparent;
	padding-right: 25px;
	margin-right: 20px;
	padding-top: 4px;
	text-align: right;
	outline: none;
	/*font-size: 10px;*/
	font-size: .6em;
	letter-spacing: 1px;
	font-family: "Plus Jakarta Text Medium";
	color: #001945;	
}

.single_top_outer .mylist_right button#valwhistlist:before {
  content: "";
  position: absolute;
  top: 4px;
  right: -14px;
  width: 20px;
  height: 20px;
  background: url(../images/bookmark-blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

.portfolio_content_outer .portfolio_content_right .single_portfolio_gallery {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio_content_outer .portfolio_content_right .single_portfolio_gallery a {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio_content_outer
  .portfolio_content_right
  .single_portfolio_gallery
  a
  img {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
}

.page-template-Default-Page-Slider .mfp-wrap.mfp-gallery {
  display: none;
}

.page-template-Default-Page-Slider .mfp-bg.mfp-img-mobile {
  display: none;
}

.gallery-item::before {
  opacity: 0;
}

.gallery-item a {
  float: left;
  width: 100%;
  position: relative;
}

.single-portfolio .businesshours {
    display: none;
}

/* CART PAGE CSS */


.cart-session-item button {
  padding: 10px 20px;
  background-color: #001945;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0;
  text-decoration: none;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  border: 0;
  display: inline-block;
}

.common_grid_outer.cart-session-outer .cart-session-item {
  margin: -1px auto 0px;
  float: none;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.common_grid_outer.cart-session-outer .cart-session-item .cart-session-title {
  width: 100%;
  text-align: center;
  font-weight: 600;
  padding: 6px 0px;
  font-size: 17px;
}

.common_grid_outer.cart-session-outer .cart-session-item .cart-close {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.common_grid_outer.cart-session-outer .cart-session-item .cart-close svg {
  display: table;
  width: 50px;
  height: 25px;
  cursor: pointer;
}

.common_grid_outer.cart-session-outer .cart-session-item .cart-img {
  float: left;
  width: 40%;
  padding: 20px 0;
  text-align: center;
}

.common_grid_outer.cart-session-outer .cart-session-item .cart-title {
  float: left;
  width: 40%;
  text-align: center;
  font-size: 17px;
}

.common_grid_outer.cart-session-outer button {
  display: inline-block;
  margin: 0 auto;
  background-color: #001945;
  color: #fff;
  border: none;
  height: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0;
  outline: none;
  margin-top: 20px;
}

.cart_outer {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal-content .modal-header button.close {
  width: 22px;
  height: 22px;
  background: #fff;
  opacity: 1;
  display: table;
  margin: 0;
  float: none;
  padding: 0;
  border: none;
  position: relative;
}

.modal-content .modal-header button.close span {
  font-size: 25px;
  position: absolute;
  color: #000;
  line-height: initial;
  float: left;
  top: 33%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left: 52%;
  height: 20px;
  width: 20px;
  display: block;
  letter-spacing: initial;
  text-shadow: none;
  font-family: auto;
  font-weight: 600;
}

.modal-content .modal-header h3 {
  margin: 0 !important;
}

.modal-content .modal-body #popup_link {
  display: flex;
  justify-content: space-between;
}

.modal-content .modal-body #email-link {
  text-align: center;
  width: 150px;
}

.modal-content .modal-body #email-link img {
  width: 80px;
  cursor: pointer;
}

.modal-content .modal-body #email-link p {
  margin: 0;
  cursor: pointer;
}

.modal-content .modal-body #copylink {
  text-align: center;
  width: 150px;
}

.modal-content .modal-body #copylink img {
  width: 80px;
  cursor: pointer;
}

.modal-content .modal-body #copylink img p {
  margin: 0;
  cursor: pointer;
}

.modal-content .modal-footer {
  padding: 0;
  border: 0px solid;
}

.modal-open .common_grid_outer .modal .modal-content {
  width: 350px;
  border-radius: 10px;
  border: 0px solid;
  display: table;
  margin: 0 auto;
  overflow: hidden;
}

form#cart-sharing-form input,
form#cart-sharing-form textarea {
  border: 1px solid #ccc;
  padding: 4px 10px;
  width: 100%;
  margin: 0 0 10px;
  font-size: 14px !important;
}

form#cart-sharing-form button.cart-email-field-button {
  font-size: 12px;
  padding: 8px 20px;
}

.modal-content .modal-footer button#cart-share-prev {
  width: 100%;
}

.modal-content .modal-body #popup_link p {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

.modal-open .common_grid_outer .modal#exampleModal .modal-content {
  width: 100%;
}

.modal-open .common_grid_outer .modal#exampleModal img {
  width: 100%;
  height: 100%;
}

.pagination {
  border-radius: 0 !important;
  border: 1px solid #ccc;
  border-right: 0;
  font-size: 16px;
}

.pagination_outer.blog-main-pagination {
  display: table;
  margin: 0 auto 50px;
}

.pagination a {
  border-right: 1px solid #ccc;
  padding: 5px 12px;
  color: #001945 !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination span {
  border-right: 1px solid #ccc;
  padding: 5px 12px;
  color: #001945;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination span.current {
  background: #001945 none repeat scroll 0 0;
  border: none;
  color: #ffffff;
  padding: 5px 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.pagination a:hover {
  background: #001945 none repeat scroll 0 0;
  border: none;
  color: #ffffff !important;
  padding: 5px 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.common_grid_outer img {
  width: 100%;
  height: auto;
}

/* Footer */

.home .site-footer {
  display: none;
}

.site-footer {
  color: #001945;
  background-color: #fff;

  /*font-size: 80%;
  line-height: 1.5;*/
}

.site-footer .btn {
  border-radius: 10rem;
  background-color: #f4f4f4 !important;
  border: none !important;
  color: #001945 !important;
}

.footercolumn-4 {
  text-align: right;
}

.copyright {
  font-size: 12px;
}

footer.site-footer.mt-auto {
  position: sticky;
  top: 100%;
  float: left;
  width: 100%;
}

footer.site-footer .social svg {
  margin-right: 5px;
  font-size: 30px;
}

body.single-portfolio footer.site-footer.mt-auto {
  position: relative;
  top: auto;
  bottom: 0;
  width: 100%;
  float: left;
}

.common_grid_outer.portfolio-outer .product .portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  transition: 1s ease-in-out;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -ms-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
}

.common_grid_outer.portfolio-outer .product .portfolio-image-wrapper img {
  transition: 1s ease-in-out;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -ms-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
}

.common_grid_outer.portfolio-outer .product:hover .portfolio-image-wrapper img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}


/* TEMP - last procduct centered */

/*.product:last-child {
    margin: 0 auto;
}*/

/* CUSTOM POPUP CSS */

.modal.search-pop-up {
  background-color: rgb(255 255 255 / 88%);
  padding: 0px !important;
}

.modal.search-pop-up .screen-reader-text {
  display: block;
  opacity: 1;
  height: auto;
  position: unset !important;
  z-index: 9999;
  margin: auto;
  background: transparent;
  background-color: transparent;
  overflow: visible;
  -webkit-clip-path: unset;
  clip-path: unset;
  margin: 0;
  width: 100%;
  height: 100%;
}

.search-pop-up label {
  display: none !important;
}

.modal.search-pop-up input[type="text"] {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #0b193c;
  background: transparent;
  padding: 10px 0px;
}

.modal.search-pop-up input[type="submit"] {
  float: right;
  background: transparent;
  border: none;
  padding: 10px 0px;
}

.modal.search-pop-up .modal-content {
  background-color: transparent;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: none;
}

input#searchsubmit {
    display: inline-block;
  margin: 0 auto;
  background-color: #001945;
  color: #fff;
  border: none;
  height: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0;
  outline: none;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

body.home.page-template {
  margin: 0px;
}

.lg-backdrop.in {
  z-index: 99999;
}

.lg-outer.lg-visible {
  z-index: 99999;
}

/*.lumos-container {
  display: none;
}*/

/* Slick slider */

.slide-outer {
  display: block;
  /*height: 100%;*/
}

.slide-outer .slick-list {
  height: 100%;
}

.slide-outer .regular.slider {
  opacity: 1;
  position: relative;
  overflow: visible;
  text-align: center;
  height: 100%;
}

.slide-outer img.left-img-slick,
.slide-outer img.right-img-slick {
  position: absolute;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.slide-outer img.left-img-slick {
  left: 0;
}

.slide-outer img.right-img-slick {
  right: 0;
}

.slide-outer .regular.slider .slick-inner a {
  display: inline-block;
}

/* Portfolio CSS Start */

.modal.bookmatch-popup {
  padding-right: 0px;
}

.modal.bookmatch-popup .modal-dialog {
  max-width: 1400px;
  width: 80%;
  margin: 0px auto;
}

.modal.bookmatch-popup .modal-body div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 0;
  padding: 0;
  float: left;
  line-height: 0;
}

.modal.bookmatch-popup .modal-header {
  border-bottom: 0px;
}

.modal.bookmatch-popup .modal-content {
  background-color: transparent;
  border-radius: 0px !important;
}

.modal.bookmatch-popup .modal-header button.close {
  background: transparent;
}

.modal.bookmatch-popup .modal-header button.close {
  width: 40px;
  height: 40px;
}

.modal.bookmatch-popup .modal-header button.close span {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  background: url(../images/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
  cursor: pointer;
  background-size: 100%;
  opacity: 1;
}

.modal.bookmatch-popup .modal-header {
  position: fixed;
  z-index: 999;
  top: 0px;
  right: 18px;
}

.modal.bookmatch-popup .modal-body {
  padding: 0px;
}

.modal.bookmatch-popup .mirrorX img {
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.modal.bookmatch-popup .mirrorY img {
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  transform: scale(1, -1);
}

.modal.bookmatch-popup .diagonal img {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  -moz-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

/* .portfolio-template-default.logged-in .modal.bookmatch-popup .modal-header {
  top: 38px;
}

.portfolio-template-default.logged-in .modal {
  padding-top: 125px;
} */

/* Portfolio CSS End */



/* default page */

.inner_title {
  margin: 2rem 0 1rem 0;
}

.entry-content .gallery {
  /*margin: 2rem 0px;*/
	margin: 0;
	overflow-y: auto;
  overflow-x: hidden;
}

.page-philanthropy.philanthropy .entry-content .gallery {
  margin: 2rem -10px;
}

.entry-content .gallery .gallerycaption {
  font-family: "Plus Jakarta Text Regular","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 400;
  font-size: .8em;
  line-height: 1.4;
  /*margin-bottom: 1rem;*/
  /*padding: 0px 15px;*/
}

.entry-content {
  margin-bottom: 2rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

/* About */


.page-template-page-about .banner {
  background: url("../images/about-banner.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	padding: 600px 0 100px 0;	
}

.page-template-page-about .banner .h1, .page-template-page-about .banner h1 {
    font-family: "Plus Jakarta Text Bold","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 600;
    font-size: 3em;
    color: #fff;
}




/* Old About below */

.about-bg {
  background: url("../images/about-banner.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  height: 100%;
  position: relative;
  width: 100%;
}

.aboutcontent {
    text-align: center;
    background: #fff;
    position: absolute;
    bottom: 0;
	padding: 50px 300px 100px 300px;
}

.aboutsection h1 {
    position: absolute;
    bottom: 50%;
    width: 100%;
	font-family: "Plus Jakarta Text Regular","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 600;
    font-size: 3em;
	color: #fff;
}


.aboutcontent h1, .aboutcontent h2 {
    /*margin-bottom: 3rem !important;
	color: #fff;*/
}

.aboutsection a.bottom_scroll {
  display: inline-block;
  margin: 0 auto;
  background-color: #001945;
  color: #fff;
  border: none;
  height: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0;
  outline: none;
/*  margin-top: 20px;
  margin-bottom: 20px;*/
  cursor: pointer;
	
	
	left: 50%;
    position: absolute;
    bottom: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.aboutsection a.bottom_scroll:hover {
    color: #fff !important;
}

/* Team */

/*.teamsection {
	height: calc(100vh - 170px);
}*/

.band {
  border-bottom: solid #001945 1px;
}

.band:last-child {
  border-bottom: none;
}

.team-bio {
  /*font-size: 80%;
  line-height: 1.5;*/
}

.team-email .svg-inline--fa {
  font-size: 30px;
  margin: 0 2px;
}

.team-bio p:nth-child(odd) {
  margin-bottom: 0;
}

.team-photo img {
  /*width: 100%;
	height: auto;*/

  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.team-preview hr {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

/* Contact */

body.page-template-template-contact {
  background: url("../assets/bg-brooklyn-bw.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contact-info {
  border-bottom: solid 1px #001945;
}

/* Art Page / Stone Sculpture + Cubic Elements */

.artpage-bio {
  font-size: 16px;
  line-height: 24px;
}


.artpage-contact-info a {
  text-decoration: underline !important;
}

/* Project */

.single-projects .gallerycaption {
    display: none;
}

.single-project-top-image {
    margin-bottom: 40px;
}

.postid-24110 .single-project-top-image,
.postid-24131 .single-project-top-image,
.postid-24146 .single-project-top-image,
.postid-24219 .single-project-top-image,
.postid-24247 .single-project-top-image {
	display: none;
}

.postnavlink img {
    width: 30px;
}

/* Blog + Videos */

.page-template-page-blog .card h2 a, .page-template-page-videos .card h2 a {
	color: #001945 !important;
}

.page-template-page-blog .card h2 a:hover, .page-template-page-videos .card h2 a:hover {
	color: #d79f28 !important;
}

.video-excerpt {
  font-size: 16px;
  line-height: 24px;
}

.card_img {
  position: relative;
}

.playbutton {
  left: 50%;
  line-height: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
}

.playbutton .svg-inline--fa.fa-w-16 {
  width: 1em;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Philanthropy */

.philanthropy–card-text {
  /*font-size: 80%;
  line-height: 1.5;*/
}

/* CEU */

/*a.accord-section-title.accord-view-title {
  font-family: "Plus Jakarta Text Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
font-weight: normal;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0 !important;
}

.accord {
  border-bottom: solid 1px #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}*/

/* Misc Pages */

/* Stonethica - hide h1 */

.page-id-11263 .inner_title h1 {
	display: none;
}

.wp-image-11516 {
    max-width: 300px !important;
}


/* portal page */

/*.page-template-page-portal .card {
  color: #fff !important;
  background-color: #001945;
}

.page-template-page-portal .card h3 {
  color: #fff !important;
  font-family: "Plus Jakarta Text Medium", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
	font-weight: normal;
}

.portal-loginpanel {
  background: #fff;
  font-size: 60%;
  font-family: "Plus Jakarta Text Medium", "Helvetica Neue", Helvetica, Arial,
    sans-serif !important;
	font-weight: normal;
}

.portal-loginpanel h4 {
  margin-bottom: 0 !important;
}*/





/* Live Inventory + Signature */


.banner-topband {
    background-color: #001945;
    color: #fff;
    position: absolute;
    top: 100px;
    font-size: .8em;
    padding: 10px 0;
}

.banner-topband p {
	margin-bottom: 0;
}

.banner-topband a {
	color:#fff;
}

.banner-topband a:hover {
	color:#666 !important;
}


/*.banner {
	position: relative;
}*/

.page-template-page-liveinventory .banner {
  background: url("../images/login-bg-1.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	padding: 300px 0;	
}

.page-template-page-signature .banner {
  background: url("../images/signature-bg.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	padding: 300px 0;	
}

/*.banner img {
    width: 100%;
}*/

.liveinventory-overlay, .signature-overlay {
    background-color: rgba(255,255,255,.85);
}

.liveinventory-overlay img, .signature-overlay img {
	width: 80%;
}

.liveinventory-overlay .btn, .signature-overlay .btn {
    border: solid 1px #001945;
    display: block;
	text-transform: uppercase;
    letter-spacing: 1px;
}


.signature-overlay .btn:focus,
.signature-overlay .btn:active,
.signature-overlay .btn:hover,
.liveinventory-overlay .btn:focus,
.liveinventory-overlay .btn:active,
.liveinventory-overlay .btn:hover {
  outline: none !important;
  box-shadow: none !important;
  background-color: #001945 !important;
}


.signature-benefits-box {
    background-color: #ddd;
}

.signature-benefits-box h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 2em;
}

/* Lightbox CSS Start */

.lightboxOverlay {
  z-index: 99999;
}

.lightbox {
  z-index: 99999;
}
.single-art-pages .card_grid {
  padding: 0px 15px;
  margin-bottom: 30px;
}
.single-art-pages .card_grid .card_img img {
  width: 100%;
}


.lg-backdrop {
background-color: #f4f4f4 !important;
}

.lg-toolbar {
    background-color: #fff !important;
}

.lg-outer .lg-thumb-outer {
    background-color: #fff !important;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: #fff !important;
}

.lg-outer .lg-toogle-thumb {
    background-color: #fff !important;
}

.lg-sub-html {
    background-color: #fff !important;
}

.lg-toolbar .lg-icon {
    color: #001945;
}

#lg-counter {
    color: #001945;
}

.lg-sub-html {
    background-color: #fff;
    color: #001945;
}

.lg-outer .lg-toogle-thumb {
  color: #001945;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    color: #001945;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #d79f28 !important;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}

.lg-actions .lg-prev:after {
  content: "\e094";
}





.lg-toolbar .lg-icon:hover {
  color: #d79f28 !important;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
  color: #d79f28 !important;
}


/* Form 7 – Company Registration form */


button, input, optgroup, textarea {
    width: 100%;
	padding: 8px !important;
}

select {
    width: 100%;
    padding: 10px !important;
}

.wpcf7-list-item {
    display: block !important;
    margin: 0 !important;
}

span.wpcf7-list-item-label {
    float: left !important;
    line-height: 12px !important;
    margin-left: 10px !important;
}

input[type=checkbox], input[type=radio] {
    float: left !important;
    width: auto !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #46b450;
    border: none;
    color: #fff;
    padding: 8px;
    margin: 0;
}


/* Constant Contact */


.ctct-form-text {
    font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: normal;
}

.ctct-form-label, .ctct-form-required {
     font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: normal;
}

.ctct-form-embed.form_0 .ctct-form-custom .ctct-form-button {
    font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: normal;
}

.ctct-form-checkbox-label {
    font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: normal;
}

.ctct-gdpr-text {
    font-family: "Plus Jakarta Text Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-weight: normal;
}


/* ABC GALLERY PAGE CSS START */
.inner-page_content.custom-slider-sec {
  padding: 40px 0px;
}
.inner-page_content.custom-slider-sec .slick-slide img {
  margin: auto;
  width: 100%;
}
.inner-page_content.custom-slider-sec .slider_out_stru {
  width: 50%;
  margin: 0 auto;
}
.inner-page_content.custom-slider-sec .slick-initialized .slick-slide {
  display: block;
  padding: 0px 55px;
}
.inner-page_content.custom-slider-sec .slider_out_stru {
  padding-bottom: 35px;
}


/* philanthropy–card–visual_CSS */
.philanthropy–card–visual img {
  width: 100%;
}

/* Stonemasonry page */

#lightgallery-1 .gallery-stonemasonry-company:not(:first-child) {
  opacity: 0;
  visibility: hidden;
  display: none;
}

/* Collaborations */

.collaboration-title {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width:100%;
}



/* CW */

.cw-banner {
    position: relative;
}

.cw-virtual-showroom {
  background: url("../images/virtual-showroom.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	padding: 15% 0;
    text-align: center;	
}

.cw-logo {
    left: 50%;
    line-height: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: 2px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 40%;
}

.page-template-page-cw .common_grid_outer {
    margin-top: 0;
}

.cw-material-thumbnails {
    text-align: center;
}

.cw-material-swatch {
    margin: 0 0 10px 0;
    /* vertical-align: top; */
    cursor: pointer;
    text-align: center;
    display: block;
}

.cw-material-swatch img {
    width: 100%;
    height: auto;
	border-radius: 10px;
}

.cw-material-swatch-caption {
    font-size: 10px;
    margin-top: 10px;
    line-height: 1.2;
}

/* Annie Man */

.am-banner {
    position: relative;
}

.am-virtual-showroom {
  background: url("../images/virtual-showroom.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	padding: 15% 0;
    text-align: center;	
}

.am-logo {
    left: 50%;
    line-height: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: 2px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    width: 60%;
}

.page-template-page-am .common_grid_outer {
    margin-top: 0;
}

.single-am-products .entry-content p {
    margin-bottom: 0;
}


/* Cookies popup */

div#cookie-law-info-bar {
	background-color: #001945 !important;
    color: #fff !important;
	
}

a#cookie_action_close_header, a#wt-cli-privacy-save-btn {
    background-color: #999 !important;
}



.wpcf7 form.sent .wpcf7-response-output {
    background-color:transparent !important;
    border:none !important;
    color: #46b450 !important;
    width: 100%;
    text-align: center;
	font-family: "Plus Jakarta Text Medium","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    background-color:transparent !important;
    border:none !important;
    color: #cf2e2e !important;
	 width: 100%;
    text-align: center;
	font-family: "Plus Jakarta Text Medium","Helvetica Neue",Helvetica,Arial,sans-serif;
}







/* REGISTER PAGE START */


.logged-in li#menu-item-25454 {
    display: none;
} /* hide LIVE INVENTORY link when logged-in*/





.page-log-in .wppb-user-forms input, 
.entry-content .wppb-register-user li input, 
.entry-content .wppb-register-user li textarea {
  padding: 9px 15px !important;
  border: 1px solid #eee !important;
}
.entry-content .wppb-register-user li h4 {
  padding-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.entry-content .wppb-register-user .wppb-send-credentials-checkbox {
  padding-left: 30%;
  padding-bottom: 0px;
}
.entry-content .wppb-register-user .form-submit {
  padding-left: 24.5%;
}
.page-log-in .login-submit input, 
.entry-content .wppb-register-user .form-submit input {
  display: inline-block;
  margin: 0 auto;
  background-color: #001945;
  color: #fff;
  border: none;
  height: auto;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0;
  outline: none;
  cursor: pointer;
}
.page-register.register .alert {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.page-log-in .cptch_wrap.cptch_math_actions, 
.page-log-in .login-remember, 
.page-log-in .login-submit {
  display: block !important;
  margin-left: 335px !important;
}
.page-log-in .login-remember {
  margin-top: 12px !important;
}
.page-log-in .wppb-user-forms .login-password input, 
.page-log-in .wppb-user-forms .login-username input {
  width: 55% !important;
}


/* .page-login.um-page-login .um-center {
  text-align: left;
} */
.page-login.um-page-login .um-center input, 
.page-login.um-page-login .um-center input:focus, 
.page-register .um-col-alt input, 
.page-register .um-col-alt input:focus, 
.password-reset .um-center input[type="submit"], 
.password-reset .um-center input[type="submit"]:focus {
  display: inline-block;
  margin: 0 auto;
  background-color: #001945 !important;
  color: #fff;
  border: none;
  height: auto;
  padding: 10px 20px !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0 !important;
  outline: none;
  cursor: pointer;
  margin-top: 15px;
}
.password-reset .um-center input[type="submit"] {
  margin-top: 0px;
}
.page-register .um-col-alt .um-right a {
  display: inline-block;
  margin: 0 auto;
  background-color: #e5e5e5 !important;
  color: #001945;
  border: none;
  height: auto;
  padding: 10px 20px !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 0 !important;
  outline: none;
  cursor: pointer;
  margin-top: 0px;
  box-shadow: none;
}

body.page-login {
	background: url("../images/login-bg-3.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.page-login .inner-page_content .container {
    background: rgba(255,255,255,.85);
    margin-top: 200px;
    margin-bottom: 200px;
	max-width: 600px !important;
}

.page-login .inner_title {
    text-align: center;
}

.um input[type=submit].um-button, .um input[type=submit].um-button:focus, .um a.um-button, .um a.um-button.um-disabled:hover, .um a.um-button.um-disabled:focus, .um a.um-button.um-disabled:active {
    border-radius: 0 !important;
	background-color: #001945 !important; 
  	color: #fff !important;
 	border: none !important;
}

.um-button.um-alt {
	border-radius: 0 !important;
	background-color: #001945 !important; 
  	color: #fff !important;
 	border: none !important;
}

a.um-button {
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-box-shadow: 0 0 0 rgb(50 50 93 / 0%), 0 1px 3px rgb(0 0 0 / 0%) !important;
    box-shadow: 0 0px 0px rgba(50,50,93,0),0 1px 3px rgba(0,0,0,0) !important;
    /* opacity: 1; */
}








.customgallerysection img {
  max-width: initial;
  height: auto;
  width: 100%;
  cursor:pointer;
}

.customgallerysection, 
.masonry-brick { 
  height: auto;
  min-height:180px;
}


/* LIGHT GALLERY CSS */
.lg-actions .lg-prev.lg-icon, 
.lg-actions .lg-next.lg-icon{
  width: auto;
}


div.masonry-outer {
  float: left;
  width: 100%;
  display: table;
}
div.masonry-outer .grid.masonry {
  float: left;
  width: 100%;
  display: table;
}
div.masonry-outer .grid.masonry .grid-gallery {
  float: left;
  width: 100%;
  display: table;
}



/* LAUNCH TEMP HIDE */

#menu-item-24396, .menu-item-24396 {
	display: none;
}

