html{
  scroll-behavior: smooth;
}

body.theme-black{
  background: #040404 url(https://www.ipd.com.au/images/delta/bg.jpg) bottom center no-repeat;
  background-size: cover;
  color: #e4e4e4;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
/* Product landing page */
body.full-width-page div#cv-zone-pagecontent {
  max-width: 100%;
  margin: auto;
}

/*---------- grid -----------------------------*/
.product-landing-page .row{
  --bs-gutter-x: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.product-landing-page .row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  box-sizing: border-box;
}

.grid .product-landing-page [class*="col-"]:last-of-type{
  padding-right: calc(var(--bs-gutter-x) * .5);
}

.product-landing-page .col-12{
  flex: 0 0 auto;
  width: 100%;
}

.product-landing-page .justify-content-center {
  justify-content: center!important;
}

.product-landing-page .text-center{
  text-align: center !important;
}

.product-landing-page h2.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

.product-landing-page h3 {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 30px;
}

.product-landing-page .container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (min-width: 576px){
  .product-landing-page .container{
      max-width: 540px;
  }
}

@media(min-width:768px) {
  .product-landing-page .container{
      max-width: 720px;
  } 

  .product-landing-page .col-md-3 {
      flex: 0 0 auto;
      width: 25%;
  }

  .product-landing-page .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }

  .product-landing-page .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
  }

  .product-landing-page .col-md-6{
      flex: 0 0 auto;
      width: 50%;
  }

  .product-landing-page .col-md-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
  }

  .product-landing-page .col-md-12 {
      flex: 0 0 auto;
      width: 100%;
  }
}

@media(min-width:1024px) {
  .product-landing-page .container{
      max-width: 960px;
  }

  .product-landing-page .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
  }

  .product-landing-page .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }

  .product-landing-page .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
  }

  .product-landing-page .col-lg-8 {
      flex: 0 0 auto;
      width: 66.66666%;
  }
}


@media(min-width:1366px) {
  .product-landing-page .container{
      max-width: 1140px;
  }

  .product-landing-page .col-xl-2 {
      flex: 0 0 auto;
      width: 20%;
  }

  .product-landing-page .col-xl-3 {
      flex: 0 0 auto;
      width: 25%;
  }

  .product-landing-page .col-xl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }

  .product-landing-page .col-xl-6 {
      flex: 0 0 auto;
      width: 50%;
  }

  .product-landing-page .col-xl-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
  }
}

@media(min-width:1400px) {
  .product-landing-page .container{
      max-width: 1320px;
  }
}

/* ------------end grid------------------- */
.product-landing-page section{
  margin-bottom: 100px;
}

.product-landing-page a{
  color: #ED402F;
  transition: all 0.3s linear;
}

.product-landing-page a:hover{
  color: #ff8f8f;
}

.product-landing-page .btn{
  border: 3px solid #ED402F;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #ED402F;
}

.product-landing-page .primary-btn{
  font-size: 1.125em;
  padding: 12px 30px;
  border-radius: 50px;
}

.product-landing-page .secondary-btn {
  font-size: 0.85em;
  padding: 5px 30px;
  border-radius: 50px;
  background-size: 400px;
}

.product-landing-page img{
  width: 100%;
}

.product-landing-page h1{
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #f5f5f5;
  text-align: left;
}

.product-landing-page h2{
  /* font-size: 2.8em; */
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 50px;
  color: #dbdbdb;
}

.product-landing-page h3{
  font-size: 1.43em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 30px;
  color: #f5f5f5;
}

/* banner */
#main-banner{
  width: 100%;
  overflow: hidden;
  position: relative;
}

#main-banner:after{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 0;
  pointer-events: none;
}

#main-banner img{
  width: 100%;
  /* height: calc(100vh - 145px); */
  height: calc(100vh - 96px);
  object-position: center;
  object-position: 85% center;
  object-fit: cover;
}

#main-banner .caption{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}

#main-banner .caption-text {
  /* width: 60%; */
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

#main-banner .caption-text h2 {
  font-size: 1.2em;
  font-weight: 700;
  box-sizing: border-box;
  color: #ED402F;
  margin: 0;
}

.fogwrapper {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
  filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: -999;
  transition-delay: 0.5s;
}

#product-feature.aos-init .fogwrapper{
  opacity: 0.3;
  
}

