/* --------- CSS Reset --------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    list-style: none;
    text-decoration: none;
}

*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* --------- Basic Setup --------- */
html, body {
  font-family: 'Roboto', sans-serif;
  background-color: #F5F5F5;
  color: #2B2B2B;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.lock{
  overflow: hidden;
}

.siteWrap{
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

:root{
  font-size: 12pt;
  line-height: 1.6;
  font-weight: 300;
}

a, .stndPostH2:hover{
  color: #B43C3C;
}
a:hover{
  color: #2B2B2B;
}

a{
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

h1, h2{
  font-size: 2rem;
  font-weight: 500;
}

h3{
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

h4, h5, h6{
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p{
  font-size: 1rem;
  margin-bottom: 1rem;
}

p:last-child{
  margin-bottom: 0;
}

b, strong{
  font-weight: 500;
}

img{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

footer{
  margin-top: 1rem;
  width: 100%;
  padding: 3rem 2rem 2rem 2rem;
  color: #f5f5f5;
  background-color: #B43C3C;
  text-align: center;
}

footer a{
  color: #f5f5f5;
}

footer .footerL{
  width: 100%;

}
footer .footerR{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.orknetWrap{
  position: relative;
}

footer .footerR img{
  width: 115px;
  height: auto;
}

footer .footerR span{
  position: absolute;
  bottom: 30px;
  right: 20px;
  font-size: 0.7rem;
}

.flexCC{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flexWrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-group{
  padding: 10px 15px;
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
    display: flex;
    gap: 1rem;
}

.btnStyle1{
  font-size: 1rem;
  padding: 10px 15px;
  color: #D3D3D3;
  border: 1px solid #D3D3D3;
  background-color: rgba(43, 43, 43, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btnStyle2{
  font-size: 1rem;
  padding: 10px 15px;
  color: #fff;
  background-color: #B43C3C;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btnStyle2:hover{
  background-color: #2B2B2B;
}

.btnFeat{
  z-index: 9900;
  position: absolute;
  bottom: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

iframe{
  width: 100%;
}

/* --------- Responsive iframes --------- */
.vidWrap, .audWrap {
  width: 100%;
	position: relative;
	height: 0;
  margin-bottom: 1rem;
}
.format-audio div iframe{
  margin: 1rem 1rem 0 1rem;
}
.vidWrap:last-child, .audWrap:last-child {
  margin-bottom: 0;
}
.vidWrap {
	padding-bottom: 56.25%; /* 16:9 */
}
.audWrap {
	padding-bottom: 25%;
}
.vidWrap iframe, .audWrap iframe  {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* --------- Header --------- */
.headerFS{
  width: 100%;
  height: 100vh;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
header h1, header h2, header h3{
  color: #fff;
}

.headerFS a{
  color: #fff;
}
.headerFS a:hover{
  color: #B43C3C;
}
.admin-bar .headerFS{
  height: calc(100vh - 46px);
}
.pageHeader{
  position: relative;
  height: 65px;
}
.headLogo img{
  width: auto;
  height: 20px;
  padding: 10px;
  margin: 10px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.headLogo{
  display: inline-block;
}
.menuWrap{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(43, 43, 43, 0.0);
}
.admin-bar .menuWrap{
  top: 46px;
}
.scrolled{
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: rgba(43, 43, 43, 0.8);
}
.heroImgTint{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background: rgba(48,29,29,0.8);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(48,29,29,0.8)), color-stop(20%, rgba(48,29,29,0.4)), color-stop(100%, rgba(48,29,29,0.4)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(48,29,29,0.8)), color-stop(20%, rgba(48,29,29,0.4)), to(rgba(48,29,29,0.4)));
  background: linear-gradient(to bottom, rgba(48,29,29,0.8) 0%, rgba(48,29,29,0.4) 20%, rgba(48,29,29,0.4) 100%);
}
/* --------- Menu Icon --------- */
#menuIcon{
  width: 45px;
  height: 45px;
  margin: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  z-index: 9998;
}
#menuTB, #menuMB, #menuBB{
  background-color: #D3D3D3;
  width: 31px;
  height: 2px;
  position: absolute;
  top: 22px;
  left: 7px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.menuBup{
  margin-top: 9px;
}
.menuBdwn{
  margin-top: -9px;
}
.rotate45{
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.rotate-45{
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#mainNav{
  position: fixed;
  width: 100%;
  height: 100vh;
  padding-top: 65px;
  top:-100vh;
  left: 0;
  background-color: rgba(43, 43, 43, 0.9);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mainNav ul{
  font-size: 1.5rem;
}

#mainNav ul.sub-menu{
    padding-left: 1rem;
}

#mainNav li a{
  color: #D3D3D3;
}
#mainNav li a:hover{
  color: #B43C3C;
}
.wpadminbar{
  position: fixed;
  z-index: 9980;
}
/* --------- Next Race --------- */
.countdownContainer{
  position: absolute;
  width: 100%;
  bottom: 30%;
  left: 0;
  color: #fafafa;
  text-align: center;
}
.countdown{
  font-size: 0.8rem;
  color: #D3D3D3;
}
.raceTitle{
  width: 100%;
}

/* --------- J750 Progress --------- */
.j750{
  max-width: 364px;
  width: 100%;
  margin: 20px 8px;
  text-align: center;
  padding: 0 1rem;
}
.j750 h3{
  margin: 0;
  line-height: 3rem;
}
.j750ProgWrap{
  width: 100%;
  padding: 4px;
  border: solid 1px #fafafa;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;

}
.j750Progress{
  width: 0%;
  height: 14px;
  background-color: #B43C3C;
  border-radius: 3px;
  position: relative;
}
.sichelRun{
  width: 10px;
  height: 20px;
  position: absolute;
  right: -3px;
  bottom: -2px;
  background-image: url('https://williamsichel.co.uk/wp-content/uploads/2017/09/SichelRun.png');
  background-position: center;
  background-size: contain;
}


/* --------- Social Media Bar --------- */
.extraInfo{
  position: absolute;
  right: 0px;
  bottom: 2%;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: right;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.extraInfo img{
  width:  auto;
  height: 35px;
  padding: 0 4px;
  margin-bottom: 10px;
  -webkit-box-sizing: padding-box;
          box-sizing: padding-box;
}
.socialContact{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.socialContact img{
  width:  auto;
  height: 35px;
  padding: 0 10px;
  margin-bottom: 10px;
  -webkit-box-sizing: padding-box;
          box-sizing: padding-box;
}
/* --------- Content Styles --------- */
.contWrap{
  width: calc(100% - 2rem);
  margin: 1rem auto;
  position: relative;
}
.contBlock, .contPage, .instaWrap, .sponsorWrap{
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.4);
  box-shadow: 0px 2px 3px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
}

.contBlock{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contHead{
  padding: 1rem;
  color: #B43C3C;
  margin-bottom: 0.5rem;
}

.contBody{
  padding: 1rem 1rem 2.5rem 1rem;
  width: 100%;
}
.contText{
  display: inline-block;
}
.contText, .contactText{
  width: 100%;
  padding: 1rem;
}
.contactText{
  text-align: center;
}
.contactDetails{
  font-size: 4vw;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contImg{
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.linkImg{
  width: 100%;
  padding-bottom: 50%;
  height: 0;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.pageHero{
  width: 100%;
  height: 50vw;
  opacity: 0.5;
  background-size: cover;
  position: relative;
}
.pageHeroTint{
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255,255,255,0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(60%, rgba(249,249,249,0)), color-stop(100%, rgba(245,245,245,1)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(60%, rgba(249,249,249,0)), to(rgba(245,245,245,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(249,249,249,0) 60%, rgba(245,245,245,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0 );
}
/* --------- Bullets--------- */
.contText ul, .contText ol{
  margin-left: 1rem;

}
.contText ul li {
  list-style-type: disc;
  margin-bottom: 1rem;
}
.contText ol li {
  list-style-type: decimal;
  margin-bottom: 1rem;
}

/* --------- Post Types --------- */
.blogBg{
  margin: 3rem auto;
  width: 100%;
  position: relative;
}
.page .blogBg, .post .blogBg{
  margin: 1rem auto;
}
.blogBGpage{
  margin: auto;
  max-width: 1200px;
  padding: 3rem 0;
  width: calc(100% - 2rem);
  position: relative;
}
.blogWrap{
  width: 100%;
  background-color: #e4e4e4;
}
.stndPostContWrap .postedDate, .countdownContainer .postedDate{
  color: #D3D3D3;
}

.postedDate{
  color: #2B2B2B;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.stndPostWrap{
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60%;
  position: relative;
}

.stndPostContWrap{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1rem;
}

.postH2, .stndPostH2{
  line-height: 1.7rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.postH2 h2{
  line-height: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.stndPostH2{
  color: #fff;
}

.postCont{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.imgTint{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background: rgba(48,29,29,0.4);
  background: -webkit-gradient(left bottom, left top, color-stop(0%, rgba(48,29,29,0.6)), color-stop(40%, rgba(48,29,29,0.2)), color-stop(100%, rgba(48,29,29,0.2)));
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(48,29,29,0.6)), color-stop(40%, rgba(48,29,29,0.2)), to(rgba(48,29,29,0.2)));
  background: linear-gradient(to top, rgba(48,29,29,0.6) 0%, rgba(48,29,29,0.2) 40%, rgba(48,29,29,0.2) 100%);
}

.allPostsBtnWrap{
  padding-top:10px;
  text-align: center;
}
.imgPostWrap{
  width: 100%;
  padding-bottom: 66.5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.linkBody{
  padding: 1rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.audioPostContWrap, .vidPostContWrap{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1rem;
}

.linkPostContWrap{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* --------- Sponsors --------- */
aside.sponsors{
  margin: 3rem auto;
}

.sponsorWrap{
  background-color: #fff;
  position: relative;
  padding-bottom: 25%;
}

.sponsorSlide.activeSlide{
  : 1;
}

.sponsorSlide{
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  : 0;
}

.sponsorSlide a{
  display: block;
  width: calc((100% / 3) - 1rem);
}

.sponsorSlide img{
  width: 100%;
  height: auto;
  padding: 2px;
}

/* --------- Search Form --------- */
.searchForm{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.searchSubmit{
  width: 36px;
  height: 36px;
  background-color: #B43C3C;
  border: none;
  background-image: url("../media/search.png");
  background-image: none, url("../media/search.svg");
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.searchField{
  width: 120px;
  border-top: 1px solid #2B2B2B;
  border-left: 1px solid #2B2B2B;
  border-bottom: 1px solid #2B2B2B;
  border-right: 1px solid transparent;
  margin-right: -1px;
  height: 36px;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

/* Search Drop Down Select */
.selectFormat{
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #2B2B2B;
  width: 120px;
  height: 36px;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-right: 1rem;
  background-color: #fff;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 50%;
  background-size: 8px;
}

/* --------- Image Wrap for Posts --------- */
img.alignright, .post .contText img, .alignright{
  float: right;
  margin: 0 0 1em 1em;
}
img.alignleft, .alignleft{
  float: left;
  margin: 0 1em 1em 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  width: 100%!important;
}
.wp-caption img{
  width: 100%;
  height: auto;
}

/* --------- Image Wrap for Posts --------- */
.instaWrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.instaImgWrap{
  position: relative;
  width: calc(100% / 2);
  padding-bottom: calc(100% / 2);
  overflow: hidden;
}
.instaImg{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.instaImgWrap:hover .instaImg,
.instaImgWrap:focus .instaImg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/* --------- Pagination --------- */
.pagination{
  text-align: center;
}
.pagination .screen-reader-text{
  width: 0;
  height: 0;
  overflow: hidden;
}
.pagination .page-numbers {
  padding: 6px 8px;
  color: #fafafa;
  background-color: #B43C3C;
}
.pagination .current, .pagination .page-numbers:hover{
  background-color: #2B2B2B;
}

/* Sponsors Page */
.sponsorsWrap{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  margin-bottom: 2rem;
}

.sponsorsWrap h2{
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}

.sponsorsWrap .sponsorBox{
  width: calc(100% - 1rem);
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sponsorsWrap .sponsorBox a{
  width: 100%;
}

.sponsorsWrap .sponsorBox img{
  width: 90%;
  height: auto;
}

.ultraLink{
  display: block;
  margin: 1rem;
}

/*
================================================================================
Flickr Styling
================================================================================
*/
.flickr-images-container{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flickr-images-container .flickr-image{
  width: calc((100% / 6) - 1rem);
  margin: .5rem;
}

.flickr-images-container .flickr-image img{
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
          box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.flickr-images-container .flickr-image img:hover{
  -webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
          box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.flick-load-more{
  width: 100%;
  padding: .5rem;
  text-align: center;
  color: #fff;
  background-color: #B43C3C;
  border: none;
  display: block;
  font-size: 1rem;
  margin: 1rem 0;
  cursor: pointer;
}

.flick-load-more:hover{
  background-color: #2B2B2B;
}

/*Flickr Media Queries*/
@media (max-width: 800px){
  .flickr-images-container .flickr-image{
    width: calc((100% / 3) - 1rem);
  }
}

@media (max-width: 450px){
  .flickr-images-container .flickr-image{
    width: calc(50% - 1rem);
  }
}

/* Landscape */
@media only screen
  and (orientation: landscape) {
    /* --------- Social Media Bar --------- */
    .extraInfo{
      right: 2%;
      bottom: 2%;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
    }
    .j750{
      width: 316px;
      text-align: right;
      padding: 0;
    }
    .sponsorsWrap .sponsorBox{
      width: calc(100% - 1rem);
      width: calc((100% / 2) - 1rem);
}

@media only screen and (min-width: 480px) {
  .contWrap{
    width: calc(100% - 2rem);
    margin: 1rem auto;
  }
  .headLogo img{
    height: 25px;
  }
  .instaImgWrap{
    width: calc(100% / 4);
    padding-bottom: calc(100% / 4);
  }
}

@media only screen and (min-width: 660px) {
  img.alignright, .post .contText img, .alignright, img.alignleft, .alignleft, .wp-caption{
    max-width: 300px;
  }
  .headerFS{
    margin-bottom: 2rem;
  }
  .contWrap{
    width: calc(100% - 4rem);
  }
  footer{
    margin-top: 2rem;
  }
  .sponsorSlide img{
    padding: 1rem;
  }
  .sponsorsWrap .sponsorBox{
    width: calc((100% / 2) - 1rem);
}

@media only screen and (min-width: 782px) {
    .button-group, .btnStyle1, .btnStyle2{
    padding: 15px 30px;
  }
  .admin-bar .menuWrap{
    top: 32px;
  }
  .stndPostWrap{
    padding-bottom: 40%;
  }
  .admin-bar .headerFS{
    height: calc(100vh - 32px);
  }
  .contBlock{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contBody{
    width: 75%;
  }
  .contImg{
    width: 25%;
    padding-bottom: 25%;
  }
  .linkBody{
    width: 85%;
  }
  .linkImg{
    width: 15%;
    padding-bottom: 10%;
    -ms-flex-item-align: center;
        align-self: center;
  }
  footer{
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footerL a:hover{
    color: #fafafa;
    text-decoration: underline;
  }
  footer .footerL{
    width: 70%;
  }
  footer .footerR{
    width: 30%;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .extraInfo{
    right: 4%;
    bottom: 4%;
    width: 400px;
  }
  .countdownContainer{
    width: 50%;
    bottom: 4%;
    left: 4%;
    text-align: left;
  }
  .button-group{
    bottom: 20%;
  }
  .sponsorsWrap .sponsorBox{
    width: calc((100% / 3) - 2rem);
}

@media (max-width: 940px){
  #nextSect{
    bottom: 26%;
  }
}

@media only screen and (min-width: 1024px) {
  .btnStyle1, .btnStyle2{
    padding: 15px 30px;
  }
  .sponsorSlide img{
    padding: 2rem;
  }
  .extraInfo img{
    padding: 0 8px;
  }
}

@media only screen and (min-width: 1200px) {
  .contWrap{
    max-width: 1200px;
  }

  .blogBg, .post .blogBg{
    padding: 2rem 0;
  }
  .home .blogBg{
    background-color: #e2e2e2;
  }
}
}}}
