:root {
    --yellow: #FCFF59;
    --white: #ffffff;
    --black: #000000;
    --main-font: "Grenze", serif;
    --secondary-font: "Metamorphous", serif;
    --navy: #282F58;
    --dark-navy: #081832;
    --pale-yellow: #E3DCAD;
    --red: #C32341;
    --dark-red: #771628;
    --blue: #678BCA;
  }
body, html {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--black);
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y;
    max-width: initial;
  }
div {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.uppercase {
    text-transform: uppercase;
}
.text-white {
    color: var(--white);
}
.text-red {
    color: var(--red);
}
.text-yellow {
    color: var(--yellow);
}
.text-yellow-emphasis {
    color: var(--yellow);
    font-size: 1.6rem;
    font-weight: bold;
}
.bg-dark-navy {
    background: var(--dark-navy);
}
.bg-red {
    background-color: var(--red);
    color: var(--yellow);
}
a {
    color: var(--yellow);
    text-transform: uppercase;
    font-family: var(--main-font);
    text-decoration: none;
    font-size: 1.3rem;
}
a.see-more {
    padding-bottom: 2px;
    color: var(--yellow);
    border-bottom: var(--yellow) 2px solid;
}
a.load-more {
    width: 100%;
    color: var(--yellow);
    border-bottom: var(--yellow) 2px solid;
}
a.learn-more {
    padding-bottom: 2px;
    color: var(--white);
    border-bottom: var(--white) 2px solid;
}
a.red-arrow-link {
    color: var(--red);
    text-transform: uppercase;
    font-family: var(--main-font);
    text-decoration: none;
    font-size: 1.5rem;
    display: inline;
    line-height: 40px;
}
    a.red-arrow-link::after {
        content:"";
        display:inline-block;
        position: absolute;
        margin-top:0px;
        height:40px;
        width:40px;
        background: url('../img/right-arrow-red.png') no-repeat;
    }
a.blue-arrow-link {
    color: var(--blue);
    text-transform: uppercase;
    font-family: var(--main-font);
    text-decoration: none;
    font-size: 1.5rem;
    display: inline;
    line-height: 40px;
}
    a.blue-arrow-link::after {
        content:"";
        display:inline-block;
        position: absolute;
        margin-top:3px;
        height:40px;
        width:40px;
        background: url('../img/right-arrow-blue.png') no-repeat;
    }
a.white-arrow-link {
    color: var(--white);
    font-family: var(--main-font);
    text-decoration: none;
    text-transform: none;
    display: inline;
    line-height: 40px;
    font-size: 1.3rem;
}
    a.white-arrow-link::after {
        content:"";
        display:inline-block;
        position: absolute;
        margin-top:13px;
        height:40px;
        width:40px;
        background: url('../img/right-arrow-white.png') no-repeat;
    }

table {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}
table td, table th {
  padding: 5px 20px;
}
table th { 
  text-transform: uppercase; 
}
tr:not(:last-child) {
  border-bottom: solid 1px white;
}

.topnav {
overflow: hidden;
color: var(--pale-yellow);
background-color: var(--navy);
}


.topnav a {
color: var(--pale-yellow);
background-color: var(--navy);
padding: 16px;
text-decoration: none;
font-size: 17px;
display: block;
}

.fa {
    margin-left: 2px;
}
.topnav a.menu_icon {
display: block;
position: absolute;
left: 20px;
top: 20px;
height: 18px;
width: 20px;
border-radius: 50%;
line-height: 1rem;
font-size: 1.1rem;
z-index: 10;
border: var(--pale-yellow) solid 2px;
}

.topnav a:hover {
background-color: var(--pale-yellow);
color: var(--navy);
}
#navMenu {
    margin-top:85px;
    display: none;
}
@media screen and (min-width: 1024px) {
  .topnav a.menu_icon { display:none; }
  #navMenu { 
    display: block !important; 
    position: absolute; 
    margin-top: 20px;
    margin-left: 20px;
    z-index: 9;
  }
  .topnav {
    background-color: transparent;
  } 
  .topnav a {
    background-color: transparent;
    display: inline-block;
    padding: 0px 5px 0px 5px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.4rem;
    border-bottom: solid var(--pale-yellow) 2px;
    }
}
.topnav a.share_icon {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  height: 18px;
  width: 20px;
  border-radius: 50%;
  line-height: 1rem;
  font-size: 1.1rem;
  z-index: 10;
  padding: 16px;
  border: var(--pale-yellow) solid 2px;
  }