#foglayer_01, #foglayer_02, #foglayer_03 {
  height: 100%;
  position: absolute;
  width: 200%;
}
#foglayer_01 .image01, #foglayer_01 .image02,
#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02 {
  float: left;
  height: 100%;
  width: 50%;
}
#foglayer_01 {
  -webkit-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  -moz-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
}
#foglayer_02, #foglayer_03 {
  -webkit-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  -moz-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
}

#foglayer_01 .image01, #foglayer_01 .image02 {
  background: url("https://www.ipd.com.au/images/delta/fog1.png") center center/cover no-repeat transparent;
}
#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02{
  background: url("https://www.ipd.com.au/images/delta/fog2.png") center center/cover no-repeat transparent;
}

/* ---------- Keyframe Layer 1 ---------- */
@-webkit-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@-moz-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@-o-keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
@keyframes foglayer_01_opacity {
  0% { opacity: .1; }
  22% { opacity: .5; }
  40% { opacity: .28; }
  58% { opacity: .4; }
  80% { opacity: .16; }
  100% { opacity: .1; }
}
/* ---------- Keyframe Layer 2 ---------- */
@-webkit-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@-moz-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@-o-keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
@keyframes foglayer_02_opacity {
  0% { opacity: .5; }
  25% { opacity: .2; }
  50% { opacity: .1; }
  80% { opacity: .3; }
  100% { opacity: .5; }
}
/* ---------- Keyframe Layer 3 ---------- */
@-webkit-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@-moz-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@-o-keyframes foglayer_03_opacity {
  0% { opacity: .8 }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
@keyframes foglayer_03_opacity {
  0% { opacity: .8; }
  27% { opacity: .2; }
  52% { opacity: .6; }
  68% { opacity: .3; }
  100% { opacity: .8; }
}
/* ---------- Keyframe moveMe ---------- */
@-webkit-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@-moz-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@-o-keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}
@keyframes foglayer_moveme {
  0% { left: 0; }
  100% { left: -100%; }
}

@media only screen
  and (min-width: 280px)
  and (max-width: 767px) {
    #foglayer_01 .image01, #foglayer_01 .image02,
    #foglayer_02 .image01, #foglayer_02 .image02,
    #foglayer_03 .image01, #foglayer_03 .image02 {
      width: 100%;
    }
  }

.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 125px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  zoom: 0.8;
  cursor: pointer;
}


.m_scroll_arrows
{
display: block;
width: 5px;
height: 5px;
-ms-transform: rotate(45deg); /* IE 9 */
-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
transform: rotate(45deg); 
border-right: 2px solid #f8f8f8;
border-bottom: 2px solid #f8f8f8;
margin: 0 0 3px 4px;
width: 17px;
height: 17px;
}


.unu
{
margin-top: 1px;
}

.unu, .doi, .trei
{
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;

}

.unu
{
-webkit-animation-delay: .1s;
-moz-animation-delay: .1s;
-webkit-animation-direction: alternate;

animation-direction: alternate;
animation-delay: alternate;
}

.doi
{
-webkit-animation-delay: .2s;
-moz-animation-delay: .2s;
-webkit-animation-direction: alternate;

animation-delay: .2s;
animation-direction: alternate;

margin-top: -6px;
}

.trei
{
-webkit-animation-delay: .3s;
-moz-animation-delay: .3s;
-webkit-animation-direction: alternate;

animation-delay: .3s;
animation-direction: alternate;


margin-top: -6px;
}

.mouse {
height: 42px;
width: 24px;
border-radius: 14px;
transform: none;
border: 2px solid #f8f8f8;
top: 170px;
}

.wheel {
height: 5px;
width: 2px;
display: block;
margin: 5px auto;
background: #f8f8f8;
position: relative;

height: 4px;
width: 4px;
border: 2px solid #f8f8f8;
-webkit-border-radius: 8px;
  border-radius: 8px;
}

.wheel {
-webkit-animation: mouse-wheel 0.6s linear infinite;
-moz-animation: mouse-wheel 0.6s linear infinite;
animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
 0% {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

100% {
  opacity: 0;
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}
}
@-moz-keyframes mouse-wheel {
0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

 0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}
@keyframes mouse-wheel {

 0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

0%   { opacity: 0;}
50%  { opacity: .5;}
100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

0%   { opacity: 0; }
50%  { opacity: .5; }
100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

0%   { opacity: 0; }
50%  { opacity: .5; }
100% { opacity: 1; }
}
@keyframes mouse-scroll {

0%   { opacity: 0; }
50%  { opacity: .5; }
100% { opacity: 1; }
}

#main-content{
  margin-bottom: 0;
}

