
/*@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');*/

:root {
  --harmaton-blue: #232f40;
}


body {
  color: #ccc;
  background: #111;
  font-family:  'Open Sans', sans-serif, Arial;
  font-size: 18px;
  overscroll-behavior: none; /* Prevents bounce on the body */
}

p {
  line-height: 1.5;
}

a {
  font-weight: normal;
  color: inherit;
  text-decoration: underline;
}

a:visited {
  color: inherit;
}

.video-container {
    height: 300px;
    width: 300px;
    position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: #dc0000;
  padding: 10px;
}

.wrapper {
  padding-top: 4em;
}

.carousel h1{
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    font-size: 4em;
    color: white;
    transform: translate(-50%, -50%);
}
.carousel h1::after{
  background: #ac8158;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 25%;
}

.carousel {
  position: relative;
}

.content {
  background: transparent;
  color: #ccc;
  max-width: 100%;
  padding-bottom:  0;
}

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

.content.post {
  max-width: 1000px;
}

.content strong {
  font-weight: normal;
  color: white;
}

section {
  max-width: 1200px;
  margin: auto;
}

.content.home section {
  padding: 2em 0;
}

.content section.full {
  max-width: 100%;
  width: 100%;
  position: relative;
}

.content h1, .content h2 {
  text-align: center;
}


.header {
  background: #000000CC;
  color: white;
  border-bottom: none;
  backdrop-filter: blur(10px);         /* applies the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.header-search-icon {
  display: none !important;
}

.header ul .top {
  border: #ac8158;
}

.header ul li:hover {
  background: transparent;
}

.header ul li:hover a{
  opacity: .7;
}


.posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.posts .post {
  background-color: white;
  box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.2);
}

.header ul a {
  color: white;
  font-weight: normal;
}



.header .logo img {
  height: 3em;
  margin: .5em;
}

#footer {
  background: black;
  color: #999;
  padding-bottom: 128px;
}

#footer a {
  color: inherit;
  transition: color .5s;
}
#footer a:hover {
  color: whitesmoke;
}

#footer .footer-logo {
  width: 5em;
}

.home-overlay-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.home-overlay-text h3 {
  color: white;
  font-size: 3em;
}

.home-overlay-text .home-overlay-button {
  color: white;
    border: 1px solid white;
    background: none;
    font-size: 1.3em;
    display: inline-block;
    padding: 0.5em 2em;
    cursor: pointer;
}


.home-top {
  /*display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;*/
}

.home-top > div:first-child {
  padding-top: 4em;
  padding-bottom: 4em;
}

.home-elevating {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  
}

.home-elevating-container {
  background: #232f40;
  padding-top: 2em;
  padding-bottom: 2em;
  color: #d6d6d6c3;
}

.section-black {
  background: #111;
}

.home-gallery {
  width: 100%;
  overflow: hidden;
}

.home-middle > div {
  position: relative;
}

.home-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 2em;
}

.header .menu {
  bottom: .5em;
}

.icon {
  color: #d2b356;
}


.home section h2 {
  color: white;
  text-align: left;
  font-size: 2rem;
  position: relative;
  padding-bottom: .5em;
}

.home section h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 30px;
  background: #d2b356;

}


.content.home h1 {
  color: white;
}

.banner-section {
  position: relative;
  margin: 0;
  padding: 0 !important;

  /*overflow: hidden;*/
  /*height: 100vh;*/
  /*object-fit: contain;*/
}

.banner-image {
  width: 100%;
  /*height: 100vh;*/
  /*object-fit: contain;*/
  display: block;
  position: relative;
}

.banner-image-mobile {
  display: none;
}

.banner-left,
.banner-right {
  position: absolute;
  bottom: 15%;
  color: white;
  max-width: 300px;
}

.banner-left {
  left: 5%;
  text-align: left;
}

.banner-right {
  right: 5%;
  text-align: right;
}

.btn {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 1.25rem;
  border: 2px solid white;
  background: transparent;
  color: white !important;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.4s ease, color 0.4s ease;
}

.btn:hover {
  border-color:#d2b356;
  color: white; 
  text-decoration: none; 
  cursor:pointer; 
  /* color: gold; */
}

.quote {
  text-align: center;
}

.quote-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
}

.banner-description {
  margin-top: 0.75rem;
}

.home-centered-logo {
  text-align: center;
  padding: 2rem 0;
}

.home-centered-logo-img {
  width: 15% !important;
  max-width: 15% !important;
  height: auto;
  display: block;
  margin: 0 auto;
}

.home-centered-logo-heading {
  margin-top: 1rem;
  text-align: center;
  color: white;
}

.content.home {
  padding-top: 0;
}

.quote p {
  font-style: italic;
  font-size: 1.2em;
  color: #ddd;
}

.product-specifications {
  font-size: .8em;
}

.add-to-cart {
  background: transparent;
  border: 1px solid white;
  color: white;
  display: inline-block;
  padding: .5em 3em;
  font-size: 1.2em;
  width: auto;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid white;
  transition: backround-color .5s, color .2s;
  margin-top: .5em;
  margin-bottom: .5em;

}

