/*

Southwest Motorhomes - Global Stylesheet
https://www.southwestmotorhomes.co.uk/
Handwritten by Oliver Coningham

*/

/* ------------ Toolbox ------------ */

.float-left {
  float: left;
}
.float-right {
  float: right;
}
.align-right {
  text-align: right;
}
.cleared {
  clear: both;
}
.hide {
  display: none;
}
.smaller {
  font-size: 90%;
}
.larger {
  font-size: 110%;
}
.normal {
  font-weight: normal;
}

hr {
  display: none;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
/* End hide from IE-mac */

.error_message {
  color: #970000;
  font-weight: bold;
}

#copy .error_message ul {
  margin-bottom: 30px;
}

#copy .error_message ul li {
  color: #970000;
  float: none;
  font-weight: 900;
  width: 100%;
}

/* ------------ Defaults ------------ */

html,
body {
  height: 100%;
}

body {
  background-color: #fff;
  color: #787f88;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 26px;
}

/* ------------ Branding ------------ */

#branding {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

#navigation {
  background-color: #0c3261;
  padding: 0 80px;
  text-align: right;
  width: 100%;
}

#navigation ul {
  float: right;
  padding: 40px 0;
}

#navigation li {
  float: left;
  margin-left: 30px;
}

#navigation li:first-child {
  margin-left: 0;
}

#navigation li a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  opacity: 0.6;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

#navigation li a:hover,
#navigation li a.currentpage,
#navigation li a.activeparent {
  /*
	border-bottom: 2px solid #fff;
	*/
  opacity: 1;
}

#navigation-line {
  background: rgba(255, 255, 255, 0.2);
  height: 10px;
  width: 100%;
}

#navigation p {
  display: none;
}

#branding .logo {
  background-color: #0c3261;
  padding: 20px 30px;
  position: absolute;
  top: 0;
  left: 80px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

/* ------------ Slideshow ------------ */

#slideshow {
  position: relative;
  width: 100%;
  margin-top: 105px;
}

#home #slideshow {
  margin-top: 0;
}

#slides {
  width: 100%;
}

#slides img {
  float: left;
  height: auto;
  width: 100%;
}

#slideshow .slide {
  display: block !important;
}

#slideshow .overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
}

#slideshow .caption {
  color: #fff;
  font-family: 'Satisfy', cursive;
  font-size: 90px;
  letter-spacing: 0;
  line-height: 90px;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  text-transform: lowercase;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slideshow .caption span {
  display: block;
}

#slideshow .caption strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 130px;
  padding-top: 10px;
  text-transform: uppercase;
  width: 100%;
}

.slick-slide img {
  display: block;
}

#slides-nav {
  display: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100%;
  text-align: center;
}

#home #slides-nav {
  display: block;
}

#slides-nav ul {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

#slides-nav li {
  display: inline-block;
  float: left;
  font-size: 0;
  line-height: 0;
  margin: 0 10px;
}

#slides-nav a {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  height: 50px;
  text-indent: -999999px;
  width: 50px;
}

#slides-nav li:first-child a {
  background: url('../img/arrow-left-white.svg') no-repeat left center;
}

#slides-nav li:last-child a {
  background: url('../img/arrow-right-white.svg') no-repeat left center;
}

/* ------------ Slideshow - Animation ------------ */

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

#slideshow .slick-active strong {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
}

@-webkit-keyframes fadeInDownSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownSD {
  -webkit-animation-name: fadeInDownSD;
  animation-name: fadeInDownSD;
}

#slideshow .slick-active span {
  animation-name: fadeInDownSD;
  animation-duration: 1s;
  opacity: 1;
}

/* ------------ Features ------------ */

#features {
  margin-top: -120px;
  padding: 0 80px;
  position: relative;
  width: 100%;
}

#features .feature {
  color: #787f88;
  float: left;
  text-align: center;
  width: 33.33%;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  display: inline-block;
}

#features .feature:hover {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

#features .feature img {
  float: left;
  height: auto;
  width: 100%;
}

#features .feature-copy {
  clear: both;
  padding: 30px 20px 0 20px;
  width: 100%;
}

#features .feature-copy img {
  float: none;
  height: 80px;
  width: auto;
}

#features .feature h2 {
  color: #062041;
  font-family: 'Satisfy', cursive;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 45px;
  margin-top: 15px;
  text-transform: lowercase;
}

#features .feature h2 span {
  display: block;
  width: 100%;
}