#product-feature{
  padding: 100px 0;
  margin-bottom: 0;
  overflow: hidden;
}


#product-feature h2 {
  max-width: 1035px;
  margin: 0 auto 60px;
}

#product-feature  .product-image svg{
  width: 100%;
  height: auto;
  display: block;
}

#product-feature  .product-image .circle{
  cursor: pointer;
}


@keyframes flickerAnimation {
  0%   { opacity:0.5; }
  50%  { opacity:0; }
  100% { opacity:0.5; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:0.5; }
  50%  { opacity:0; }
  100% { opacity:0.5; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:0.5; }
  50%  { opacity:0; }
  100% { opacity:0.5; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:0.5; }
  50%  { opacity:0; }
  100% { opacity:0.5; }
}
#product-feature .product-image .circle > g ellipse{
   -webkit-animation: flickerAnimation 3s infinite;
   -moz-animation: flickerAnimation 3s infinite;
   -o-animation: flickerAnimation 3s infinite;
    animation: flickerAnimation 3s infinite;
}

.feature-image-wrapper {
  width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
}

.feature-image-wrapper .product-image{
  width: 70%;
  margin:0 auto;
  position: relative;
}

.feature-image-wrapper .feature-text{
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
  z-index:1;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.feature-image-wrapper .feature-text li{
  width: 40%;
  position:absolute;
  z-index:-10;
  list-style: none;
  pointer-events: none;
  transition: ease all 0.5s;
  padding-right: 155px;
  box-sizing: border-box;
  text-align: right;
}

.feature-image-wrapper .feature-text li span.mobile{
  display: none;
}

.feature-image-wrapper .feature-text-mobile{
  padding-left: 20px;
}

.feature-image-wrapper .feature-text-mobile li{
  margin-bottom: 10px;
}

.feature-image-wrapper .feature-text li.active{
  z-index:1;
}

.feature-image-wrapper .feature-text li:before{
  content:'';
  position:absolute;
  background:#ED402F;
  height:1px;
  width:0px;
  transition: ease all 0.5s;
  transition-delay: 0.3s;
  top: 50%;
  margin-top: 1px;
  right: 0;
}

.feature-image-wrapper .feature-text li.Group_1{
  top: 159px;
  left: 20%;
  opacity: 0;
  width: 41.8%;
  padding-right: 203px;
}

.feature-image-wrapper .feature-text li.Group_1.active{
  left:0;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_1:before{
  width: 0;
}

.feature-image-wrapper .feature-text li.Group_1.active:before{
  width: 192px;
}

.feature-image-wrapper .feature-text li.Group_2{
  top: 232px;
  left: 20%;
  opacity: 0;
  width: 43.8%;
  padding-right: 226px;
}

.feature-image-wrapper .feature-text li.Group_2.active{
  left:0;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_2:before{
  width: 0;
}

.feature-image-wrapper .feature-text li.Group_2.active:before{
  width: 216px;
}

.feature-image-wrapper .feature-text li.Group_3{
  top: 314px;
  left: 20%;
  opacity: 0;
  width: 40.4%;
  padding-right: 184px;
}

.feature-image-wrapper .feature-text li.Group_3.active{
  left:0;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_3:before{
  width: 0;
}

.feature-image-wrapper .feature-text li.Group_3.active:before{
  width: 176px;
}

.feature-image-wrapper .feature-text li.Group_4{
  top: 53px;
  right: 0;
  text-align: left;
  padding-right: 0;
  padding-left: 155px;
  opacity: 0;
  padding: 5px;
  width: 48.3%;
  padding-left: 82px;
}

.feature-image-wrapper .feature-text li.Group_4.active{
  top: 53px;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_4:before{
  left: 56px;
  width: 1px;
  bottom: -69px;
  height: 0px;
  transform: rotate(38deg);
  top: auto;
}

.feature-image-wrapper .feature-text li.Group_4.active:before{
  height: 86px;
}

.feature-image-wrapper .feature-text li.Group_5{
  top: 217px;
  right: 20%;
  text-align: left;
  padding-right: 0;
  padding-left: 155px;
  opacity: 0;
  width: 32.8%;
}

.feature-image-wrapper .feature-text li.Group_5.active{
  right:0;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_5:before{
  left: 0;
  width: 0px;
}

.feature-image-wrapper .feature-text li.Group_5.active:before{
  width: 150px;
}

.feature-image-wrapper .feature-text li.Group_6{
  top: 309px;
  right: 20%;
  text-align: left;
  padding-right: 0px;
  padding-left: 210px;
  opacity: 0;
  width: 36.8%;
}

.feature-image-wrapper .feature-text li.Group_6.active{
  right:0;
  opacity: 1;
  z-index: 1;
}

.feature-image-wrapper .feature-text li.Group_6:before{
  left: 0;
  width: 0px;
}

.feature-image-wrapper .feature-text li.Group_6.active:before{
  width: 202px;
}

#product-feature .download {
  margin: 0 auto;
  display: block;
  width: 280px;
  text-align: center;
}

.feature-image-wrapper .feature-text-mobile{
  display: none;
}

#services .content-wrapper {
  background: rgb(129,129,129);
  background: linear-gradient(180deg, rgba(129,129,129,1) 0%, rgba(0,0,0,1) 60%);
  margin-top: -10px;
  padding: 30px;
  box-sizing: border-box;
}

#product-slider .image-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0;
}

#product-slider .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

#product-slider .content-wrapper{
  padding:30px;
}

#product-slider .slick-slide{
  height: 100%;
}

#product-slider .slick-slide > div{
  height: 100%;
}

