/*
========================
Header area start
========================
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {	
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: orange;
}

::-webkit-selection {
    color: white; 
    background: orange;
}

::-moz-selection {
    color: white; 
    background: orange;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);   
}


/*---- mobileheader-area start ----*/
.mobileheader-area {
    background-color: #081724;
    padding: 15px 0;
    display: none;
}

.navbar {
    padding: 0px;
}

.navbar-brand p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin: 0;    
}

.main-menu-part ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu-part ul li {
    float: left;
}

.main-menu-part ul li a { 
    color: #fff;
    display: block;
    padding: 0px 5px 0px 15px;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 15px;
    color: #202020;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.main-menu-part ul li a:hover {
    color: #ffeb3b;
}

.hamburger {
  padding: 10px 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; 
  outline: 0px!important;
}

.hamburger:hover {
    opacity: 1; 
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; 
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}


/*--- header-area start ---*/
.header-area {
    background: #fff;
    padding: 25px 0;
}

.header-area .container {
    max-width: 1300px;
    display: block;
    margin: auto;
}

.header-left p {
    font-family: 'Roboto', sans-serif;
    color: #f17b1b;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

.header-inner ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
    padding-left: 34px;
}

.header-inner ul li {
    display: inline-block;
    margin: 0 24px;
}

.header-inner ul li a {
    font-family: 'Roboto', sans-serif;
    color: #242424;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: 0.2s all ease;
}

.header-inner ul li a:hover {
     color: #f17b1b;   
}


.header-right ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    float: right;
}

.header-right ul li {
    float: left;
    margin-left: 40px; 
}

.header-right ul li a img {
    max-width: 100%;
    display: block;   
}


/*--- heroinner-area start ---*/
.heroinner-area {
   background-image: url('https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/bg-blinds.png');
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   padding: 93px 0;
}

.heroinner-part h2 {
    font-family: inherit;
    color: #fff;
    font-size: 81px;
    font-weight: 600;
    text-align: center;
    margin: 0;  
}


/*--- hdhero-area start ---*/
.hdhero-area {
    background: #fff;
    padding: 25px 0;
}

.hdhero-area .container {
    max-width: 1300px;
    display: block;
    margin: auto;
}

.hdhero-left img {
    width: 100px;
    height: 116px;
    display: block;
    margin: auto;
    margin-top: 35px;
    position: relative;
    z-index: 99999;
}

.hdhero-left1 {
    background-color: rgb(255, 255, 255,0.9);
    height:auto;
    width: max-content;
    position: relative;
    z-index: 999999;
    padding: 73px 0;
    position: relative;
}

.hdhero-left1:after {
    content: "";
    display: block;
    background: rgb(165, 168, 162,0.7);
    width: 57%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: -9999;
    right: 0;
    filter: blur(40px);
}

.hdhero-left1 h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 70px;
    font-weight: bold;
    margin: 0;
    line-height: 70px;
    padding-bottom: 10px;    
}
.hdhero-left1 h2 span{
    font-weight: 600;
    font-size: 3rem;
    color: #111;
}

.hdhero-left1 p {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;    
}
.hdhero-right{
    border-radius: 20px;
    position: relative;
}

.hdhero-right img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 20px;
}


/* I. GENERAL STYLES */

.container111 {
  padding: 0px 0;
  position: relative;
}


