*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
} /*1rem=16px*/
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 80%;
  }
}

body {
  box-sizing: border-box;
}

html,
body {
  background-color: #fff;
  color: #535353;
  font-family: "Open Sans", sans-serif;
  /*font-size: 16px;*/
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

/*REUSABLE STUFF*/

.row {
  max-width: 114rem;
  margin: 0 auto;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

#ie8-warn {
  padding: 20px;
  font-weight: bold;
  background-color: rgba(201, 214, 255, 0.63);
  color: #13174e;
  border: 2px solid #30475f;
  margin: 50px;
  width: 80%;
  margin-left: 10%;
  position: fixed;
  z-index: 10;
}

/*buttons - some of these to be used for future design*/

.btn:link,
.btn:visited {
  text-transform: uppercase;
  padding: 1.2rem 3.2rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 12rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  color: #5386a1;
}

.btn:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #5386a1;
}

.btn--white:hover {
  color: #333333;
}

.btn--white::after {
  background-color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.btn--animated {
  -webkit-animation: moveInBottom 0.75s ease-out 0.75s;
  animation: moveInBottom 0.75s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

/*HEADER*/

.header {
  position: relative;
  height: 12.5rem;
  background-color: #30475f;
  padding: 0;
  margin: 0;
}

.header__logo-box {
  position: absolute;
  top: 33%;
  left: 8rem;
}

.header__logo {
  height: 4.25rem;
  z-index: 10;
}

.navigation__nav {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  width: 100%;
}

@media only screen and (max-width: 966px) {
  .navigation__nav {
    display: none; !important
  }
}

.navigation__list {
  position: absolute;
  top: 4.65rem;
  left: 28rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.navigation__item {
  display: inline-block;
}

.navigation__item a:link,
.navigation__item a:visited {
  display: block;
  position: relative;
  text-align: center;
  letter-spacing: 3px;
  padding: 2px;
  margin-right: 2rem;
  width: 20rem;
  color: #fff;
  font-weight: 600;
  /*text-shadow: 1px 2px 2px #6fc2e7;*/
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*Hover effects for the nav-menu items */

.navigation__item a:hover,
.navigation__item a:active,
.mobi-navigation__item a:hover,
.mobi-navigation__item a:active {
  color: #f5f5f5;
  background: #6fc2e7;
  /*width: 19rem;*/
    width:20rem;
  text-shadow: 2px 2px 2px #30475f;
  font-weight: 500;
}

.navigation__item a:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 14px;
  height: 14px;
  border: 3px solid #6fc2e7;
  border-width: 3px 0 0 3px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.navigation__item a:hover:before {
  left: -12px;
  top: -12px;
  opacity: 1;
}

.navigation__item a:after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  border: 3px solid #6fc2e7;
  border-width: 0 3px 3px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.navigation__item a:hover:after {
  right: -12px;
  bottom: -12px;
  opacity: 1;
}

/*Mobile navigation for smaller screens*/
.mobi-navigation {
  display: none;
}

.mobi-navigation__checkbox {
  display: none;
}

.mobi-navigation__button {
  background: #30475f;
  height: 7.1rem;
  width: 7.1rem;
  border-radius: 50%;
  position: absolute;
  top: 2rem;
  right: 6rem;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}

.mobi-navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  right: 5.5rem;
  /*background: #6fc2e7;  /* fallback for old browsers */
  /*background: -webkit-linear-gradient(to right, rgba(111, 194, 231, 1), #30475f);  /* Chrome 10-25, Safari 5.1-6 */
  /*background: -webkit-linear-gradient(left, rgba(111, 194, 231, 1), #30475f);
    /*background: linear-gradient(to right, rgba(111, 194, 231, 1), #30475f); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  z-index: 1000;
  /*-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);*/
}

.mobi-navigation__nav {
  height: 90vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 0.5rem 0;
  background: #30475f;
}

.mobi-navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: left;
  width: 50vw;
}

.mobi-navigation__item {
  margin: 1.5rem;
  margin-left: 5rem;
  width: 100%;
}

.mobi-navigation__item a:link,
.mobi-navigation__item a:visited {
  display: inline-block;
  width: 60%;
  font-size: 3rem;
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 500;
  /*text-shadow: 1px 2px 2px #232526;/*#5386A1;*/
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mobi-navigation__item a:hover,
.mobi-navigation__item a:active {
  background-position: 0%;
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
  border-right: 3px solid #30475f;
  border-bottom: 3px solid #30475f;
}

.mobi-navigation__item a:checked ~ .mobi-navigation__nav,
.mobi-navigation__item a:checked ~ .mobi-navigation__nav {
  opacity: 0;
  width: 0;
}

.mobi-navigation__checkbox:checked ~ .mobi-navigation__background {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mobi-navigation__checkbox:checked ~ .mobi-navigation__nav {
  opacity: 1;
  width: 50%;
}

.mobi-navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}

.mobi-navigation__icon,
.mobi-navigation__icon::before,
.mobi-navigation__icon::after {
  width: 4rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}

.mobi-navigation__icon::before,
.mobi-navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.mobi-navigation__icon::before {
  top: -1rem;
}

.mobi-navigation__icon::after {
  top: 1rem;
}

.mobi-navigation__button:hover .mobi-navigation__icon::before {
  top: -1rem;
}

.mobi-navigation__button:hover .mobi-navigation__icon::after {
  top: 1rem;
}

.mobi-navigation__checkbox:checked
  + .mobi-navigation__button
  .mobi-navigation__icon {
  background-color: transparent;
}

.mobi-navigation__checkbox:checked
  + .mobi-navigation__button
  .mobi-navigation__icon::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.mobi-navigation__checkbox:checked
  + .mobi-navigation__button
  .mobi-navigation__icon::after {
  top: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*HOME PAGE*/

/*Banner section with photo bg*/

main {
  margin: 0;
  padding: 0;
}

.home-banner {
  position: relative;
  height: 83vh;
  width: 100%;
  background-image: url(img/header-img-min.jpg);
  background-image: -webkit-linear-gradient(
      rgba(29, 29, 29, 0.63),
      rgba(29, 29, 29, 0.63)
    ),
    url(img/header-img-min.jpg);
  background-image: linear-gradient(
      rgba(29, 29, 29, 0.63),
      rgba(29, 29, 29, 0.63)
    ),
    url(img/header-img-min.jpg);
  background-size: cover;
  background-position: center center;
  padding: 0;
  margin: 0;
}

.home-banner__text-box {
  position: absolute;
}

.home-banner__text-box-1 {
  width: 100%;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-banner__text-box-1 h2 {
  display: inline-block;
  font-size: 6.05rem;
  padding: 1rem;
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.4;
  text-transform: capitalize;
  background-image: -webkit-linear-gradient(left, #5cb2e0, #c9d6ff);
  background-image: linear-gradient(to right, #5cb2e0, #c9d6ff);
    background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
    color:#fff;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
}

.home-banner__text-box-1 h2:not(:last-child) {
  margin-right: 4rem;
}

.h2__animated {
  -webkit-animation: moveInBottom 1s ease-out;
  animation: moveInBottom 1s ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.h2__animated--1 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.8s;
}

.h2__animated--2 {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.25s;
}

.home-banner__text-box-2 {
  width: 100%;
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
  text-align: center;
  margin: 0 auto;
}

.home-banner__text-box-2 h2 {
  font-size: 3.25rem;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-weight: 300;
  padding: 1rem 0 1rem 0;
  letter-spacing: 3px;
  word-spacing: 2px;
  display: block;
}

.home-banner-image {
  display: block;
  width: 24%;
  margin-left: 38%;
}

.section-link-arrow {
  position: absolute;
  top: 86%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.home-banner__icon:link,
.home-banner__icon:visited {
  display: block;
  margin: 0 auto;
  width: 5.25rem;
  height: 5.25rem;
  color: #6fc2e7;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.home-banner__icon:hover,
.home-banner__icon:active {
  color: #30475f;
  font-weight: 700;
  background-color: #fff;
  border: 0 solid #fff;
}

.home-banner__icon i {
  font-size: 4.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*ABOUT SECTION - HOME PAGE */

.section-about {
  background-color: #fdfdfd;
  padding: 7rem 0;
}

.section-h2 {
  font-size: 2.55rem;
  text-transform: uppercase;
  color: #30475f /*#3c6174*/;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.lead-paragraph {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  width: 80%;
  margin-left: 10%;
  margin-bottom: 6rem;
  line-height: 1.7;
}

.feature-box {
  width: 90%;
  margin-left: 5%;
  height: 34rem;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.feature-box__icon {
  font-size: 8rem;
  margin: 1rem 0 3rem 0;
  display: inline-block;
  background-image: -webkit-linear-gradient(left, #6fc2e7, #30475f);
  background-image: linear-gradient(to right, #6fc2e7, #30475f);
  /*background-image: -webkit-linear-gradient(left, #5386A1, #C9D6FF);
    background-image: linear-gradient(to right, #5386A1, #C9D6FF);*/
    background-clip:text;
  -webkit-background-clip: text;
  color: transparent;
    color:#b5e3f7;
  -webkit-text-fill-color: transparent;
}

.feature-box:hover {
  -webkit-transform: translateY(-1.5rem) scale(1.03);
  transform: translateY(-1.5rem) scale(1.03);
}

.heading-tert {
  font-size: 2.35rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-top: 1rem;
  color: #6fc2e7;
  /*text-shadow:1px 2px 2px #30475f/*#363636*/
  letter-spacing: 2px;
}

.feature-box__text {
  margin-bottom: 2rem;
}

.section-about .section-about-btn-row {
  text-align: center;
  padding: 6rem 0 2rem 0;
}

.big-arrow {
  font-size: 2.4rem;
}

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*PRODUCTS section - HOME page */

.section-products {
  padding: 6rem 0 0 0;
  /*background: -webkit-linear-gradient(to right, #f5f5f5, #e1e8ff);
    background: -webkit-linear-gradient(left, #f5f5f5, #e1e8ff);
    background: linear-gradient(to right, #f5f5f5, #e1e8ff);*/
  background-image: -webkit-gradient(
    linear,
    right bottom,
    left top,
    from(#ffffff),
    to(#6fc2e7)
  );
  background-image: linear-gradient(to left top, #ffffff, #6fc2e7);
  background-color: #fff;
}

.p-skew {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 3rem;
  color: #30475f;
  letter-spacing: 0.2rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.section-products .lead-paragraph:last-child {
  margin-top: 0;
  margin-bottom: 4rem;
}

.section-products .home-banner__icon:link,
.section-products .home-banner__icon:visited {
  border: 2px solid #30475f;
  background: #fff;
}

.section-products .home-banner__icon:hover {
  border: 2px solid #fff;
  background: #6fc2e7;
}

.section-products .home-banner__icon i {
  position: relative;
  display: block;
  text-align: center;
}

.section-products .home-banner__icon i:hover {
  color: #30475f;
}

.section-TP-CX {
  padding: 6.5rem 0;
}

/*Showing TaxPacc and CarbonX*/

.tabs-box {
  background-color: rgba(48, 71, 95, 0.92);
  width: 80%;
  height: 460px;
  margin-left: 10%;
  margin-bottom: 2rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.tabs {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  margin: 0;
  text-align: left;
}
.tabs li {
  float: left;
  display: block;
}
.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 14px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #30475f;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #d8d8d8;
  cursor: pointer;
  position: relative;
  top: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tabs [id^="tab1"] + label {
  color: #1c6ab4;
}

.tabs [id^="tab2"] + label {
  color: #037f49;
}

.tabs label:hover {
  background: #fff;
}

.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 20px 10px;
  position: absolute;
  top: 70px;
  left: 0;
  background: #fff;
}
.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 17px;
  background: #fff;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
  height: 25rem;
}

.tab-content-img {
  float: left;
  width: 80%;
  margin-left: 5%;
  padding-top: 5px;
}

.tab-content p {
  padding: 0.5rem 2rem 0.5rem 0;
}

#tab-content2 p {
  padding: 0 1rem 0.5rem 0;
}

.tab-content .btn-text:link,
.tab-content .btn-text:visited {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #30475f;
  text-decoration: none;
  float: right;
  border-bottom: 1px solid #30475f;
  padding: 4px 15px;
  margin: 1rem 1rem 0 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#tab-content2 .btn-text:link,
#tab-content2 .btn-text:visited {
  margin: 0.5rem 1rem 0 0;
}

.tab-content .btn-text:hover {
  background-color: #30475f;
  font-weight: 500;
  color: #6fc2e7;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  border-top: 2px solid #30475f;
  border-bottom: 2px solid #30475f;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  font-family: "Open Sans", sans-serif;
}

#tab-content2 p a:link,
#tab-content2 p a:visited {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #0b8040;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#tab-content2 p a:hover,
#tab-content2 p a:active {
  color: #65bc46;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/*CONTACT SECTION - Home Page */

.contact-section {
  padding: 6.5rem 0 3rem 0;
  background-image: -webkit-linear-gradient(
      rgba(28, 28, 28, 0.86),
      rgba(28, 28, 28, 0.86)
    ),
    url(img/contact-bg-2.jpg);
  background-image: linear-gradient(
      rgba(28, 28, 28, 0.86),
      rgba(28, 28, 28, 0.86)
    ),
    url(img/contact-bg-2.jpg);
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  background-position: center;
}

.contact-section .lead-paragraph {
  font-weight: 100;
  margin-bottom: 2rem;
}

.contact-section .section-h2 {
  color: #6fc2e7;
}

.contact-box {
  width: 80%;
  margin-left: 10%;
  padding: 2rem;
}

.contact-box .heading-tert {
  font-weight: 500;
  color: #6fc2e7;
  margin: 3rem 0 2rem 0;
  border-bottom: 1px solid #5386a1;
  letter-spacing: 2px;
  text-align: center;
}

.circle-icon {
  display: block;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: #c9d6ff;
  position: relative;
  margin-bottom: 3rem;
}

.circle-icon i {
  color: #30475f;
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.circle-icon .fa-headset {
  font-size: 3.8rem;
}

.contact-box__text {
  font-size: 1.35rem;
  margin-top: 3rem;
  font-weight: 100;
  text-align: center;
  letter-spacing: 2px;
}
.contact-box .phone {
  margin-top: 3rem;
  font-size: 1.35rem;
  text-align: center;
  letter-spacing: 2px;
}

.contact-box p a:link,
.contact-box p a:visited {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  text-align: center;
  letter-spacing: 2px;
}

.contact-box p a:hover,
.contact-box p a:active {
  color: #6fc2e7;
  -webkit-transform: scale(1.3) translate(5px);
  transform: scale(1.1) translate(5px);
}

/*404 PAGE - to be designed at a later time */

#page404 {
  background-color: #c9d6ff;
  padding: 4rem 0;
  height: 100vh;
}

#page404 i {
  font-size: 7rem;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin-left: -3rem;
}

#page404 h1 {
  width: 84%;
  margin-left: 8%;
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #30475f;
  margin-bottom: 3.5rem;
}

#page404 h1 span {
  font-size: 6rem;
  text-shadow: 4px 4px 8px #5386a1;
}

#page404 .lead-paragraph {
  width: 70%;
  margin-left: 15%;
  margin-bottom: 3rem;
}

#page404 .btn-text:link,
#page404 .btn-text:visited {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #30475f;
  text-decoration: none;
  padding: 6px;
  margin: 1rem 0 0 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#page404 .btn-text:hover {
  background-color: #30475f;
  font-weight: 500;
  color: #6fc2e7;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  border-top: 2px solid #30475f;
  border-bottom: 2px solid #30475f;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  font-family: "Open Sans", sans-serif;
}

/*FOOTER*/

.footer {
  background-color: #30475f;
  padding: 4rem 0 3rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
}

.copyright-row {
  margin-top: 2rem;
}

.copyright-box {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0;
  color: #fff;
}

.footer-logo {
  width: 3rem;
  height: auto;
  vertical-align: middle;
  margin: 0 1rem;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer-logo:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

/*Animations* NOTE: some may be used at a later time*/

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
  80% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
    transform: translateX(10rem);
  }
  80% {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/*Some of the animations below have not been used yet - keeping them here future pages*/

.js--img_slide {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-1,
.js--wp-2,
.js--wp-3,
.js--wp-4,
.js--wp-5 {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-6 {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.js--wp_right,
.js--wp_left {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.js--wp_pulse {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated,
.js--wp-4.animated,
.js--wp-5.animated,
.js--wp-6.animated,
.js--wp_right.animated,
.js--wp_left.animated {
  opacity: 1;
}

/*RELEVANT COLOURS

LOGO COLOURS: #6fc2e7, #30475f

FOOTER COLOUR:

background: #232526;  fallback for old browsers
background: -webkit-linear-gradient(to bottom, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 
background: linear-gradient(to bottom, #414345, #232526);  W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ 


*/
