/* Base font size - stock is 15px */
body {
  font-size: 20px;
}

/* Heading 5 font size - stock is 16px*/
h5 {
  font-size: 21px;
}


/* bold text for menu's */
.main-navigation a {
  font-weight: 500;
}

/* removes border around SiteOrigin Image modules */
.entry-content img {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

/* removes padding around St andrews logo */
.site-header .branding {
  padding: 0px 0 0px 0 !important;
}

/* makes content titles upper case */
.page-header .page-title {
  text-transform: uppercase;
}
.entry-header .entry-title {
  text-transform: uppercase;
}
.entry-content .widget-title {
  text-transform: uppercase;
}

/*styling of footer widget*/
.footer-contact {
  margin-bottom: 0.7em;
  font-size: 16px;
}
.footer-contact a {
  color: #58585a;
}

/* Makes footer widgets 2 columns, normally 4 - fixes issue with email address collapsing under the image */
.site-footer-widgets .site-container>ul>li {
  width: 50%;
}

/*contact page*/
.contact-details {
  font-size: 16px;
}
.contact-details .contact-row .contact-label {
  font-weight: bold;
  width: 30%;
  display: block;
  float: left;
}
.contact-details .contact-row .contact-detail {
  width: 70%;
  display: block;
  margin-bottom: 15px;
  float: left;
}

/* Hides the Featured Image on a Post, so that it is still set for Social Media as preferred image, but we can choose how it is layed out on the post */
.attachment-full.size-full.wp-post-image {
  display: none;
}

/* Removed line under slider */
.slider-container {
  overflow-x: visible;
}
.slider-container.default {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
body > div.slider-container.default > div.pagination span {
  border: 2px solid rgba(0,55,104,0.8)!important;
}

/* image styling for thumbnails and images in posts with text wrapping */
.left-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.right-image {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
.mid-text-image {
  margin-top: 20px;
}

/* BlockQuote formatting */
blockquote {
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  /* width: 450px; */
  margin: 0.25em 0;
  padding: 0.25em 40px;
  line-height: 1.45;
  position: relative;
  color: #383838;
  background: rgba(51,153,255,0.15); /* was set to #ececec */
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -10px;
  top: -10px;
  color: #7a7a7a;
  margin-left: 7px;
}
blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
blockquote cite:before {
  content: "\2014 \2009";
}
.values-large-quote {
  width: 380px;
}
.values-medium-quote {
  width: 285px;
}
@media screen and (max-width: 640px) {
  .values-large-quote {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .values-medium-quote {
    width: 100%;
  }
}
/* Remove the reCAPTURE v3 logo from displaying on every page at bottom-right */
/* .grecaptcha-badge{display:none;} */