.slide {
  position: relative;
  width: 100%;
  height: 75%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slide-toggle-container {
    color: #fff;
    font-size: 29px;
    width: 104px;
    height: 104px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(241 123 27 / 80%);
    position: absolute;
    bottom: 0;
    /* border-bottom-right-radius: 20px; */
}

.slide-toggle {
  margin: .5em;
  cursor: pointer;
}


.index11 {
    top: 0;
    width: 0%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -36px;
}


/* II. SLIDE 1 STYLES */


.slide-1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.slide-1 .slide-toggle-container{
    right: 0 !important;
    border-bottom-right-radius: 20px;
  }
.slide-1 .hdhero-left{
    position:absolute;
    left:0px;
  }
.vertical-line {
  position: relative;
  width: 2px;
  height: 25%;
  background-color: rgba(0,0,0,.2);
}


/* I. SLIDE 2 STYLES */


.slide-2 {
  position: relative;
  width: 100%;
  height: auto;
  display: grid;
  justify-content: start;
  align-items: center;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
}
.slide-2 .slide-toggle-container{
    left: 0 !important;
    border-bottom-left-radius: 20px;
  }
.slide-2 .hdhero-left{
    position:absolute;
    right:0px;
  }

.vertical-line-container {
  grid-column: 1 / span 3;
  position: relative;
  height: 25vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.vertical-line-container > .vertical-line {
  width: 2px;
  position: relative;
  height: 75%;
  background-color: rgba(0,0,0,.2);
}


/* IV. SLIDE 3 STYLES */

.slide-3 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.slide-3 .slide-toggle-container{
    right: 0 !important;
    border-bottom-right-radius: 20px;
  }
.slide-3 .hdhero-left{
    position:absolute;
    left:0px;
  }

.slide-4 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.slide-4 .hdhero-left{
    position:absolute;
    right:0px;
  }
  .slide-4 .slide-toggle-container{
    left: 0 !important;
    border-bottom-left-radius: 20px;
  }
.slide-5 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.slide-6 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*--- hrsc-area start ---*/
.hrsc-area {
    padding: 90px 0;
    background-color: #fff;
}

.hrsc-part1 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/small-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 55px 15px;
    border-radius: 5px; 
}

.hrsc-part2 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/small-bg2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 55px 15px;
    border-radius: 5px; 
}

.hrsc-part3 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/small-bg3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 55px 15px;
    border-radius: 5px; 
}



.hrsc-parta1 {
    background-color: rgb(36, 77, 77,0.5);
    width: 273px;
    height: 349px;
    border-radius: 3px;
    text-align: center;
    display: block;
    margin: auto;
    padding: 20px 0;
    position: relative;
}


.hrsc-parta1 h3 {
    font-family: inherit;
    color: #FFFFFF;
    font-size: 40px;
    text-align: center;
    line-height: 56px;
    margin: 0;
    padding-bottom: 25px;
    padding-top: 5px;
}

.hrsc-parta1 ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

.hrsc-parta1 ul li {
    display: block;
    margin-bottom: 15px;
}

.hrsc-parta1 ul li a {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    width: 139.29px;
    height: 45px;
    line-height: 45px;
    display: block;
    background: #f17b1b;
    border-radius: 3px;
    text-align: center;
    margin: auto;
    transition: 0.2s all ease;
}

.hrsc-parta1 ul li a:hover {
    background-color: orange;
}


.hrsc-parta1 ul li:nth-child(3) a {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    width: 139.29px;
    height: 45px;
    line-height: 45px;
    display: block;
    background: none;
    border-radius: 3px;
    text-align: center;
    margin: auto;
    transition: 0.2s all ease;
    border: 1px solid #fff;
}

.hrsc-parta1 ul li:nth-child(3) a:hover {
    background-color: orange;
    border: 1px solid orange;
}

/*--- mainpsct-area start---*/
.mainpsct-area {
    background-color: #fff;
    padding: 70px 0;
}

.mainpsct-area1 {
    padding: 90px 0;
}

.psct-area {
    background-color: #fff;
    padding: 15px 0;
}

.psct-left h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 25px;
}

.psct-left1 {

}

.psct-left1 ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.psct-left1 ul li {
    display: block;
}

.psct-left1 ul li a {
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    background-color: #f1f1f1;
    display: block;
    padding: 20px 25px;
    border: 1px solid #283050;
    transition: 0.2s all ease;
}

.psct-left1 ul li a:hover {
    background-color: #f17b1b;
    color: #fff; 
    border: 1px solid #f17b1b; 
}


.psct-left1 ul li.active a {
    background-color: #f17b1b;
    color: #fff;
}

.psct-left1 ul li:first-child a {
    border-radius: 3px 3px 0px 0px;
}

.psct-left1 ul li:last-child a {
    border-radius: 0px 0px 3px 3px;
}



.psct-left1 ul li:last-child a,
.psct-left1 ul li:nth-child(2) a,
.psct-left1 ul li:nth-child(3) a {
    border-top: none;
}


.psct-left1 .ziehharmonikah3_a1 {
    background: #272e35;
    border-radius: 3px 3px 0px 0px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    background-color: #f1f1f1;
    display: block;
    padding: 20px 25px;
    border: 1px solid #aaa;
    border-bottom: none;
    transition: 0.2s all ease;  
}