#features .feature strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 40px;
  text-transform: uppercase;
  width: 100%;
}

#features .feature p {
  margin-top: 25px;
}

#features .feature .button {
  background-image: url('../img/arrow-right-white.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #0c3261;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 23px 80px 23px 20px;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

#features .feature .button:hover {
  background-color: #062041;
}

/* ------------ Content ------------ */

#content {
  background-color: #f4f5f5;
  margin: 60px 0 0 0;
  position: relative;
  width: 100%;
}

body.page #content {
  margin: 0;
}

/* ------------ Breadcrumb ------------ */

#breadcrumb {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

/* ------------ Copy ------------ */

#copy {
  float: left;
  padding: 80px;
  position: relative;
  width: 60%;
}

#copy-inner {
  position: relative;
  z-index: 3;
}

body.page #copy {
  width: calc(100% - 600px);
}

body.page #copy .button {
  background-image: url('../img/arrow-right-white.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #0c3261;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 10px;
  padding: 23px 80px 23px 20px;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

body.page #copy .button:hover {
  background-color: #062041;
}

#copy h1::before {
  color: #787f88;
  content: 'Welcome';
  font-family: 'Oswald', sans-serif;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 130px;
  opacity: 0.05;
  position: absolute;
  top: 70px;
  left: 0;
  text-transform: uppercase;
  word-break: break-word;
}

#copy h1 {
  color: #062041;
  font-family: 'Satisfy', cursive;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 45px;
  margin-top: 15px;
  padding-bottom: 35px;
  text-transform: lowercase;
}

#copy h1 span {
  display: block;
  width: 100%;
}

#copy h1 strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 50px;
  text-transform: uppercase;
  width: 100%;
}

#copy h2 {
  color: #062041;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 40px;
  margin-top: 40px;
  padding-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}

#copy ul {
  list-style: disc outside;
  margin: 0 0 0 40px;
  padding-top: 15px;
}

#copy ul li {
  margin: 10px 30px 0 0;
}

#copy a {
  border-bottom: 1px solid #0c3261;
  color: #0c3261;
  text-decoration: none;
}

#copy a:hover {
  border-bottom: 1px solid #062041;
  color: #062041;
  text-decoration: none;
}

#copy h1.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 50px;
  text-transform: none;
}

body.page #copy h1::before {
  max-width: 80%;
}

#copy p {
  margin-top: 25px;
}

#copy-image {
  background-image: url('../img/copy-image.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -999999px;
  width: 40%;
}

/* ------------ Sidebar ------------ */

#sidebar {
  float: right;
  padding: 80px 80px 80px 0;
  width: 600px;
}

/* ------------ Slider Motorhomes ------------ */

.slider-motorhomes {
  padding: 40px 0 60px 80px;
  position: relative;
  width: 100%;
}

.slider-copy::before {
  color: #787f88;
  font-family: 'Oswald', sans-serif;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 130px;
  opacity: 0.1;
  position: absolute;
  top: 35px;
  left: 0;
  text-transform: uppercase;
}

#slider-used .slider-copy::before {
  content: 'Used';
}

#slider-new .slider-copy::before {
  content: 'New';
}

.slider-copy {
  float: left;
  padding-right: 60px;
  width: 30%;
}

.slider-copy h2 {
  color: #062041;
  font-family: 'Satisfy', cursive;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 45px;
  margin-top: 15px;
  padding-bottom: 15px;
  text-transform: lowercase;
}

.slider-copy h2 span {
  display: block;
  width: 100%;
}

.slider-copy h2 strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 40px;
  text-transform: uppercase;
  width: 100%;
}

.slider-copy p {
  margin-top: 25px;
}

