/*
Theme Name: PrevenanceTheme
Theme URI: https://prevenance.com.au/
Author: Design Point
Author URI: https://designpoint.com.au/
Description: Custom WordPress theme for Prevenance built with ACF Pro.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: prevenance
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  scroll-behavior: smooth;
}

.prevenance-home-body-bg{
  position: relative;
  overflow: hidden;
  background-color: #091525;
  background-image: url('assets/images/body-bg-right.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}


@media (min-width: 320px) and (max-width: 767px){

    .prev-home-scroll-up{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 238, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(13, 242, 242, 0.18) 0%, rgba(11, 21, 33, 0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.prev-home-scroll-up.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.prev-home-scroll-up img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}
}

@media (min-width: 768px){
  .prev-home-scroll-up{
    display: none !important;
  }
}
