/* ---- TOURISM SASKATCHEWAN - SPRING 2018 LANDING PAGES */

html, body{
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 200;
  height: 100%;
  font-size: 18px;
  color: #4F4F4F;
}

/* ---- Vertical Padding Styles */
.pad120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pad100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pad80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pad60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pad40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pad30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pad20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.noPad {
  padding: 0;
}

@media(max-width: 767px) {
  .pad40 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .pad60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .pad80 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .pad100 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .pad120 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ---- Background Styles */
.white-bg {
  background: #ffffff;
}

.grey-bg {
  background: #E9EBEB;
}

/* ---- Custom Text Global Styles */
.white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text a, .white-text li, .white-text table, .white-text p {
  color: #ffffff !important; 
}

/* ---- Link / Button Styles */
a {
  color: inherit; 
  text-decoration: inherit;
  -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover{
  color: inherit; 
  text-decoration: inherit;
  -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a.btn-orange, button.btn-orange, a.btn-green, button.btn-green {
  position: relative;
  margin: 15px 0;
  display: inline-block;
  text-align: center;
  background: #64A70B;
  padding: 10px 75px 10px 30px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: -0.03px;
  border-radius: 0;
  color: #ffffff;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a.btn-orange:hover, button.btn-orange:hover, a.btn-green:hover, button.btn-green:hover {
  background: #74bd16;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
}

a.btn-orange:after, button.btn-orange:after, a.btn-green:after, button.btn-green:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 1px solid #ffffff;
  font-family: 'FontAwesome';
  content: '\f054';
  color: #ffffff;
  font-weight: 400;
  padding: 10px 15px;
  margin-left: 10px;
}

@media(max-width: 480px) {
  a.btn-orange, button.btn-orange, a.btn-green, button.btn-green  {
    font-size: 16px;  
    padding: 10px 60px 10px 15px;
  }
}

@media(max-width: 400px) {
  a.btn-orange, button.btn-orange,  a.btn-green, button.btn-green {
    font-size: 14px;  
    line-height: 18px;
  }
}

/* ---- Image Styles */
img {
  max-width: 100%;
}

.img-full {
  width: 100%;
}

@media(max-width: 767px) {
  .imageRow .image  {
    padding: 0 !important;
  }
  .imageRow .image img {
    padding: 0 !important;
  }
}

.imageRow.consider-budding {
  
}

@media(min-width: 768px) {
  .imageRow.consider-upscale .image {
    padding-bottom: 0;
  }
}


/* ---- MISC Elements */
hr {
  height: 1px;
  background: #64A70B;
  border-top: none;
  margin-top: 10px;
}


/* ---- Header Styles */
#header {
  position: relative;
  background-image: url('../img/discover/discover-head-banner.jpg');
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: 0 50%;
  min-height: 532px;
}

h1.intro-heading {
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  color: #ffffff;
  margin-top: 350px;
  text-shadow: 0 2px 2px rgba(0,0,0,0.50);
}

.logo img {
  text-shadow: 0 2px 2px rgba(0,0,0,0.50);
}

@media(max-width: 1199px) {
  #header {
    min-height: 435px;
  }
  
  h1.intro-heading {
    margin-top: 200px;
  }
}

@media(max-width: 767px) {
  #header {
    min-height: 300px;
  }
  
  h1.intro-heading {
    margin-top: 60px;
    font-size: 30px;
    line-height: 38px;
  }
}

@media(max-width: 480px) {
  h1.intro-heading {
    margin-top: 80px;
    font-size: 26px;
    line-height: 32px;
  }
}

.btn-menu {
  text-align: center;
  color: #fff !important;
  font-size: 42px !important;
  line-height: 40px;
  display:block;
  cursor: pointer;
}

.btn-menu div i, .btn-search div i, .btn-share div i {
  font-size: 38px !important;
  font-weight: 100;
}

.btn-search {
  text-align: center;
  color: #fff !important;
  font-size: 42px !important;
  display:block;
  margin-right: 10px;
  z-index: 300;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
}

.btn-search.active {
  color: #64a70a !important;
  margin-top: 14px;
  font-size: 29px !important;
}

.btn-search.active div i {
  font-size: 31px !important;
}

.search-container {
  position: relative;
  margin-right: 46px;
}


.search-container form .form-control{
  border-radius: 0 !important;
}

.form-search {
  position: absolute;
  display: none;
  right: 0;
  width: 200px;
  margin-top: 11px;
  margin-right: -34px;
}


.btn-menu .label {
  font-size: 12px;
  line-height: 12px;
  margin-top: -7px;
  position: absolute;
  margin-left: -22px;
}


/* ---- Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;  
}

.breadcrumbs ul li {
  font-size: 12px;
  text-align: left;
  font-weight: 400;
  padding: 0px 1px;
}

.breadcrumbs ul li.active {
  color: #64A70B;
}


/* ---- Content Blocks 50/50 Image/Text */
.contentBlock h2 {
  color: #4F4F4F;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: -0.23px;
  font-weight: 400;
  margin-top: 0;
}

.contentBlock p {
  color: #4F4F4F;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 15px 0;
}

.contentBlock p strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.contentBlock p.subtext {
  margin-top: 30px; 
}

.contentBlock a.btn-orange, .contentBlock a.btn-green {
  margin-top: 0;
}

.contentBlock .image, .contentBlock .video {
  padding: 15px 0;
}

.contentBlock .video a {
  position: relative;
  display: block;
  margin: 0;
}