#heroVideoDesktopContainer {
    /* background-image: url('../img/Dominion_Web_Animation_STILL_Desktop6.webp'); */
    background-size: contain;
    background-repeat: no-repeat;
    width:100%;
    margin: 0px 0px -5px 0px;
    display: none;
}
#heroVideoDesktop {
    width:100%;
}
#heroVideoDesktopStill {
  position: absolute;
  z-index: -1;
  width: 100%;
}
#heroVideoMobileContainer {
    /* background-image: url('../img/Dominion_Website_AnimationSTILL_Mobile0.webp'); */
    background-size: contain;
    background-repeat: no-repeat;
    width:100%;
    margin: 0px 0px -5px 0px;
    display: inherit;
}
#heroVideoMobile {
    width:100%;
}
#heroVideoMobileStill {
  position: absolute;
  z-index: -1;
  width: 100%;
}
@media screen and (min-width: 600px) {
  #heroVideoDesktopContainer{
    display: inherit;
  }
  #heroVideoMobileContainer{
    display: none;
  }
}

h1 {
    color: var(--yellow);
    font-family: var(--main-font);
    text-align: center;
    font-size: 2.6rem;
    padding-top: 30px;
}
  @media screen and (max-width: 600px) {
    h1{
      font-size: 1.6rem;
      margin-top: 60px;
    }
  }
h2, .header-link {
    color: var(--yellow);
    font-family: var(--secondary-font);
    text-align: center;
    font-size: 2.3rem;
    padding-top: 30px;
}
.header-link { color: var(--white); }
h2.praise {
    color: var(--white);
    margin-top: 30px;
    margin-bottom:0px;
    font-size: 1.7rem;
}
h2.preorder, h2.stockists {
    border-bottom: var(--red) solid 3px;
    margin-bottom: 0px;
    padding: 38px 5px;
    color: var(--white);
}
h3, .footer-header-link {
    color: var(--yellow);
    font-family: var(--main-font);
    font-size: 1.5rem;
    padding-top: 10px;
    margin-bottom: 0px;
}


p {
    color: var(--white);
    font-family: var(--main-font);
    text-align: center;
    font-size: 1.3rem;
}
section {
    background: var(--black);
    margin: 0px;
    padding: 30px 15%;
    width: 70%;
    text-align: center;
}
@media only screen and (min-width: 1366px) {
    section {
        width: 60%;
        padding: 30px 20%;
    }
}
@media only screen and (max-width: 600px) {
    section {
      width: 90%;
      padding: 30px 5%;
    }
}

ul.plain {
    list-style: none;
    padding:0px;
}
ul.inline-list li {
    display: inline;
}

#praise {
    /* background: linear-gradient(rgba(8,24,50,1) 80%, rgba(8,24,50,0)); */
    background-color: var(--navy);
}
#preorder {
    background-color: var(--dark-navy);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 60%;
    padding: 40px 20% 90px 20%;
}
#preorder-inner {
    margin-top:50px;
    background-color: var(--black);
}
@media only screen and (max-width: 900px) {
  #preorder {
    padding: 40px 5% 90px 5%;
    width: 90%;
  }
}
#stockists {
    width: 60%;
    padding: 30px 20% 90px 20%;
     background-color: var(--navy);
}
#stockists-inner {
    margin-top:0px;
    background-color: var(--black);
}
@media only screen and (max-width: 900px) {
  #stockists {
    padding: 40px 5% 90px 5%;
    width: 90%;
  }
}
#stockists .accordion {
  color: var(--white);
}

.cta-btn {
    background-color: var(--red);
    color: var(--yellow);
    font-family: var(--main-font);
    height: 40px;
    margin: 30px auto;
    padding: 10px 5% 20px 5%;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    position: relative;
    display: block;
    width: fit-content;
}
#read-now-btn, #order-now-btn {
    position: absolute;
    z-index: 9;
    margin-top: -40px;
    width: fit-content;
    left: 0; 
    right: 0; 
    margin-inline: auto; 
}
#image-gallery-btn {
    position: absolute;
    display: inline-block;
    z-index: 9;
    margin-top: -40px;
    width: fit-content;
    left: 25%; 
    margin-inline: auto; 
    padding-left: 3%;
    padding-right: 3%;
    background-color: var(--dark-navy);
    color: var(--white);
}
#video-gallery-btn {
    position: absolute;
    display: inline-block;
    z-index: 9;
    margin-top: -40px;
    width: fit-content;
    right: 25%; 
    margin-inline: auto; 
    padding-left: 3%;
    padding-right: 3%;
    background-color: var(--dark-navy);
    color: var(--white);
}
@media only screen and (max-width: 1500px) {
  #image-gallery-btn {
    left: 20%; 
  }
  #video-gallery-btn {
    right: 20%; 
  }
}
@media only screen and (max-width: 1100px) {
  #image-gallery-btn {
    left: 10%; 
  }
  #video-gallery-btn {
    right: 10%; 
  }
}
@media only screen and (max-width: 820px) {
  #image-gallery-btn {
    left: 5%; 
    right: 5%;
    width: 70%;
  }
  #video-gallery-btn {
    left: 5%; 
    right: 5%;
    width: 70%;
    margin-top: 50px;
  }
  #news {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 431px) {
  #video-gallery-btn {
    height: 80px;
  }
}