.slider-copy .button {
  background-image: url('../img/arrow-right-white.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #0c3261;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 15px;
  padding: 23px 80px 23px 20px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.slider-copy .button:hover {
  background-color: #062041;
}

.slider-slides {
  float: right;
  padding-right: 100px;
  position: relative;
  width: 70%;
}

.slider-slides-content {
  padding-bottom: 60px;
  width: 100%;
}

.slider-slides-content img {
  float: left;
  height: auto;
  width: 100%;
}

.slider-slides-content .slide {
  display: block !important;
  padding-right: 20px;
  position: relative;
}

.slider-slides-content .slide img {
  float: left;
  height: auto;
  width: 100%;
}

.slider-slides-content .slide .title {
  background-color: #062041;
  clear: both;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 25px;
  padding: 20px 30px;
  text-transform: uppercase;
  width: 100%;
}

.slider-slides-content .slide .title .price {
  font-size: 20px;
  line-height: 20px;
  margin-top: 10px;
}

.slider-slides-content .slide .desc {
  background-color: #f4f5f5;
  padding: 20px 30px;
}

.slider-slides-content .slide .button a {
  background-color: #e5e8eb;
  color: #062041;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.slider-slides-content .slide .button a:hover {
  background-color: #062041;
  color: #fff;
}

.slider-nav {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-nav a {
  background-color: #0c3261;
  background-image: url('../img/arrow-right-white-large.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  display: inline-block;
  height: 80px;
  text-indent: -999999px;
  width: 80px;
  -webkit-border-top-left-radius: 100px;
  -webkit-border-bottom-left-radius: 100px;
  -moz-border-radius-topleft: 100px;
  -moz-border-radius-bottomleft: 100px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.slider-nav a:hover {
  background-color: #062041;
}

.slider-nav ul li:first-child {
  display: none;
}

.slider-slides .slick-dots {
  display: inline-block;
  bottom: 0px;
  left: 50%;
  width: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider-slides .slick-dots li {
  background-color: #e5e8eb;
  display: inline-block;
  float: left;
  height: 10px;
  margin: 0;
  padding: 0;
  width: 60px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

.slider-slides .slick-dots li button {
  display: none;
}

.slider-slides .slick-dots li.slick-active,
.slider-slides .slick-dots li:hover {
  background-color: #0c3261;
}

.slider-slides .slick-dots li button::before {
  display: none;
}

.slider-slides .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* ------------ Hero ------------ */

#hero {
  background-attachment: fixed;
  background-image: url('../img/hero-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 80px;
  height: 600px;
  position: relative;
  width: 100%;
}

#hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#hero-caption {
  color: #fff;
  font-family: 'Satisfy', cursive;
  font-size: 90px;
  letter-spacing: 0;
  line-height: 90px;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  text-transform: lowercase;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#hero-caption span {
  display: block;
}

#hero-caption strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 130px;
  padding-top: 10px;
  text-transform: uppercase;
  width: 100%;
}

/* ------------ Brand Logos ------------ */

#brand-logos {
  background-color: #f4f5f5;
  padding: 40px 80px;
  position: relative;
  width: 100%;
}

#brand-logos h4 {
  color: #787f88;
  content: 'Welcome';
  font-family: 'Oswald', sans-serif;
  font-size: 130px;
  letter-spacing: 0;
  line-height: 130px;
  opacity: 0.05;
  position: absolute;
  top: 40px;
  left: 0;
  text-transform: uppercase;
}

#brand-logos li {
  float: left;
  margin: 0 40px 0 0;
  width: calc(12% - 36px);
}

#brand-logos li:nth-child(10n + 10) {
  margin: 0;
}

#brand-logos li img {
  float: left;
  height: auto;
  width: 100%;
}

/* ------------ Why Choose Us ------------ */

.why-choose-us-container,
.service-item-container {
  background-color: #dae4f1;
  padding: 50px 0 20px 0;
}

.why-choose-us-container .why-choose-us,
.service-item-container .service-item {
  width: 100%;
  max-width: 1600px;
  text-align: center;
  font-size: 0;
  margin: auto;
}

.why-choose-us-container .why-choose-us h2,
.service-item-container .service-item .item .desc h3 {
  color: #062041;
  font-family: 'Satisfy', cursive;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 45px;
  margin-top: 15px;
  padding-bottom: 35px;
  text-transform: lowercase;
  margin-bottom: 40px;
}

.service-item-container .service-item .item .desc h3 {
  padding: 0px;
}

.why-choose-us-container .why-choose-us h2 strong,
.service-item-container .service-item .item .desc h3 strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 50px;
  text-transform: uppercase;
  width: 100%;
}

.why-choose-us-container .why-choose-us .item,
.service-item-container .service-item .item {
  display: inline-block;
  width: 33%;
  vertical-align: top;
  margin-bottom: 50px;
  text-align: left;
  padding: 0 25px;
}

.service-item-container .service-item .item {
  position: relative;
}

.service-item-container .service-item .item .img {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  float: left;
}

.service-item-container .service-item .item .img img {
  margin-top: 10px;
}

.why-choose-us-container .why-choose-us .item img {
  float: left;
}