#product-slider .content-wrapper a {
  float: right;
  margin-top: 20px;
}

#product-slider .items-wrapper{
  width: 100%;
  margin: 0;
}

#product-slider .items-wrapper .item{
  padding: 0 10px;
  box-sizing: border-box;
  height: 100%;
}

#product-slider .items-wrapper .item h3{
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: #ED402F solid 1px;
}

#product-slider .items-wrapper .item .inner-wrapper{
  width: 100%;
  overflow: hidden;
  height: 100%;
}

#product-slider .items-wrapper .item .inner-wrapper > .row{
  background: rgb(75,75,75);
  background: linear-gradient(234deg, rgba(75,75,75,1) 0%, rgba(0,0,0,1) 30%);
  height: 100%;
}

#product-slider .slick-initialized .slick-slide{
  filter: blur(5px);
  opacity: 0.5;
  transition: all 0.5s ease;
}

#product-slider .slick-initialized .slick-slide.slick-active{
  filter: blur(0px);
  opacity: 1;
}

#product-slider .slick-initialized .slick-slide.slick-active .item .inner-wrapper{
  box-shadow: -1px -1px 20px rgba(0,0,0,0.3);
}

#services .service-item{
  margin-bottom: 30px;
}

#services .service-item:last-child{
  margin-bottom: 0;
}

#product-list .accordion-wrapper .acco_title{
  background: transparent url(https://www.ipd.com.au/images/delta/acc_bg.png) top left repeat-x;
  /* padding: 30px 0; */
  padding: 20px 0;
  cursor: pointer;
}

#product-list .accordion-wrapper .acco_title.active{
  pointer-events: none;
}

#product-list .accordion-wrapper .acco_title h4{
  /* font-size: 2em; */
  font-size: 1.3em;
  font-weight: 600;
  color: #ED402F;
  line-height: 1;
  margin: 0;
  padding: 0;
}

#product-list .accordion-wrapper .acc_content{
  padding: 30px 0;
  background:rgba(45,45,45,0.5);
  display: none;
}

#product-list .accordion-wrapper .acc_content .content-wrapper{
  padding-bottom: 30px;
  border-bottom:#ED402F solid 2px;
}

#product-list .accordion-wrapper .product-wrapper{
  align-self: center;
}

#product-list .accordion-wrapper .product-wrapper .products{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

#product-list .accordion-wrapper .product-wrapper .products li {
  list-style: none;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
  
}

#product-list .accordion-wrapper .product-wrapper .products li a{
  padding: 30px;
  box-sizing: border-box;
  display: block;
  position: relative;
  transition: all 0.5s ease;
}


#product-list .accordion-wrapper .product-wrapper .products li a:after {
  width: 0;
  height:1px;
  z-index: 1;
  content:'';
  position: absolute;
  bottom:0;
  left:50%;
  box-sizing: border-box;
  transition: all 0.5s ease;
  background-color:#ED402F;
  transform: translateX(-50%);
}