.about-img {
    margin: 30px 5px 30px 5px;
    width: 75%;
}

.slideshow {
    box-sizing:border-box;
    padding-bottom: 30px;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.news-slideshow-container {
  max-width: 600px;
}

/* Hide the images by default */
.praiseSlides, .newsSlides, .aboutSlides {
  display: none;
  margin: 20px 10%;
}
@media only screen and (max-width: 600px) {
    .praiseSlides {
        width: 60%;
        margin: 20px 20%;
    }
}
.newsSlides img {
    mask-image: linear-gradient(to top, rgba(0,0,0,0),rgba(0,0,0,1) 70%);
   -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1) 70%);
}
.newsSlides p {
    z-index: 9;
    position: absolute;
    bottom: 10%;
    margin: 0px 15% 0px 5%;
    font-size: 1.5rem;
    text-align: left;
}
.newsSlides a {
    float: right;
    margin-top: 10px;
    margin-right: 10%;
    color: var(--white);
}
  @media only screen and (max-width: 600px) {
    .slideshow {
      width: 100%;
    }
  }

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

#news-and-events {
    padding-bottom: 60px;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: var(--black);
    border-top: var(--red) solid 3px;
    color: var(--yellow);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--main-font);
    font-size: 1.5rem;
}
.accordion:first-of-type {
    border-top: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
    color: var(--red);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: var(--black);
    color: var(--white);
    display: none;
    overflow: hidden;
}
#newsletter p {
    width: 60%;
    margin: 0px 20% 15px 20%;
}
#mc_embed_signup{
    background: var(--red); 
    clear:left; 
    font-family: var(--main-font); 
    width: 100%;
    color: var(--yellow);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
#mce-responses {
  margin:0px;
}
#mce-success-response {
  color: var(--yellow);
}
#mce-error-response {
  color: var(--white);
}
.textbox {
    background-color: var(--dark-red);
    font-size: 1.5rem;
    width: 50%;
    border: none;
    margin: 5px;
    color: var(--yellow);
    padding: 10px;
}
.textbox::placeholder {
    color: var(--yellow);
    opacity: 0.5;
    font-size: 1.5rem;
    font-family: var(--main-font);
    margin: 20px;
  }
#mc-embedded-subscribe {
  background-color: var(--black);
  color: var(--yellow);
  height: 70px;
  padding: 10px 35px;
  line-height: 1rem;
  margin-top: 15px;
  border: none;
  z-index: 7;
  margin-left: 20% !important;
  margin-right: 20% !important;
  width: 100% !important;
} 
@media only screen and (max-width: 400px) {
  #mc-embedded-subscribe {
    margin-left: 0% !important;
    margin-right: 0% !important;
  }
}
#mc_embed_signup input {
  border: none !important;
}

