@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;400&display=swap");
html {
  margin: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

body {
  margin: 0px;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  font-weight: 400;
  color: #555;
  font-size: 18px;
}

* {
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

b, strong {
  font-weight: 700;
}

i {
  font-style: italic;
}

b i {
  font-style: italic;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #555;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-weight: 400;
  font-size: 3em;
}

h2 {
  font-size: 2em;
  font-weight: 400;
}

.animate {
  visibility: hidden;
}

.animated {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.noscroll {
  overflow: hidden;
}

section {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-content{
	margin: 100px 0 100px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  font-size: 16px;
  min-width: 180px;
  font-weight: bold;
  color: #000;
  text-align: center;
  overflow: hidden;
  border: 3px solid #000;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.button:hover {
  color: #555555;
  border: 3px solid #555555;
}

.button-gold {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  min-width: 180px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: #C0B197;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border: none;
}

.button-gold:hover {
  background: #8C7A7E;
  cursor: pointer;
}

.page-title {
  font-size: 2em;
  padding: 0 5%;
}

/* ---------------------------------------------- /*
 * Pagination
/* ---------------------------------------------- */
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.pagination div, .page-numbers {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 3px;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #C0B197;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .number, .page-numbers .number {
  position: absolute;
}

.page-numbers.dots {
  top: -20px;
}

.pagination div:hover, .page-numbers:hover {
  color: #fff;
  background: #8C7A7E;
}

.pagination .current, .page-numbers.current {
  background: #8C7A7E;
  color: #fff;
}

.pagination-arrows {
  margin: 3px;
  text-decoration: none;
  width: auto;
  color: #555 !important;
  background: transparent !important;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.pagination-arrows:hover {
  color: #0078de !important;
}

.animsition-overlay-slide {
  position: fixed;
  z-index: 110 !important;
  background-color: #ddd;
}

/* ---------------------------------------------- /*
 * Owl Carousel
/* ---------------------------------------------- */
.carousel-wrap {
  width: 100%;
  margin: 0 auto 0;
  position: relative;
}

.owl-carousel {
  position: relative;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.owl-carousel .owl-item {
  position: relative;
  display: block;
  float: left;
  height: 100%;
}

.owl-carousel .owl-item .item {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

.owl-nav.disabled, .owl-dots.disabled {
  display: none;
}

.owl-nav button {
  position: absolute;
  background: none;
  border: 0;
  color: #aaa;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
	font-size:30px;
}

.owl-nav button:hover {
  color: #0078de;
  cursor: pointer;
}

.owl-prev {
  left: 0px;
}

.owl-next {
  right: 0px;
}

.owl-dots {
  width: 100%;
  text-align: center;
}

.owl-dot {
  background-color: #D6D6D6;
  width: 10px;
  height: 10px;
  border: 0;
  margin: 5px;
  border-radius: 50%;
  padding: 0;
}

.owl-dot.active {
  background-color: #869791;
}

/* ---------------------------------------------- /*
 * Header
/* ---------------------------------------------- */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  text-align: center;
  background: #fff;
}

.header {
  position: fixed !important;
}

.header-nav {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  margin: 0;
  height: 100%;
}

.inner-header {
  position: relative;
  height: auto;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 90%;
	width:100%;
	
}

#logo {
  position: relative;
  margin: 10px 0;
  height: 60px;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  z-index: 10;
  left: 0;
  top: 0px;
}

.logo {
  height: 50px !important;
}

#logo img {
  height: 100%;
}

.fa-search {
  font-size: 26px;
}

.social-media {
  padding: 0;
  margin: 0;
  color: #fff;
}

.social-media li {
  display: inline-block;
  list-style: none;
  margin: 5px;
}

.social-media .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #193d71;
  border-radius: 50%;
}

.social-media li a {
  color: #fff;
  font-size: 18px;
}

.main {
  position: relative;
  overflow: hidden;
}

/* ---------------------------------------------- /*
 * Menu
/* ---------------------------------------------- */
nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.main-menu {
  padding: 0;
}

.main-menu li {
  list-style: none;
  display: inline;
  margin: 0 8px;
}

.main-menu li a {
  color: #555;
  font-weight: 600;
  font-size: 18px;
}

.main-menu li a:hover {
  color: #0e359e;
}

#menu-wrap {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  background: #fff;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#menu-wrap h3 {
  color: #fff;
  font-weight: 300;
  font-size: 25px;
}

.menu-slide {
  right: 0 !important;
}

.inner-menu-wrap {
  text-align: center;
  display: none;
}

.mobile-menu {
  padding: 0;
  display: none;
}

.mobile-menu li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 10px;
  text-align: left;
  left: 100px;
  opacity: 0;
}

.mobile-menu li a {
  position: relative;
  font-weight: 300;
  color: #555;
  list-style: none;
  font-size: 25px;
  padding: 10px;
}

.mobile-menu li a:hover {
  font-weight: 700;
}

.mobile-menu .sub-menu {
  padding: 0;
}

.mobile-menu .sub-menu li {
  padding: 0;
}

#nav-icon {
  width: 40px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(0deg) translate(0, -50%);
  transform: rotate(0deg) translate(0, -50%);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 10;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #555;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg) translate(0, -50%);
  transform: rotate(0deg) translate(0, -50%);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 2px;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 22px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.current-menu-item a,
.current-page-ancestor a,
.current-post-ancestor a {
  -webkit-text-fill-color: #555;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #555;
}

/* ---------------------------------------------- /*
 * Search Bar
/* ---------------------------------------------- */
.close-search {
  position: absolute;
  top: 10%;
  right: 20%;
}

.close-search:hover {
  cursor: pointer;
}

#main-search {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  display: none;
  text-align: center;
  border-bottom: 5px solid #ccc;
  background-color: #fff;
  padding-top: 100px;
  z-index: 10;
}