#product-list .accordion-wrapper .product-wrapper .products li a:hover:after {
   width: 50%;
}



#product-list .accordion-wrapper .product-wrapper .products li img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

#product-list .accordion-wrapper .product-wrapper .products li p{
  margin: 0;
  color: #fff;
  transition:all 0.5s ease;
}

#product-list .accordion-wrapper .product-wrapper .products li a:hover p{
color:#ED402F;
}

span.acc_icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  z-index: 1;
  pointer-events: none;
}

span.acc_icon span{
  background:#ED402F;
  width:100%;
  height:2px;
  position:absolute;
  top:50%;
  left:0;
  margin-top:-1px;
  transition: all 0.5s ease;
}

span.acc_icon span:nth-child(2){
  transform:rotate(90deg);
}

.active span.acc_icon span:nth-child(2){
  transform:rotate(0deg);
}

#inquiry-form .form-wrapper{
  width: 100%;
  overflow: hidden;
}

.bottom-text{
  margin-top: 60px;
}

@media(min-width:768px){
  .product-landing-page h1{
      font-size: 3em;
  }

  #main-banner .caption-text h2{
      font-size: 2.2em;
  }

  #product-list .accordion-wrapper .product-wrapper .products li{
      width: 25%;
  }
}

@media(min-width:1024px) {

  #main-banner:after{
      display: none;
  }

  #main-banner .caption-text{
      width: 80%;
  }

  .product-landing-page h1 {
      font-size: 3.3em;
      /* margin-bottom: 40px; */
  }

  .product-landing-page h2{
      font-size: 2.5em;
      margin-bottom: 50px;
  }

  .product-landing-page h3{
      font-size: 1.8em;
  }

  #main-banner img{
      height: calc(100vh - 145px);
  }

  #main-banner .caption-text h2{
      font-size: 2.8em;
  }

  #main-content p{
      font-size: 1.2em;
  }
  #product-list .accordion-wrapper .product-wrapper .products li {
      width: 25%;
  }

  #product-list .accordion-wrapper .acc_content .content-wrapper{
      padding-right: 30px;
      border-right:#ED402F solid 2px;
      padding-bottom: 0;
      border-bottom: 0;
  }

  #product-list .accordion-wrapper .acco_title{
      padding: 25px 0;
  }

  #product-list .accordion-wrapper .acco_title h4{
      font-size: 1.6em;
  }

  span.acc_icon{
      width: 25px;
      height: 25px;
  }

  #product-slider .image-wrapper img {
      height: 100%;
  }

  /* #inquiry-form .bottom-text{
      font-size: 1.2em;
  } */
}

@media(min-width:1280px){
  .product-landing-page .btn{
      background-image: -webkit-linear-gradient(30deg, #ED402F 50%, transparent 50%);
      background-image: linear-gradient(30deg, #ED402F 50%, transparent 50%);
      background-size: 700px;
      background-repeat: no-repeat;
      background-position: 0%;
      background-color: transparent;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out;
  }
  
  .product-landing-page .btn:hover{
      background-position: 100%;
      color: #ED402F;
  }

  .product-landing-page .btn.secondary-btn{
      background-size: 400px;
  }

  #product-slider .image-wrapper img{
    height:565px;
  }

  #product-slider .content-wrapper{
      padding: 40px;
  }

}

@media(min-width:1366px) {
  #main-banner .caption-text{
      width: 60%;
  }

  #inquiry-form .content-wrapper,
  #inquiry-form .form-wrapper{
      padding: 0 30px;
      box-sizing: border-box;
  }

  #product-slider .image-wrapper img {
    height: 500px;
  }
}

@media(min-width:1600px){
  #product-slider .image-wrapper img{
    height:615px;
  }

  #product-slider .content-wrapper{
    padding: 80px;
  }

  .product-landing-page h3{
      font-size: 2em;
  }
}

@media(min-width:1900px){
  #product-slider .image-wrapper img{
    height:520px;
  }
}

.page-delta #cv-zone-footer{
  background: #0b0b0b !important;
  border-top: #f8f8f8 solid 1px;
}

.page-delta #cv-zone-footer-after{
  background: #000000;
}



ul.slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
  margin-top: 30px;
}

ul.slick-dots li{
  margin:0 5px;
}