.contentBlock .video .play-btn {
  position: absolute;
  background: url(../img/play-btn.png) 50% 50% no-repeat;
  background-size: 130px auto;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.contentBlock .checkbox {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 15px;
}

.contentBlock .checkbox input {
  margin-right: 4px;
}

.contentBlock .form-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}  

.contentBlock .formCol {
  display: inline-block;
  vertical-align: top;
  width: 45%;  
}

.top-btn {
  color: #64A70B;
  font-size: 14px;
  font-weight: 400;
}

.top-btn:hover {
  text-decoration: underline;
}

@media(max-width: 991px) and (min-width: 768px) {
  
  .contentBlock .formCol {
    display: block !important;
    width: 100% !important;
  }
  
  .contentBlock .colTwo .checkbox:first-child {
    margin-top: 0 !important;
  }
}


@media(max-width: 767px) {
  .contentBlock p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .contentBlock p strong {
    font-size: 18px;
    line-height: 24px;
  }

  .contentBlock .image {
    margin-top: 20px;
  }
  
  .top-btn {
    display: inline-block;
    margin-top: 15px;
  }
}

@media(max-width: 480px) {
  .contentBlock h2 {
    font-size: 26px;
    line-height: 32px;
  }
  
  .contentBlock .formCol {
    display: block !important;
    width: 100% !important;
  }
  
  .contentBlock .colTwo .checkbox:first-child {
    margin-top: 0 !important;
  }
}


@media(max-width: 400px) {
.contentBlock p {
    font-size: 15px;
    line-height: 24px;
  }
  
  .contentBlock p strong {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ---- Quote Text */
.quote h3 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 2px #000000;
}

@media(max-width: 991px) {
  .quote h3 {
    font-size: 30px;
    line-height: 40px;
  }
  
  .quote p strong {
    font-size: 16px !important;
  }
}

/* ---- Banner Content Blocks BG Image/Text Overlay */
.bannerBlock {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  min-height: 565px;
}

.considerBuddingBanner {
  min-height: 440px;
}

.discoverBuddingBanner, .discoverUpscaleBanner {
  min-height: 495px;
}

.bannerBlock.contentBlock h2, .bannerBlock.contentBlock p {
  text-shadow: 0 2px 2px #000000;
}

@media(max-width: 767px) {
  .bannerBlock {
    min-height: unset;
  }
  .considerBuddingBanner .text-left {
   margin-top: 130px !important;
  }
  
}

@media(max-width: 480px) {
  .bannerBlock .text-left {
    margin-top: 200px;
  }
  
}

/* ---- Footer Styles */
#footerTop h4, #footerTop h4 a {
  color: #64A70B; 
  font-weight: 400;
  font-size: 14px !important;
  line-height: 18px; 
  margin-bottom: 5px;
}

#footerTop a.social {
  font-size: 25px !important;
  margin-right: 10px;
  color: #4F4F4F;
}

#footerTop a.tel-link {
  font-size: 14px !important;
  font-weight: 400;
  margin-top: 0;
}

#footerTop a:hover {
  color: #626060;
}

#footerBtm .foot-logo {
  text-align: right;
}

#footerBtm .foot-logo img {
  height: 40px;
}

@media(max-width: 767px) {
  #footerBtm .foot-logo {
    text-align: center;
  }
}

/* ---- Landing Page Specific Styles */

@media(max-width: 480px) {
  .considerUpscaleBanner .text-left {
    margin-top: 0px !important;
  }
}

.packing-adventure-btn {
  margin-top: 200px;
}

@media(max-width: 1199px) {
  .packing-adventure-btn {
    margin-top: 100px;
  }
}

@media(max-width: 991px) {
  .packing-adventure-btn {
    margin-top: unset;
  }
}





/* ========= TOURISM SEARCH & NAV ========= */
.btn-close-sidr {
  float: right;
  cursor: pointer;
  padding-right: 10px;
  font-size: 34px;
  color: #64a70a;
}

#sidr {
  background: #ffffff;
}

#sidr .logo {
  width: 130px;
  padding: 15px;
}

#primaryTsNav {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #c1c1c1;
  font-weight: 400;
}

#primaryTsNav li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.5em;
}

#primaryTsNav li a:hover {
  background-color: #64a70a;
  color: #fff;
}

#primaryTsNav li a {
  display: block;
  padding: 10px 0;
  padding-left: 20px;
  border-bottom: 1px solid #c1c1c1;
  color: #333;
}

#primaryTsNav li button {
  float: right;
  color: #64a70a;
  vertical-align: middle;
  padding: 10px;
  border: 0;
  background-color: rgba(0,0,0,0);
  border-left: 1px solid #c1c1c1;
}

#primaryTsNav li button:hover {
  background-color: #fff;
}

#primaryTsNav li ul {
  display: none;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
}

#primaryTsNav li ul li {
  
}

#primaryTsNav li ul li a {
  padding-left: 40px;
}

#primaryTsNav li ul li ul{
  display: none;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

#primaryTsNav li ul li ul li a {
  padding-left: 60px;
}

#secondaryTsNav {
  list-style: none;
  margin: 0;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid #c1c1c1;
}

#secondaryTsNav li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.5em;
}

#secondaryTsNav li a:hover {
  background-color: #64a70a;
  color: #fff;
}

#secondaryTsNav li a {
  display: block;
  padding: 10px 0;
  padding-left: 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
}
  