/* Copyright (C) Damon Vaughan Design Pty Ltd - All Rights Reserved
 * Unauthorized copying of files, via any medium, is strictly prohibited
 * Proprietary and confidential
 * Lead programmer Sue-Anne Hocking <hosting@dvdesign.com.au>, May 2016
 * Last updated 2022-10-21 SAH
 */
.features-holder,
.features {
  position: relative;
  width: 100%;
}
.features {
  overflow: hidden;
}
.feature-bg,
.feature-bg-img,
.feature-fg,
.feature {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.feature {
  left: 100%;
}
.feature.active {
  left: 0;
}
.feature-bg {
  overflow: hidden;
  z-index: 1;
}
.feature-bg-img {
  z-index: 5;
}
.feature-fg {
  z-index: 5999;
}
.featureH {
  height: 375px;
}
@media (min-width: 414px) {
  .featureH {
    height: 450px;
  }
}
@media (min-width: 640px) {
  .featureH {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .featureH {
    height: 318px;
  }
  #features .inner {
    position: relative;
  }
  .msg {
    width: 50%;
  }
  .align-right .msg {
    position: relative;
    left: 50%;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .featureH {
    height: 350px;
  }
}
@media (min-width: 1200px) {
  #features .inner {
    padding-left: 62px;
    padding-right: 62px;
  }
}
@media (min-width: 992px) and (min-height: 770px) {
  .featureH {
    height: 400px;
  }
}
@media (min-width: 1200px) and (min-height: 770px) {
  .featureH {
    /*height: 450px;*/
    height: 550px;
  }
}

.features-arrows {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.features-arrows .inner {
  position: relative;
  padding-left: 62px;
  padding-right: 62px;
}
.feature-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 200px;
  margin: -100px 0 0 0;
  padding: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 7999;
}
.feature-arrow.to-prev {
  left: -50%;
}
.feature-arrow.to-next {
  right: -50%;
}
@media (min-width: 1200px) {
  .hover .hoverable .feature-arrow.to-prev {
    left: 0;
  }
  .hover .hoverable .feature-arrow.to-next {
    right: 0;
  }
}
.feature-arrow button {
  width: 50px;
  height: 200px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent url("images/slider-arrows.png") no-repeat 0 center;
  background-size: 400px 100px;
}
.feature-arrow.to-next button {
  background-position: -100px center;
}

.features-dots {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  z-index: 7888;
  text-align: center;
}
.dots,
.dots li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.dots {
  display: inline;
  margin: 0 auto;
}
.dots li {
  display: inline-block;
}
.dots button {
  display: block;
  padding: 0;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: transparent;
  border: 2px solid #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transition: background 0.5s;
}
.dots .active button {
  background: #ee3124;
  border-color: #fff;
}

.msg-align {
  position: relative;
  top: 35%;
  -webkit-transform: translateY(-35%);
  transform: translateY(-35%);
  -webkit-font-smoothing: antialiased;
}
.msg {
  color: #252525;
  font-family: "HelveticaNeueW02-45Ligh", Arial, Helvetica, sans-serif;
}
.alt .msg {
  color: #fff;
}
.msg h2 {
  font-family: "HelveticaNeueW02-75Bold", Arial, Helvetica, sans-serif;
  font-size: 32px;
  margin-top: 0;
  color: #ee3124;
}
.alt .msg h2 {
  color: #fff;
}
.light .msg,
.light .msg h2 {
  color: #fff;
}
.dark .msg,
.dark .msg h2 {
  color: #252525;
}
.msg p {
  font-size: 18px;
}
.msg .btn {
  font-size: 16px;
}
.msg .btn,
.msg .btn:visited {
  background: #ee3124;
  color: #fff;
  border: 1px solid #ee3124;
}
.msg .btn:hover {
  background: #fff;
  color: #ee3124;
  border: 1px solid #fff;
}
.alt .msg .btn,
.alt .msg .btn:visited {
  background: #fff;
  color: #ee3124;
  border: 1px solid #fff;
}
.alt .msg .btn:hover {
  background: #ee3124;
  color: #fff;
  border: 1px solid #ee3124;
}
.light .msg .btn {
  background: #fff;
  color: #ee3124;
  border: 1px solid #fff;
}
.dark .msg .btn {
  background: #252525;
  color: #fff;
  border: 1px solid #252525;
}
.light .msg .btn:hover,
.dark .msg .btn:hover {
  background: #ee3124;
  color: #fff;
  border: 1px solid #ee3124;
}
@media (min-width: 768px) {
  .msg-align {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .msg h2 {
    font-size: 34px;
  }
  .msg p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .msg h2 {
    font-size: 40px;
  }
  .msg p {
    font-size: 24px;
  }
  .msg .btn {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (min-height: 770px) {
  .msg h2 {
    font-size: 45px;
  }
  .msg p {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (min-height: 770px) {
  .msg h2 {
    font-size: 50px;
  }
  .msg p {
    font-size: 28px;
  }
}

.animates h2,
.animates p {
  margin: 0;
  padding: 8px 0;
}
.animates .contains-btn p {
  padding-top: 10px;
}
.animates .mask,
.animates .anim {
  display: block;
}
.animates .mask {
  overflow: hidden;
}
@media (min-width: 768px) {
  .animates h2,
  .animates p {
    padding: 10px 0;
  }
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.anim {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.reverse .anim {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.anim.single {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.slideUp {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.animated .slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.reverse.animated .slideUp {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
.fadeIn {
  opacity: 0;
}
.animated .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.reverse.animated .fadeIn {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.delay-0 {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.delay-1 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.delay-2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.reverse .delay-0 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.reverse .delay-1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.reverse .delay-2 {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

/* column grid */
.boxgrid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.boxgrid.reversed {
  flex-direction: row-reverse;
}
.boxgrid-col {
  position: relative;
  width: 100%;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.boxgrid-img,
.boxgrid-txt {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .boxgrid-img,
  .boxgrid-txt {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .txt-left {
    text-align: left;
  }
}

.badges a {
  display: inline-block;
}
.badges img {
  max-height: 40px;
  width: auto !important;
}
.col-badge {
  width: 50%;
}
.col-badge:first-child {
  text-align: right;
  padding-right: 10px;
}
.col-badge:last-child {
  text-align: left;
  padding-left: 10px;
}
@media (min-width: 576px) {
  .badges img {
    max-height: 50px;
  }
  .col-badge:first-child {
    padding-right: 20px;
  }
  .col-badge:last-child {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .badges img {
    max-height: 60px;
  }
  .col-badge:first-child {
    padding-right: 30px;
  }
  .col-badge:last-child {
    padding-left: 30px;
  }
}

/* gallery */
.mini-gallery {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mini-slide {
  text-align: center;
}
.mini-slide img {
  display: block;
  margin: 0 auto;
}

/* dots */
.mini-gallery .slick-dots {
  bottom: 0;
}
.mini-gallery .slick-dots li {
  margin-left: 3px;
  margin-right: 3px;
}
.mini-gallery .slick-dots li,
.mini-gallery .slick-dots li button {
  width: 15px;
  height: 15px;
}
.mini-gallery .slick-dots li button {
  padding: 0;
  position: relative;
}
.mini-gallery .slick-dots li button:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border: 1px solid #ccc;
  opacity: 1;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mini-gallery .slick-dots li button:hover:before,
.mini-gallery .slick-dots li button:focus:before {
  border-color: #ee3124;
}
.mini-gallery .slick-dots li.slick-active button:before {
  opacity: 1;
  border-color: #ee3124;
  background-color: #ee3124;
}

/* app screens */
.app-gallery .mini-slide img {
  width: 300px;
  max-width: 70%;
}
@media (min-width: 992px) {
}

.feature-bigred {
  background: rgb(238, 49, 36);
  background: -moz-linear-gradient(
    180deg,
    rgba(238, 49, 36, 1) 0%,
    rgba(161, 35, 32, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(238, 49, 36, 1) 0%,
    rgba(161, 35, 32, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(238, 49, 36, 1) 0%,
    rgba(161, 35, 32, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ee3124",endColorstr="#a12320",GradientType=1);
  color: #fff;
  padding-top: 20px;
}
.feature-bigred h1,
.feature-bigred h2,
.feature-bigred h3,
.feature-bigred h4,
.feature-bigred a {
  color: #fff;
}
.feature-bigred h1 {
  font-size: 34px;
  font-family: "HelveticaNeueW02-75Bold", Arial, Helvetica, sans-serif;
}
.feature-bigred img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .feature-bigred {
    border-top: 2px solid #df2d21;
    padding-top: 0;
  }
  .feature-bigred h1 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .feature-bigred h1 {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .feature-bigred h1 {
    font-size: 50px;
  }
}

.text-left {
  text-align: left;
}

.scroll-down {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 2px solid #fff;
  background: #f0f0f0;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.scroll-icon {
  display: block;
  text-indent: -9999px;
  position: relative;
}
.scroll-icon:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -9px;
  margin-top: 10px;
  width: 18px;
  height: 18px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  pointer-events: none;
}