.psct-left1 .ziehharmonikah3_a2 {
    background: #272e35;
    border-radius: 0px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    background-color: #f1f1f1;
    display: block;
    padding: 20px 25px;
    border: 1px solid #aaa;
    border-bottom: none;
    transition: 0.2s all ease;  
}


.psct-left1 .ziehharmonikah3_a3 {
    background: #272e35;
    border-radius: 0px 0px 3px 3px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    background-color: #f1f1f1;
    display: block;
    padding: 20px 25px;
    border: 1px solid #aaa;
    transition: 0.2s all ease;  
}

.psct-left1 .ziehharmonikah3_a3.active {
    border-radius: 0px;
}


.psct-left1 .ziehharmonikapp1 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px;
    cursor: pointer; 
}

.psct-left1 .ziehharmonikapp2 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px; 
    cursor: pointer;   
}


.psct-left1 .ziehharmonikapp3 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px;
    border-radius: 0px 0px 3px 3px;
    cursor: pointer;   
}



.psct-left1 .ziehharmonika h3.alignLeft {
    padding-left: 35px;
}


.psct-left1 .ziehharmonika > div {
    display: none;
    margin-bottom: 0px;
}


.psct-left1 .ziehharmonika .arrowDown {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #272e35 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    transition: 0.25s all;
    opacity: 0;
}


.psct-left1 .ziehharmonika .collapseIcon {
    position: absolute;
    right: 20px;
    top: 45%;
    font-size: 25px;
    font-weight: 300;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
}
.psct-left1 .ziehharmonika .collapseIcon.alignLeft {
    right: initial;
    left: 20px;
}

 .details-group {
     border: 1px solid #cfd8dc;
     border-radius: 5px;
     background-color: white;
}
 .details {
     border-bottom: 1px solid #cfd8dc;

}

 .details__summary {
    background: #272e35;
    border-radius: 3px 3px 0px 0px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    background-color: #f1f1f1;
    display: block;
    padding: 20px 25px;
    border: 1px solid #aaa;
    transition: color 300ms ease-in-out;
}

.details__summary4 {
    border-radius: 0px 0px 3px 3px;
    border-bottom: 1px solid #aaa;    
}

.details__summary3 {
    border-bottom: 0px;
    border-radius: 0px;
}

.details__summary2 {
    border-bottom: 0px;
    border-radius: 0px;
}


 [open] > .details__summary1 {
    border-bottom: none;
}


 [open] > .details__summary4 {
    border-bottom: none;
}


 .details__content {
     padding-top: 0;
     padding-left: 0px;
}
 

.maindetails-lefta {
    border: 1px solid #7e8296;
    border-radius: 3px;
    background-color: #fff;
}

.maindetails {
    border: 1px solid #7e8296;
    padding: 15px 25px;
    border-bottom: 0px;
    border-right: 0;
    border-left: 0;
}

.maindetails-left1 input[type="text"] {
    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 15px;
    width: 100%;
    padding: 11px 11px;
    border: none;
    border-bottom: 1px solid #7e8296;
    border-right: 1px solid #7e8296;
    border-radius: 3px 0px 0px 0px;
    outline: none;
    text-align: center;
}

.maindetails-left1 input[type="text"]::placeholder {
   font-family: 'Roboto', sans-serif;
   color: #283050;
   font-size: 15px;    
   font-weight: 400;
   text-align: center;
}

.maindetails-left1 p {
    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 15px;
    background-color: #f1f1f1;
    margin: 0;
    padding: 11px 11px;
    text-align: center;
    border-right: 1px solid #7e8296;
}

.maindetails-left2 input[type="text"] {
    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 15px;
    width: 100%;
    padding: 11px 11px;
    border: none;
    border-bottom: 1px solid #7e8296;
    border-radius: 3px 0px 0px 0px;
    outline: none;
    text-align: center;
}

.maindetails-left2 input[type="text"]::placeholder {
   font-family: 'Roboto', sans-serif;
   color: #283050;
   font-size: 15px;    
   font-weight: 400;
   text-align: center;
}

.maindetails-left2 p {
    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 15px;
    background-color: #f1f1f1;
    margin: 0;
    padding: 11px 11px;
    text-align: center;
}

.maindetails-right {
    text-align: center;
}

