*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #F5F5F5;
  font-family: "Open Sans", sans-serif;
}

body, html {
  color: #F5F5F5;
  background-color: #0A0A0A;
  font-family: "Open Sans", sans-serif;
}
body #primary, html #primary {
  position: relative;
  top: -21px;
  left: 0;
  width: 100%;
}
body footer, html footer {
  margin-top: -21px;
}
body .content-wrapper, html .content-wrapper {
  margin-top: 100px;
}
body .content-wrapper section, html .content-wrapper section {
  padding-top: 42px;
  padding-bottom: 42px;
}
body a, html a {
  color: #F5F5F5;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}
body a:hover, html a:hover {
  text-decoration: underline;
}
body .btn, html .btn {
  display: inline-block;
  background-color: #044722;
  padding: 15px 25px;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  border: solid 2px #D4AF37;
}
body .btn:hover, html .btn:hover {
  background-color: #0A0A0A;
  text-decoration: none;
  border: solid 2px #044722;
}
body .animate h1, body .animate h2, body .animate a, body .animate p, body .animate .image-container, html .animate h1, html .animate h2, html .animate a, html .animate p, html .animate .image-container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
body .animate h1.visible, body .animate h2.visible, body .animate a.visible, body .animate p.visible, body .animate .image-container.visible, html .animate h1.visible, html .animate h2.visible, html .animate a.visible, html .animate p.visible, html .animate .image-container.visible {
  opacity: 1;
  transform: translateY(0px);
}
body ul, html ul {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  body .content-wrapper, html .content-wrapper {
    margin-top: 140px;
  }
  body .content-wrapper section, html .content-wrapper section {
    padding-top: 103px;
    padding-bottom: 103px;
  }
}
@media (min-width: 992px) {
  body .content-wrapper, html .content-wrapper {
    margin-top: 123px;
  }
  body .content-wrapper section, html .content-wrapper section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  body .content-wrapper section, html .content-wrapper section {
    padding: 160px 0;
  }
}

header, .content.background, .content.left {
  transition: background-color 0.3s ease-in-out;
}

.alt-primary-colour header {
  background-color: #4d0012 !important;
}
.alt-primary-colour header #header-menu-mobile {
  background-color: #4d0012 !important;
}
.alt-primary-colour header .switch-colour-label::after {
  background-color: #4d0012;
  left: 27px;
}
.alt-primary-colour .content.background, .alt-primary-colour .content.left {
  background-color: #4d0012 !important;
}
.alt-primary-colour .btn {
  background-color: #4d0012 !important;
  border: solid 2px #D4AF37 !important;
}
.alt-primary-colour .btn:hover {
  background-color: #0A0A0A !important;
  border: solid 2px #4d0012 !important;
}
.alt-primary-colour footer {
  background-color: #4d0012 !important;
}
.alt-primary-colour footer .svg-path-primary {
  fill: #4d0012 !important;
}

.colour-switch-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.colour-switch-popup {
  background-color: #0A0A0A;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-align: center;
  border: solid 2px #D4AF37;
}
@media (min-width: 768px) {
  .colour-switch-popup {
    padding: 50px;
  }
}
.colour-switch-popup .button-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 37px 0 0 0;
}
@media (min-width: 768px) {
  .colour-switch-popup .button-container {
    gap: 100px;
  }
}
.colour-switch-popup .colour-btn {
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.colour-switch-popup .btn.colour1 {
  background-color: #044722 !important;
}
.colour-switch-popup .btn.colour1:hover {
  background-color: #0A0A0A !important;
  border: solid 2px #044722 !important;
}
.colour-switch-popup .btn.colour2 {
  background-color: #4d0012 !important;
}
.colour-switch-popup .btn.colour2:hover {
  background-color: #0A0A0A !important;
  border: solid 2px #4d0012 !important;
}
.colour-switch-popup .percentage-container {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 37px 0 0 0;
  border-radius: 15px;
  border: solid 2px #D4AF37;
}
.colour-switch-popup .percentage-container .colour-percentage {
  padding: 20px;
  display: block;
}
.colour-switch-popup .percentage-container .colour1-percentage {
  background-color: #044722;
  border-radius: 15px 0 0 15px;
}
.colour-switch-popup .percentage-container .colour2-percentage {
  background-color: #4d0012;
  border-radius: 0 15px 15px 0;
}
.colour-switch-popup .close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #F5F5F5;
  transform: translate(50%, -50%);
}
.colour-switch-popup .close-popup:hover {
  color: #D4AF37;
}
.colour-switch-popup .close-popup .cross-top, .colour-switch-popup .close-popup .cross-bottom {
  display: block;
  width: 15px;
  height: 2px;
  margin: 10px 0;
  background-color: #F5F5F5;
}
.colour-switch-popup .close-popup .cross-top {
  transform: translateY(7px) rotate(-45deg);
}
.colour-switch-popup .close-popup .cross-bottom {
  transform: translateY(-5px) rotate(45deg);
}