.why-choose-us-container .why-choose-us .item .desc,
.service-item-container .service-item .item .desc {
  font-size: 14px;
  width: calc(100% - 100px);
  float: right;
}

.service-item-container .service-item .price {
  color: #dae4f1;
  background-color: #062041;
  font-weight: 700;
  border-radius: 50%;
  padding: 10px;
  height: 120px;
  width: 120px;
  position: absolute;
  top: 100px;
  left: 0;
  font-size: 13px;
  text-align: center;
  padding-top: 20px;
}

.service-item-container .service-item .price span {
  font-family: 'Satisfy', cursive;
  font-size: 45px;
  letter-spacing: 0;
  line-height: 55px;
  text-transform: lowercase;
  color: #fff;
}

.service-item-container .service-item .item .desc {
  width: calc(100% - 150px);
}

.why-choose-us-container .why-choose-us .item .desc h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.why-choose-us-container .why-choose-us .item .desc p {
  line-height: 18px;
}
/* ------------ Footer ------------ */

#footer {
  background-color: #062041;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  padding: 40px 80px;
}

#footer .footer {
  float: left;
  margin: 0 40px 0 0;
  width: calc(20% - 32px);
}

#footer .footer:last-child {
  margin: 0;
}

#footer .footer h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

#footer .footer p {
  margin-top: 25px;
  opacity: 0.5;
}

#footer .footer ul {
  margin-top: 15px;
  opacity: 0.5;
}

#footer .footer li {
  padding-top: 10px;
}

#footer .footer a {
  color: #fff;
  text-decoration: none;
}

#footer .footer a:hover {
  border-bottom: 1px solid #fff;
}

#footer .logo a:hover {
  border: none;
}

#footer .footer .social {
  opacity: 1;
}

#footer .footer .social li {
  float: left;
}

#footer .footer .social li:first-child {
  margin-right: 20px;
}

#footer .footer .social li a {
  display: inline-block;
  height: 40px;
  opacity: 0.7;
  text-indent: -999999px;
  width: 40px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

#footer .footer .social li a:hover {
  border: 0;
  opacity: 1;
}

#footer .footer .social li:first-child a {
  background-image: url('../img/icon-facebook.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .footer .social li:last-child a {
  background-image: url('../img/icon-instagram.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ------------ Furniture ------------ */

#furniture {
  background-color: #0c3261;
  color: #fff;
  font-size: 12px;
  line-height: 17px;
  padding: 20px 80px;
}

#furniture a {
  color: #fff;
  text-decoration: none;
}

#furniture a:hover {
  color: #fff;
  text-decoration: none;
}

#copyright {
  float: left;
  opacity: 0.5;
  width: auto;
}

#copyright p {
  display: inline-block;
  float: left;
  width: auto;
}

#copyright ul {
  display: inline-block;
  float: left;
}

#copyright li {
  float: left;
  margin-left: 30px;
}

#credit {
  float: right;
  opacity: 0.5;
}

/* ------------ Accordions ------------ */

body.page #copy .expand-blocks {
  width: 100%;
}

body.page #copy .expand-blocks .expand-block {
  border: 1px solid #c1c7cf;
  margin-top: 30px;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

body.page #copy .expand-blocks .expand-block:first-child {
  margin-top: 20px;
}

body.page #copy .expand-blocks .expand-block:hover {
  border: 1px solid #062041;
}

body.page #copy .expand-blocks .expand-block h3 {
  background: url('../img/icon-expand-open.svg') no-repeat top 18px right 20px;
  color: #062041;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  padding: 20px 30px;
  position: relative;
  text-transform: none;
  width: 100%;
}

body.page #copy .expand-blocks .expand-block h3 img {
  position: absolute;
  top: 15px;
  right: 20px;
}

body.page #copy .expand-blocks .expand-block p:first-child {
  margin-top: 0;
}

body.page #copy .expand-blocks .expand-block-copy {
  padding: 0 30px 20px 30px;
}

body.page #copy .expand-blocks .expand-block-copy h4:first-child {
  padding: 20px 0 10px 0;
}

/* ------------ Sidebar Features ------------ */

body.about #sidebar,
body.finance #sidebar,
body.storage #sidebar,
body.faq #sidebar,
body.gallery #sidebar,
body.accessories #sidebar {
  padding-right: 0;
}

#sidebar #page-images {
  width: 100%;
}

#sidebar #page-images img {
  float: left;
  height: auto;
  width: 50%;
}