.maindetails-right a {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 20px;
    background-color: #f17b1b;
    width: 139.29px;
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    font-weight: 500;
    margin: auto;
    transition: 0.2s all ease;
}

.maindetails-right a:hover {
    background-color: #000000;
    color: #fff;
}


.psct-right2 {
    display: none;
}


.psct-right3 {
    display: none;
}



.accordion {
  width: 100%;
}
.accordion__panel {
  background-color: #fff;
  border: 1px solid #aaa;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
  outline: none;
}
.accordion__panel:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion__panel:not(:first-of-type) {
  border-top: 0;
}
.accordion__panel:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion__btn {
    color: #283050;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    outline: none;
    align-items: center;
    padding: 20px 25px;
    width: 100%;
    border: none;
    background: #f1f1f1;
}

.accordion__content {
  display: none;
  margin-top: -1px;
  transition: height 0.35s ease-in-out;
  overflow: hidden;
}
.is-active .accordion__content {
  display: block;
}

.accordion__heading button {
    outline: none;
}


/*--- hiwks-area start ---*/
.hiwks-area {
    background-color: #fff;  
    /* padding: 80px 0; */
    padding-top: 100px;
}

.hiwks-top h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    margin: 0;
    padding-bottom: 80px;   
}

.heroinner-part {
    position: relative;
}

.heroinner-part img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.heroinner-part h3 {
    font-family: 'Roboto', sans-serif;
    color: #111;
    font-size: 25px;
    text-align: center;
    margin: 0;
    padding-bottom: 15px;
    padding-top: 15px;   
    font-weight:500;
}

.heroinner-part p {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 16px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 26px;    
}


.images_a1 {
    position: absolute;
    top: 50px;
    right: -119px;
}


/*--- toppsct-area start---*/
.toppsct-area {
    padding: 15px 0;
}

.toppsct-part form {
    width: 100%;
    display: block;
    margin: auto;
    position: relative;
}

.toppsct-part form input[type="text"] {

    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    padding: 10px 20px;
    border-radius: 3px;
    border: 1px solid #aaa;
    outline: none;
    padding-right: 55px;
}

.toppsct-part form input[type="text"]::placeholder {
   font-family: 'Roboto', sans-serif;
   color: #9397a7; 
   font-size: 20px;  
   font-weight: 400;
   text-transform: capitalize;

}

.toppsct-part form i {
    color: #909090;
    font-size: 23px;
    position: absolute;
    right: 26px;
    top: 16px;
    cursor: pointer;
    transition: 0.2s all ease;
}

.toppsct-part form i:hover {
    color: #f17b1b;
}



/*--- diningroom-area start---*/
.diningroom-area {
    background-color: #fff;
    padding: 80px 0;
}


.diningroom-part {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/bg-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 126px 0;
}




.diningroom-inner {
    background-color: rgb(36, 77, 77,0.5);
    width: 570px;
    height: 349px;
    border-radius: 3px;
    text-align: center;
    display: block;
    margin: auto;
    padding: 45px 0;
    position: relative;
}

.diningroom-inner:after {
    content: "";
    display: block;
    position: absolute;
}


.diningroom-inner h2 {
    font-family: inherit;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 36px;
    line-height: 75px;  
}

.diningroom-inner ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

.diningroom-inner ul li {
    display: inline-block;
    margin: 0 12px;
}


.diningroom-inner ul li:nth-child(1) a {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 140.76px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #fff;
    transition: 0.2s all ease;
}

.diningroom-inner ul li:nth-child(1) a:hover {
    background-color: #f17b1b;
    border: 1px solid #f17b1b;
}


.diningroom-inner ul li:nth-child(2) a {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background-color: #f17b1b;
    width: 140.76px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #f17b1b;
    transition: 0.2s all ease;
}

.diningroom-inner ul li:nth-child(2) a:hover {
    background-color: orange;
    border: 1px solid orange;
}


.maindiningroom {
    position: relative;
}


.customNextBtn_a1 img {
    display: block;
    position: absolute;
    top: 43%;
    left: 30px;
    z-index: 99999;
    cursor: pointer;
    max-width: 100%;

}

.customPrevBtn_a1 img {
    display: block;
    position: absolute;
    top: 43%;
    right: 30px;
    z-index: 99999;
    cursor: pointer;
    max-width: 100%;
}