ul.slick-dots li button{
  border: #a9a9a9 solid 2px;
  width:20px;
  height:20px;
  overflow:hidden;
  text-indent:-999px;
  border-radius:20px;
  background:transparent;
  transition:all 0.5s ease;
}

ul.slick-dots li.slick-active button{
  background:#ED402F;
}

@media(max-width:1400px){
  .feature-image-wrapper {
      width: 1100px;
  }

  .feature-image-wrapper .feature-text li {
      width: 30%;
      padding-right: 70px;
      font-size: 0.85em;
  }

  .feature-image-wrapper .feature-text li.Group_1 {
      top: 142px;
      width: 41.8%;
      padding-right: 178px;
  }

  .feature-image-wrapper .feature-text li.Group_1.active:before {
      width: 173px;
  }

  .feature-image-wrapper .feature-text li.Group_2 {
      top: 203px;
      width: 43.8%;
      padding-right: 194px;
  }

  .feature-image-wrapper .feature-text li.Group_2.active::before {
      width: 188px;
  }

  .feature-image-wrapper .feature-text li.Group_3 {
      top: 273px;
      width: 40.5%;
      padding-right: 155px;
  }

  .feature-image-wrapper .feature-text li.Group_3.active::before {
      width: 150px;
  }

  .feature-image-wrapper .feature-text li.Group_4 {
      top: 108px;
      padding-left: 74px;
  }

  .feature-image-wrapper .feature-text li.Group_4:before{
    left: 50px;
    bottom: -57px;
  }

  .feature-image-wrapper .feature-text li.Group_4.active::before {
      width: 1px;
      height: 70px;
  }

  .feature-image-wrapper .feature-text li.Group_5 {
      top: 202px;
      padding-left: 70px;
      width: 32.8%;
  }

  .feature-image-wrapper .feature-text li.Group_5.active::before {
      width: 65px;
  }

  .feature-image-wrapper .feature-text li.Group_6 {
      top: 281px;
      padding-left: 117px;
      width: 36.8%;
  }

  .feature-image-wrapper .feature-text li.Group_6.active::before {
      width: 112px;
  }
}

@media(max-width:1280px){
  .feature-image-wrapper {
      width: 960px;
  }

  .feature-image-wrapper .product-image img {
      width: 70%;
      margin-left: 120px;
  }

  .feature-image-wrapper .product-image .image-pointers {
      top: 47px;
      width: 40%;
  }

  .feature-image-wrapper .feature-text li {
      width: 30%;
      padding-right: 70px;
      font-size: 0.85em;
  }

  .feature-image-wrapper .feature-text li.Group_1 {
      top: 130px;
      width: 41.6%;
  }

  .feature-image-wrapper .feature-text li.Group_1.active::before {
      width: 170px;
  }

  .feature-image-wrapper .feature-text li.Group_2 {
      top: 174px;
      width: 43.6%;
  }

  .feature-image-wrapper .feature-text li.Group_2.active::before {
      width: 186px;
  }

  .feature-image-wrapper .feature-text li.Group_3 {
      top: 243px;
  }

  .feature-image-wrapper .feature-text li.Group_3.active::before {
      width: 148px;
  }

  .feature-image-wrapper .feature-text li.Group_4 {
      top: 108px;
      padding-left: 28px;
      width: 44.4%;
  }

  .feature-image-wrapper .feature-text li.Group_4:before {
    left: 4px;
    bottom: -47px;
  }

  .feature-image-wrapper .feature-text li.Group_4.active::before {
      width: 1px;
      height: 64px;
  }

  .feature-image-wrapper .feature-text li.Group_5 {
      top: 182px;
      padding-left: 70px;
  }

  .feature-image-wrapper .feature-text li.Group_5.active::before {
      width: 65px;
  }

  .feature-image-wrapper .feature-text li.Group_6 {
      top: 251px;
      padding-left: 113px;
  }

  .feature-image-wrapper .feature-text li.Group_6.active::before {
      width: 106px;
  }
}