.inner-search {
  width: 100%;
  min-height: 100%;
}

#search-input {
  width: 100%;
  padding: 10px;
  height: 50px;
  font-size: 16px;
}

/* ---------------------------------------------- /*
 * Content
/* ---------------------------------------------- */
.catalogue-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.catalogue-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-wrap {
  margin-top: 100px;
  margin-bottom: 100px;
}

.product-banner-grid {
  position: relative;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
  grid-gap: 0;
  padding: 0;
  max-width: 100%;
}

.product-banner-grid h1 {
  font-size: 2.5em;
  margin-top: 0;
}

.product-banner-grid img {
  width: 100%;
}

.product-banner-grid .single-product-content {
  padding: 0 10%;
}

.product-banner-grid .single-product-content .information {
  margin: 20px 0;
}

.product-banner-grid .single-product-content .information h3, .product-banner-grid .single-product-content .information .specs {
  margin-bottom: 5px;
}

.product-banner-grid .single-product-content .information .specs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: auto 4%;
}

.product-banner-grid .single-product-content .information .specs .grid-item {
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-image {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 4%;
}

.product-image .image-gallery-item {
  position: relative;
  font-size: 0;
  padding-top: 100%;
}

.product-image .image-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image .image-gallery-item:first-child {
  padding-top: 70%;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.product-info {
  margin: 0;
}

.product-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  padding: 10px 5%;
}

.product-grid img {
  width: 100%;
}

.product-info {
  will-change: min-height;
}

.product-info-wrap {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  /* For browsers don't support translate3d. */
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.similar-products {
  padding: 20px 5%;
}

.similar-products h2 {
  font-size: 25px;
}

.similar-products h2:first-child {
  font-size: 2em;
}

.similar-products .product-slide .owl-stage-outer {
  overflow: hidden;
}

/* ---------------------------------------------- /*
 * Blog
/* ---------------------------------------------- */
/* ---------------------------------------------- /*
 * Footer
/* ---------------------------------------------- */
footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #575756;
  color: #fff;
  padding: 0 0 30px;
}

footer .footer-inner {
  margin: 50px 0;
}

footer a {
  color: #fff;
}

footer .copyright {
  text-align: left;
  padding: 10px 0;
  font-size: 12px;
}

footer .websiteby {
  text-align: right;
  padding: 10px 0;
  font-size: 12px;
}

footer .footer-logo {
  padding-left: 5%;
  margin-bottom: 20px;
  width: 200px;
}

footer .footer-logo img {
  width: 100%;
}

/* ---------------------------------------------- /*
 * CONTACT PAGE ===== Contact Form
/* ---------------------------------------------- */
.wpcf7-form-control.wpcf7-text {
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  line-height: 1;
}

.wpcf7-form-control.wpcf7-textarea {
  padding: 10px;
  width: 100%;
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ccc;
}

/* ---------------------------------------------- /*
 * Responsive
/* ---------------------------------------------- */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .logo {
    height: 40px !important;
  }
  .inner-header {
    width: 100%;
  }
  .product-banner-grid {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    padding: 0;
  }
  .product-info {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
    margin-top: 30px;
  }
  .product-image {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .product-info-wrap {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
  }
  .product-banner-grid .single-product-content {
    padding: 0;
  }
  .product-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    padding: 10px 5%;
  }
	
	.product-banner-grid h1{
		font-size: 2em;
	}
	.project-info{
		padding: 0 5%;
	}
}

/* ----------- tablets ----------- */
/* Portrait and Landscape */
/*# sourceMappingURL=styles.css.map */