footer {
    padding: 0px 0px 30px 0px;
}
.footer-logo {
    display: block;
    margin: 50px auto 20px auto;
    width: 15%;
    min-width: 200px;
}
.footer-links {
    padding: 0px 5% 30px 5%;
    text-align: left;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer-icon {
  height: 35px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.footer-col {
    padding:1rem;
}
    @media only screen and (max-width: 700px) {
        .footer-links, .footer-col {
            display: block;
            padding: 0px 5%;
            grid-auto-rows: unset;
            grid-template-columns: unset;
            text-align: center;
        }
    }
    @media only screen and (min-width: 1200px) {
        .footer-links {
            padding: 0px 20%;
        }
    }
.footer-bar {
    height: 5px;
    background-color: var(--red);
    margin: 30px 0px;
}
.footer-copyright, .footer-credit {
    font-family: var(--main-font);
    font-size: 1.2rem;
    text-align: center;
    margin: 10px;
}
.footer-credit a {
    font-size: 1.2rem;
    text-transform: none;
}

/* SHARE MODAL */
.view-modal, .popup{
    position: fixed;
    left: 50%;
  }
  button{
    outline: none;
    cursor: pointer;
    font-weight: 500;
    border: 2px solid transparent;
    transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
  }
  .popup{
    background: var(--dark-navy);
    color: var(--yellow);
    border: solid 2px var(--yellow);
    font-family: var(--main-font);
    padding: 25px;
    border-radius: 15px;
    top: 10%;
    max-width: 380px;
    width: 90%;
    margin: 5px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
    transform: translate(-50%, -50%) scale(1.2);
    transition: top 0s 0.2s ease-in-out,
                opacity 0.2s 0s ease-in-out,
                transform 0.2s 0s ease-in-out;
  }
  .popup.show{
    top: 50%;
    left: 50%;
    opacity: 1;
    z-index: 12;
    pointer-events: auto;
    transform:translate(-50%, -50%) scale(1);
    transition: top 0s 0s ease-in-out,
                opacity 0.2s 0s ease-in-out,
                transform 0.2s 0s ease-in-out;
  
  }
  .popup :is(header, .field){
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .popup :is(.icons){
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popup header{
    padding-bottom: 15px;
    border-bottom: 1px solid var(--yellow);
  }
  header span{
    font-size: 21px;
    font-weight: 600;
  }
  header .close, .icons a{
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  } 
  header .close{
    color: var(--red);
    font-size: 20px;
    background: var(--navy);
    border: 2px solid var(--red);
    height: 33px;
    width: 33px;
    font-weight: 600;
    cursor: pointer;
  }
  header .close:hover{
    color: var(--yellow);
    font-size: 17px;
    background: var(--red);
    border: 2px solid var(--red);
  }
  .fa-close {
    margin-left: 0px;
  }
  .popup .content{
    margin: 20px 0;
  }
  .content .icons a{
    height: 50px;
    width: 50px;
    margin: 0px 10px;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid transparent;
  }
  ul.icons {
    padding-left: 0px;
  }
  .icons a i{
    transition: transform 0.3s ease-in-out;
  }
  .icons a:nth-child(1){
    color: #1877F2;
    border-color: #1877F2;
  }
  .icons a:nth-child(1):hover{
    background: #1877F2;
  }
  .icons a:nth-child(2){
    color: #46C1F6;
    border-color: #46C1F6;
  }
  .icons a:nth-child(2):hover{
    background: #46C1F6;
  }
  .icons a:hover{
    color: #fff;
    border-color: transparent;
  }
  .icons a:hover i{
    transform: scale(1.2);
  }
  .content .field{
    margin: 12px 0 -5px 0;
    height: 45px;
    border-radius: 4px;
    padding: 0 0 0 5px;
    border: 1px solid var(--yellow);
  }
  .field.active{
    border-color: var(--yellow);
  }
  .field i{
    width: 50px;
    font-size: 18px;
    text-align: center;
  }
  .field.active i{
    color: var(--yellow);
  }
  .field input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-left: 5px;
  }
  .field button{
    color: var(--dark-navy);
    background: var(--yellow);
    padding: 5px 30px;
    height: 100%;
  }

  /* The hero image */
.hero-image {
  background-image: url("../img/press-header.jpg");
  height: 60vh;
  min-height: 600px;
  width: 100%;
  background-position: center top -200px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1230px) {
  .hero-image {
    background-position: center top 0px;
  }
}
.hero-image-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
  @media screen and (max-width: 600px) {
    .hero-text {
      width: 90%;
    }
  }

.press-link {
  display: inline-block;
  width: 30%;
  margin: 1%;
}
.press-link.pinned-left {
  display: inline-block;
  width: 49%;
  margin: 1% 5%;
}
.press-link.pinned-right {
  display: inline-block;
  width: 29%;
  margin: 1% 5%;
}
.press-link-no-image {
  background-color: var(--red);
  padding: 5%;
  margin-bottom: 30px;
}
#news, #about {
  background-color: var(--navy);
  color: var(--white);
  padding-bottom: 120px;
}
#about {
  background-color: var(--dark-navy);
  padding-bottom: 90px;
}
#more-news {
  display: none;
}
.news-articles, #more-news.show {
  display: grid;
  column-gap: 1%;
  /* grid-template-columns: 32% 32% 32%; */ /* 3 columns*/
  grid-template-columns: 50% 50%; /* 2 columns */
}
@media screen and (max-width: 900px) {
  .news-articles, #more-news.show {
    display: block;
  }
}
.news-article {
  background-color: var(--black);
  border: 1px solid var(--black);
  padding: 20px;
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}
#contact {
  padding-bottom: 120px;
}

.review-banner {
  padding: 10px 0px;
  text-align: center;
  color: var(--white);
  font-family: var(--main-font);
}
.review-banner a {
  font-size: inherit;
}
.review-banner-margin {
  margin-top: 35px;
}
  @media screen and (max-width: 375px) {
    .review-banner-margin {
      margin-top: 55px;
    }
  }