:root { /* -- Variables -- */
  /* --Colours-- */
  --main-color: #760202; /* Sets the main colour to use throughout the system. */
  --alt-color-dark: #c0392b; /* Dark colour to complement the main colour. */
  --alt-color-light: #ecf0f1; /* Light colour to complement the main colour. */
  --alt-mode: var(--alt-color-light); /* Sets what alt mode to use primarily */
  --alt-mode-2: var(--alt-color-dark); /* Sets what alt mode to use secondarily, this should be the opposite of the variable above. */

  --nav-text-color: white;
  --nav-text-color-hover: black;

  --standard-link-color: #2980b9;

  --heading-bg-color: var(--main-color);
  --heading-text-color: white;
  --heading-border-width: 0px;
  --heading-border-color: transparent;

  --footer-bg: #333;
  --footer-text: white;

  --transition-time: 0.25s; /* General animation length. */
}

/* --Navigation Styles-- */
  .wjps-nav{
    background-color: var(--main-color);
  }
  .nav-link{
    border-radius: .25rem;
    transition: background var(--transition-time);
  }
  .nav-link:not(.wjps-nav-button):not(.tab-link):not(.wjps-tabs){
    color: var(--nav-text-color)!important;
  }
  .nav-link:hover:not(.wjps-nav-button):not(.tab-link):not(.wjps-tabs){
    color: var(--nav-text-color-hover)!important;
    background-color: var(--alt-mode);
  }
  .dropdown-menu{
    background-color: var(--alt-mode);
  }
  .dropdown-item:hover{
    background-color: var(--main-color);
    color: var(--nav-text-color)!important;
  }
/* --End of Navigation Styles-- */

/* --General Styles-- */
  a:link:not(.btn, .dropdown-item){
    color: var(--standard-link-color);
  }
  a:visited:not(.btn, .dropdown-item){
    color: var(--standard-link-color);
  }
  .wrap-title{
    background-color: var(--heading-bg-color);
    color: var(--heading-text-color);
    border-width: var(--heading-border-width);
    border-color: var(--heading-border-color);
  }
/* --End of General Styles-- */

/* --Footer Styles-- */
  html{
    background-color: var(--footer-bg);
  }
  footer{
    background-color: var(--footer-bg);
    color: var(--footer-text);
  }
  .social-link{
    color: var(--footer-text)!important;
  }
/* --End of Footer Styles-- */

/* --Bedale Hall Custom Styles-- */

#header {
  height: 120px;
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: var(--main-color);
  z-index: 1019;
}

#header-title {
  text-align: left;
  bottom: -40px;
  position: relative;
}

#siteNameHeader > span {
  color: white !important;
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 40px;
}

.secondaryLogo {
  width: 500px;
  bottom: -32px;
  right: 0px;
  position: absolute;
}

.wjps-nav {
  border-top: #dfdfdf 1px solid;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif !important;
}

.wjps-toggler{
  color: #fff!important;
  border-color: #fff!important;
}

.site-title-h1 {
    font-size: 650%;
    text-align: center;
    color: white;
}

#colContainer{
  z-index: 21;
}

.wjps-home{
  position: absolute;
    width: 100%;
    top: 350px;
    left: 0;
    right: 0;
}

.homepage-image-content {
  position: relative;
  border: 0px;
  width: 100%;
  left: 1%;
  margin-top: 100px;
}

.homepage-image-content > div {

  padding-top:5px;
  padding-bottom: 5px;

}

.homepage-image-content > div > button {
  border: 2px solid white;
  background-color: #760202;
  height: 75px;
  color: white;
  width: 100%;
  font-size: 200%;
  font-weight: 500;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  transition: background-color 0.5s;
  border-radius: 7px;
}

.homepage-image-content > div > button:hover {
  background-color: #460101;
}

#slidersFullScreenSection{
  height: calc(100% - 134px)!important;
}

#footer{
  bottom:0px;
}

.slider-two-img {
    width: 100%;
    border: 5px solid rgba(0, 0, 0, 0.77);
    margin: 5px;
}

@media (max-width: 576px) {
  .secondaryLogo{
    display: none;
  }
  .site-title-h1{
    font-size: 300%;
  }
}

/* --End of Bedale Hall Custom Styles-- */