.diningroom-area .owl-dots {
    text-align: center;
    position: relative;
    top: -35px;
}

.diningroom-area .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: #fff;
    color: inherit;
    width: 8px;
    height: 8px;
    border: none;
    padding: 0 !important;
    font: inherit;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.5;
    outline: none;
}

.diningroom-area  .owl-carousel button.owl-dot.active {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #fff;
}



/*--- customdiybi-area start---*/
.customdiybi-area {
    background-color: #fff;
    padding: 90px 0;
    padding-top: 10px;
}

.topcustomdiybi {
    padding-bottom: 65px;
}

.topcustomdiybi h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    text-align: left;
    font-weight: bold;
    margin: 0;
    padding-bottom: 0px;
    line-height: 60px;
}

.topcustomdiybi p {
    font-family: 'Roboto', sans-serif;
    color: #f17b1b;
    font-size: 15px;
    text-align: center;
    font-weight: 400;  
}


.customdiybi-part1 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part1:hover .ccustomdiybi-part1 {
    display: block;
}

.ccustomdiybi-part1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 90px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part1 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part2 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part2:hover .ccustomdiybi-part2 {
    display: block;
}

.ccustomdiybi-part2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 90px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part2 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part3 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part3:hover .ccustomdiybi-part3 {
    display: block;
}

.ccustomdiybi-part3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 229px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part3 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part4 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part4:hover .ccustomdiybi-part4 {
    display: block;
}

.ccustomdiybi-part4 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 90px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part4 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part5 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part5:hover .ccustomdiybi-part5 {
    display: block;
}

.ccustomdiybi-part5 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 90px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part5 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part6 {
    position: relative;
    cursor: pointer;
}

.customdiybi-part6:hover .ccustomdiybi-part6 {
    display: block;
}

.ccustomdiybi-part6 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    padding: 90px 15px;
    text-align: center;
    display: none;
    border-radius: 5px;
}

.ccustomdiybi-part6 p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 12px;
    margin: 0;

}



.customdiybi-part1 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 237px;
}

.customdiybi-part2 {
    margin-top: 25px;    
}

.customdiybi-part2 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 237px;
}


.customdiybi-part3 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 499px;
}

.customdiybi-part4 {
    margin-bottom: 25px;
}

.customdiybi-part4 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 237px;
}

.customdiybi-part5 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 237px;
}

.customdiybi-part6 img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 5px;
    height: 237px;
}


/*--- blog-area start---*/
.blog-area  {
    background-color: #fff;
    padding: 90px 0;
    padding-top: 50px;
}

.blog-top h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 60px;
    margin: 0;    
}


.blog-part1 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/bg-3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 25px;
    border-radius: 5px;
    height: 250px;
}

.blog-part2 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/bg-4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 25px;
    border-radius: 5px;
    height: 250px;
}


.blog-part3 {
    background-image: url(https://ecommerce.blinq.com.au/gpl-62b2b934ae8ff/images/uploads/images/bg-5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 25px;
    border-radius: 5px;
    height: 250px;
}

.blog-part p {
    color: #FFFFFF;
    font-size: 15px;
    margin: 0;
    padding-bottom: 10px;    
}

.blog-part h4 {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    margin: 0;
    line-height: 30px;    
}

.blog-part h3 {
    margin: 0;
    padding-top: 73px;    
}

.blog-part h3 a {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;  
}


.span_a1 {
   margin-left: 5px;
}

.span_a2 {
    float: right;
    padding-top: 17px;
    font-size: 14px;     
}


.blog-area .owl-dots {
    text-align: center;
    position: relative;
    top: 15px;
}

.blog-area .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: #aaa;
    color: inherit;
    width: 8px;
    height: 8px;
    border: none;
    padding: 0 !important;
    font: inherit;
    border-radius: 50%;
    margin: 0 4px;
    outline: none;
}

.blog-area .owl-carousel button.owl-dot.active {
    width: 10px;
    height: 10px;
    background: #f17b1b;
}


/*--- faq-area start---*/
.faq-area  {
    background-color: #fff;
    padding: 90px 0;
    padding-top: 50px;
}

.faq-top h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 50px;
    margin: 0;    
}


.faq-part .ziehharmonika h3 {
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    color: #283050;
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    display: block;
    padding: 20px 32px;
    transition: 0.2s all ease;
    border-bottom: dashed 2px #283050;
    padding-left: 0;
}


