/* 
================
Animations
================
*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* =========================================================================== */
/* 
================
Adore
================
*/
.adore .adore-grid {
  display: grid;
}
.adore .adore-grid .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.adore .adore-grid .image-container img {
  margin: 0 5px;
}
.adore .adore-grid .image-container .img-one {
  max-width: 45%;
}
.adore .adore-grid .image-container .img-two {
  max-width: 50%;
}
@media (min-width: 1200px) {
  .adore .adore-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
  }
  .adore .adore-grid .image-container img {
    margin: 0 10px;
  }
  .adore .adore-grid .image-container .img-one {
    max-width: 50%;
  }
  .adore .adore-grid .image-container .img-two {
    max-width: 60%;
  }
}
/* =========================================================================== */
/* 
================
Video
================
*/
.video {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.video .video-container {
  position: relative;
}
.video .video-container .video iframe {
  height: 250px;
  width: 100%;
}
@media (min-width: 768px) {
  .video .video-container .video iframe {
    width: 100%;
    height: 500px;
  }
}
.video .video-container .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), url("../images/Video_Thumbnail.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.video .video-container .video-thumbnail .play-button {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 200px;
  height: 200px;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.video .video-container .video-thumbnail .play-button .diagonal {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  transform: rotate(45deg);
  background-color: white;
}
.video .video-container .video-thumbnail .play-button p {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
.video .video-container .hide-thumbnail {
  z-index: -1;
  opacity: 0;
}
/* =========================================================================== */
/* 
================
About Us
================
*/
.about .about-grid {
  display: grid;
}
.about .about-grid .text-container .hidden-text {
  display: none;
}
.about .about-grid .text-container .show-text {
  display: inline;
}
.about .about-grid .text-container .read-more {
  color: var(--clr-grey-1);
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
}
.about .about-grid .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .about-grid .image-container img {
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .about .about-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}
/* =========================================================================== */
/* 
================
Shop
================
*/
.shop {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), url("../images/Shop_Now.jpg");
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 350px;
}
.shop .shop-text {
  text-align: right;
  padding-right: 40px;
}
.shop .shop-text h3 {
  margin-bottom: 40px;
  max-width: 350px;
  margin-left: auto;
  color: white;
}
.shop .shop-text .italic {
  text-transform: none;
  margin-bottom: 0;
  max-width: none;
  color: var(--clr-primary-9);
}
@media (min-width: 992px) {
  .shop {
    height: 500px;
  }
}
/* =========================================================================== */
/* 
================
Newsletter
================
*/
.hide-newsletter {
  display: none !important;
}
.show-newsletter {
  display: flex;
}
.newsletter {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.newsletter .newsletter-container {
  display: grid;
  width: 90%;
  height: 60%;
  max-height: 250px;
  max-width: 768px;
  background-color: white;
  position: relative;
}
.newsletter .newsletter-container img {
  height: 100%;
  object-fit: cover;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  display: none;
}
.newsletter .newsletter-container .subsription {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.newsletter .newsletter-container .subsription .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
.newsletter .newsletter-container .subsription .newsletter-form div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid black;
}
.newsletter .newsletter-container .subsription .newsletter-form div button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.newsletter .newsletter-container .subsription .newsletter-form div button i {
  font-size: 1rem;
}
.newsletter .newsletter-container .subsription .newsletter-form div input,
.newsletter .newsletter-container .subsription .newsletter-form div input::placeholder {
  background-color: transparent;
  border: none;
  outline: none;
  color: black;
  font-family: var(--ff-body);
  font-size: 16px;
}
.newsletter .newsletter-container .subsription .disable-popup {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.newsletter .newsletter-container .close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .newsletter .newsletter-container {
    grid-template-columns: 30% 1fr;
  }
  .newsletter .newsletter-container img {
    display: block;
  }
  .newsletter .newsletter-container .subsription {
    padding-right: 20px;
    padding-left: 20px;
    border-left: none;
  }
}
/* =========================================================================== */
/* 
================
Overrides
================
*/
.ytp-watermark.yt-uix-sessionlink svg,
.ytp-title-link.yt-uix-sessionlink {
  display: none !important;
}