.add-to-cart:hover {
  color: white;
  background: transparent;
  border-color:#d2b356;
}

.product-add-to-cart-container {
  text-align: left;
}

.products-product-weight {
  display: none;
}

.product-price {
  text-align: left;
  margin-top: 1em;
  margin-bottom: .5em;
  font-size: 1.2em;
  color: white;
  font-weight: 500;
}


.product-specifications {
/*  width: 50%;
  left: 50%;*/
  position: relative;
  /*background: var(--harmaton-blue);*/
  padding: 1em;
  color: #999;
  box-sizing: border-box;
}

.product-specifications > div {
  width: 33%;
  display: inline-block;
  vertical-align: top;
}

.checkout button {
  border-radius: 0;
    border: 2px solid white;
    background-color: var(--harmaton-blue);

}


.footer-links a {
  padding-right: .7em;
  padding-left: .5em;
}


.footer-links a:not(:last-child) {
  border-right: 1px solid grey;

}


.cart-products-body-image img {
  height: auto;
}

.banner-section-mid {
  padding: 0 !important;
}

.banner-image-mid {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.banner-image-mid-mobile {
  display: none;
}

.mid-text-container {
  width: 100%;
  position: relative;
/*  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);*/
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #d6d6d6c3;
  column-gap: 1em;
}

.footer-social {
  margin-top: 1em;
}

.footer-social img {
  width: 2em;
  transition: opacity .5s;
}

.footer-social img:hover {
  opacity: .7;
}

.footer-social a {
  text-decoration: none;
  margin-left: .5em;
  margin-right: .5em;
}

.header .cart-image {
  width: 1.2em;
}

.product-price span {
  font-size: .7em;
  text-decoration: line-through;
  color: #999;
  font-weight: 300;
}

.puchase-text {
  font-size: .8em;

}

.puchase-text > div {
  display: grid;
  grid-template-columns: 2em 1fr;
  column-gap: .5em;
  align-items: center;
  margin: .5em;
}

.puchase-text img {
  width: 1.5em;
}

.product-tax-text {
  font-size: .7em;
  font-style: italic;
}

.product .product-gallery-image {
  object-fit: cover;
}


form input, textarea, select {
  background: transparent;
  color: white;
}

.cart section {
  border-bottom: none;
}

.cart-sum h1 {
  text-align: right !important;
}

.checkout button {
  background: black;
  border-width: 2px;
  border-radius: .3em;
}

.checkout button:hover {
  border-color: #d2b356;
}

.content.success {
  padding: .5em;
  max-width: 1200px;
}

.success-payment-totals h3 {
  text-align: center;
}



























@media screen and (max-width: 1000px) {
  body {
    font-size: 16px;
  }

  .header .menu {
    background: black;
  }

  .carousel h1 {
    font-size: 2em;
    top: 30%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: none;
  }

  .carousel h1::after {
    display: none;
  }

  .home-overlay-text h3 {
    font-size: 1.5em;
    padding: 0 1em;
  }

  .home-overlay-text .home-overlay-button {
    font-size: 1em;
    padding: 0.5em 1.5em;
  }

  .home-top {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .home-elevating {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .home-products {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .home-centered-logo-img {
    width: 50% !important;
    max-width: 50% !important;
  }

  .banner-left,
  .banner-right {
    display: block;
    box-sizing: border-box;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    max-width: 100%;
    text-align: center;
    padding: 1em;
  }

  .quote-btn {
    position: static;
    transform: none;
    margin: 2rem auto 0;
    text-align: center;
  }

  .posts {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .content h1, .content h2 {
    font-size: 1.5rem;
    /*padding: 0 0.5em;*/
  }

  .content section {
    padding: 1em .5em;
  }

  .content.home section {
    padding: 1em .5em;
    width: 100%;
    box-sizing: border-box;
  }

  .content {
    padding: 0;
  }

  .banner-image-mobile {
    display: inline-block;
  }

  .banner-image {
    display: none;
  }

  .content.home section.home-top {
    display: block;
    padding: 0;
  }

  .banner-section {
    height: auto;
  }

  .product-specifications {
    padding: .5em;
    left: auto;
    width: 100%;
  }

  .add-to-cart {
    display: block;
    width: 100%;
  }

  p {
    line-height: 1.7;
  }

  .banner-image-mid {
    display: none;
  /*position: relative;

  height: auto;
  object-fit: auto;*/
}

.banner-image-mid-mobile {
  display: block;
}

.mid-text-container {
  width: 100%;
  position: relative;

  grid-template-columns: repeat(1, 1fr);
  color: white;
}

.product-specifications > div {
  width: 100%;
  display: block;
  vertical-align: top;
}

#menu-container {
  display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 1.2em;
}

.header .menu {
  display: inline;
}

#hamburger {
  display: none;
}

.header ul .top {
  font-size: .8em;
}

.success-payment-totals h3 {
  text-align: center;
}

.success table {
  font-size: .8rem;
}



}