@media(max-width:1000px){
  .feature-image-wrapper .feature-text li span{
      display: none;
  }

  .feature-image-wrapper .feature-text li span.mobile{
      display: block;
  }

  .feature-image-wrapper {
      width: 700px;
  }

  .feature-image-wrapper .product-image img {
      width: 100%;
      margin-left: -21px;
  }

  .feature-image-wrapper .product-image .image-pointers {
      top: 47px;
      width: 52%;
  }

  .feature-image-wrapper .feature-text li.Group_1 {
    top: 108px;
    width: 41.6%;
    padding-right: 125px;
    opacity: 1;
    left: 0;
}

.feature-image-wrapper .feature-text li.Group_1::before {
    width: 120px;
}

.feature-image-wrapper .feature-text li.Group_2 {
    top: 148px;
    width: 43.6%;
    padding-right: 138px;
    opacity: 1;
    left: 0;
}

.feature-image-wrapper .feature-text li.Group_2::before {
    width: 132px;
}

.feature-image-wrapper .feature-text li.Group_3 {
    top: 197px;
    padding-right: 114px;
    opacity: 1;
    left: 0;
}

.feature-image-wrapper .feature-text li.Group_3::before {
    width: 106px;
}

.feature-image-wrapper .feature-text li.Group_4 {
    top: 52px;
    padding-left: 27px;
    width: 45.4%;
    opacity: 1;
    right: 0;
}

.feature-image-wrapper .feature-text li.Group_4::before {
    width: 1px;
    height: 41px;
    bottom: -26px;
    left: 9px;
}

.feature-image-wrapper .feature-text li.Group_5 {
    top: 146px;
    padding-left: 70px;
    opacity: 1;
    right: 0;
}

.feature-image-wrapper .feature-text li.Group_5::before {
    width: 65px;
}

.feature-image-wrapper .feature-text li.Group_6 {
    top: 204px;
    padding-left: 98px;
    opacity: 1;
    right: 0;
}

.feature-image-wrapper .feature-text li.Group_6::before {
    width: 94px;
}

  .feature-image-wrapper .feature-text-mobile{
      display: block;
   }
}

@media(max-width: 690px){
  .feature-image-wrapper {
      width: 280px;
      overflow: hidden;
  } 

  .feature-image-wrapper .product-image img {
      width: 100%;
      margin-left: -11px;
  }

  .feature-image-wrapper .product-image .image-pointers {
      top: 20px;
      width: 55%;
  }

  .feature-image-wrapper .feature-text li {
      width: 20%;
      padding-right: 40px;
      font-size: 0.85em;
  }

  .feature-image-wrapper .feature-text li:before {
      width: 35px;
      opacity: 1;
  }

  .feature-image-wrapper .feature-text li.Group_1 {
      top: 71px;
      padding-right: 60px;
  }

  .feature-image-wrapper .feature-text li.Group_1::before {
      width: 55px;
  }

  .feature-image-wrapper .feature-text li.Group_2 {
      top: 87px;
      width: 43%;
      padding-right: 63px;
  }

  .feature-image-wrapper .feature-text li.Group_2::before {
      width: 58px;
  }

  .feature-image-wrapper .feature-text li.Group_3 {
      top: 108px;
      padding-right: 55px;
  }

  .feature-image-wrapper .feature-text li.Group_3::before {
      width: 50px;
  }

  .feature-image-wrapper .feature-text li.Group_4 {
      top: 38px;
      padding-left: 18px;
  }

  .feature-image-wrapper .feature-text li.Group_4::before {
      width: 1px;
      height: 22px;
      bottom: -8px;
  }

  .feature-image-wrapper .feature-text li.Group_5 {
      top: 87px;
      padding-left: 40px;
  }

  .feature-image-wrapper .feature-text li.Group_5::before {
      width: 35px;
  }

  .feature-image-wrapper .feature-text li.Group_6 {
      top: 110px;
      padding-left: 51px;
  }

  .feature-image-wrapper .feature-text li.Group_6::before {
      width: 48px;
  }

  .feature-image-wrapper .feature-text-mobile{
      font-size: 0.85em;
      display: block;
  }
}

.page-delta-broucher #download-broucher .caption-text{
  background: url(https://www.ipd.com.au/images/delta/delta-ups-products.png) center no-repeat;
  background-size: contain;
  min-height: 250px;
  margin-top: 60px;
}

.page-delta-broucher #download-broucher .form-wrapper{
  padding: 40px 20px;
}

.page-delta-broucher #download-broucher .form-wrapper iframe{
  height: 610px;
}

.page-delta-broucher #download-broucher .learn-more h3{
  margin-bottom: 0;
}

body.theme-black.page-delta-broucher{
  background-position: center center;
}

.page-delta-broucher #download-broucher .learn-more .btn{
  display: inline-block;
  width: auto;
}