.faq-part .ziehharmonika h3.active {   
 border-bottom: none;
}

.faq-part .ziehharmonika p {
    font-family: 'Roboto', sans-serif;
    color: #283050;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    border-bottom: dotted 2px #283050;
    padding-bottom: 7px;
}


.faq-part .ziehharmonikapp1 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px;
    cursor: pointer; 
}

.faq-part .ziehharmonikapp2 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px; 
    cursor: pointer;   
}


.faq-part .ziehharmonikapp3 {
    color: #fff;
    background-color: #f17b1b;
    padding: 20px 25px;
    margin: 0;
    font-size: 15px;
    border-radius: 0px 0px 3px 3px;
    cursor: pointer;   
}


.faq-part .ziehharmonika h3.alignLeft {
    padding-left: 35px;
}


.faq-part .ziehharmonika > div {
    display: none;
    margin-bottom: 0px;
}


.faq-part .ziehharmonika .arrowDown {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #272e35 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    transition: 0.25s all;
    opacity: 0;
}


.faq-part .ziehharmonika .collapseIcon {
    position: absolute;
    right: 0px;
    top: 51%;
    font-size: 25px;
    font-weight: 300;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.faq-part .ziehharmonika .collapseIcon.alignLeft {
    right: initial;
    left: 20px;
}


.faq-part .faq-h3 {
    border-bottom: none !important;
}


/*--- whys-area start---*/
.whys-area  {
    background-color: #fff;
    padding: 25px 0;
    padding-bottom: 165px;
}

.whys-top h2 {
    font-family: inherit;
    color: #f17b1b;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 80px;
    margin: 0;    
}

.whys-part h3 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 18px;
    text-align: center;
    margin: 0;
    font-weight: bold;
    padding-bottom: 15px;
}

.whys-part img {
    max-width: 100%;
    display: block;
    margin: auto;    
}

.whys-part h4 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding-top: 19px;
    padding-bottom: 13px;    
}


.whys-part p {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 14px;
    text-align: center;
    margin: 0;
    line-height: 25px; 
}


.whys-area .owl-dots {
    text-align: center;
    position: relative;
    top: 25px;
}

.whys-area .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: #aaa;
    color: inherit;
    width: 8px;
    height: 8px;
    border: none;
    padding: 0 !important;
    font: inherit;
    border-radius: 50%;
    margin: 0 4px;
    outline: none;
}

.whys-area .owl-carousel button.owl-dot.active {
    width: 10px;
    height: 10px;
    background: #f17b1b;
}


/*--- footer-area start---*/
.footer-area {
    background-color: #111;
    padding: 65px 0;
}


.footer-left h3 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 41px;

}

.footer-left p {
    font-family: 'Poppins', sans-serif;
    color: #EEEEEE;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    padding-bottom: 25px;  
}

.footer-left ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-left ul li {
    display: inline-block;
    padding-right: 27px;
}

.footer-left ul li a {
    color: #fff;
    font-size: 20px;
    display: block;
    transition: 0.2s all ease;
}

.footer-left ul li a:hover {
    color: #f17b1b;
}


.footer-inner h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 18px;
}


.footer-inner ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-inner ul li {
    display: block;
    padding-bottom: 16px;
}

.footer-inner ul li a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    transition: 0.2s all ease;  
}

.footer-inner ul li a:hover {
    color: #f17b1b;    
}


.footer-right h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 24px;
}


.footer-right ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-right ul li {
    display: block;
    padding-bottom: 16px;
}

.footer-right ul li img {
    max-width: 100%;
    display: block;
} 

.footer-right ul li p {
    margin-top: -22px;
    padding-left: 33px;
    margin-bottom: 0;
}

.footer-right ul li a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    transition: 0.2s all ease;  
}

.footer-right ul li a:hover {
    color: #f17b1b;    
}


/*--- last-area start---*/
.last-area {
    background-color: #f17b1b;
    padding: 18px 0;
    border-top: 1px solid #92a6a6;
}

.last-part p {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    margin: 0;
    font-weight: 400;    
}

.toppsct-part1 img {
    max-width: 100%;
    display: block;

}


.item1 {
    display: none;
}

.hdhero-left1 small{
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: #111;
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 20px;
    font-size: .725em;
    display: block;
}