@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

html { font-family: 'Roboto', sans-serif; }
body{ background-color: #fff; margin: 0px; font-family: 'Roboto', sans-serif; }
h1,h2,h3,h4,h5,h6{ font-family: 'Roboto', sans-serif; }
p, button, a { font-family: 'Roboto', sans-serif; }
.container{ max-width: 1180px; }
.row{ }
.pt-3{ padding-top: 1.5rem }
.pt-4{ padding-top: 2rem }
.pt-5{ padding-top: 3rem }
.pb-3{ padding-bottom: 1.5rem }
.pb-4{ padding-bottom: 2rem }
.pb-5{ padding-bottom: 3rem }
.ps-1{ padding-left: 0.5rem }
.ps-2 { padding-left: 0.8rem; }
.ps-3 { padding-left: 1.5rem; }
.ps-4 { padding-left: 2rem; }
.ps-5 { padding-left: 3rem; }
.pe-1{ padding-right: 0.5rem }
.pe-2 { padding-right: 0.8rem; }
.pe-3 { padding-right: 1.5rem; }
.pe-4 { padding-right: 2rem; }
.pe-5 { padding-right: 3rem; }
.mx-auto{ margin-left: auto; margin-right: auto;}
.text-center { text-align:center }
.text-left{ text-align: left }
.text-right{ text-align: right }
.w-100{ width: 100%; }
.container-fluid { width: 100%; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.bg-orange{ background-color: #ff6600; }
.bg-grey { background-color:#EFEFEF; }
.text-white { color: #fff; }
.text-orange { color: #ff6600; }
.text-black { color: #000; }
.col-sm-1{   flex: 0 0 8%; 
display: flex; max-width: 8%;  }
.col-sm-2{  flex: 0 0 16%; display: flex; max-width: 16%; }
.col-sm-3{  flex: 0 0 24%; display: flex; max-width: 24%; }
.col-sm-4{ flex: 0 0 32%;  display: flex; max-width: 32%; }
.col-sm-5{ flex: 0 0 40%; display: flex; max-width: 40%; }
.col-sm-6{ flex: 0 0 48%;  display: flex; max-width: 48%; }
.col-sm-7{ flex: 0 0 56%; display: flex; max-width: 56%; }
.col-sm-8{ flex: 0 0 64%; display: flex; max-width: 64%; }
.d-flex{ display: flex; }
.flex-wrap { flex-wrap: wrap; }
.d-inline-block { display: inline-block; }
.border1px { border:1px solid #ff6600;}
.fontsize15px { font-size:15px }
.fontsize16px { font-size:16px }
.fontsize17px { font-size:17px }
.fontsize18px { font-size:18px }
.fontsize19px { font-size:19px }
.fontsize20px { font-size:20px }
.fontsize21px { font-size:21px }
.fontsize22px { font-size:22px }
.fontsize23px { font-size:23px }
.fontsize24px { font-size:24px }
.fontsize25px { font-size:25px }
.font-weight500 { font-weight: 500 }
.font-weight600 { font-weight: 600 }
.font-weight700 { font-weight700 }
.mt-1{ margin-top: 0.3rem }
.mt-2 { margin-top: 0.8rem }
.mt-3 { margin-top: 1.5rem }
.mt-4 { margin-top: 2rem }
.mt-auto { margin-top: auto}
.mb-auto { margin-bottom: auto; }


.hoverbtn1{ transition: all 0.4s ease; }
.hoverbtn1:hover, .hoverbtn1:active, .hoverbtn1:focus {
    background: transparent;
    color: #f60;
}
.bg-transparent { background-color: #FF6600; }




.hovereffect {
    position: relative;
    outline: none;
    box-shadow: 0px 0px;
    border: solid 1px white;
}
.hovereffect:hover {
    background: white;
    transition: 0.5s ease;
    color: #FF6600;
    border: solid 1px #FF6600 ;
}






/* SLIDER */
.CSSgal .slider{
  height:      auto;
  white-space: nowrap;
  font-size:   0;
  transition:  0.8s;
}

#slide11{
  margin-left: 0px !important;
}

/* SLIDES */
.CSSgal .slider > *{
  font-size:       1rem;
  display:         inline-block;
  height:          50%;
  width:           24%;
margin-left: 1%;

}

.slider img{
  width: 100%;
  height: 350px;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */
.CSSgal .prevNext{
  position: absolute;
  z-index:  1;
  top:      40%;
  width:    100%;
  height:   0;
}
.CSSgal .prevNext > div+div{
  visibility: hidden; /* Hide all but first P/N container */
} 
.CSSgal .prevNext a{
  background:  #F86F15;
  position:    absolute;
  width:       40px;
  height:      40px;
  line-height: 40px;
  text-align:  center;
  text-decoration:   none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transform: translateY( -50% );
          transform: translateY( -50% );
}
.CSSgal .prevNext a:hover{
  opacity: 1;
}
.CSSgal .prevNext a+a{
  right: 0px;
}


/* PREV/NEXT CONTAINERS VISIBILITY */
.CSSgal >s:target ~ .prevNext >* { visibility:  hidden; }
#s1:target ~ .prevNext >*:nth-child(1){ visibility: visible; }
#s2:target ~ .prevNext >*:nth-child(2){ visibility: visible; }
#s3:target ~ .prevNext >*:nth-child(3){ visibility: visible; }
#s4:target ~ .prevNext >*:nth-child(4){ visibility: visible; }
#s5:target ~ .prevNext >*:nth-child(5){ visibility: visible; }
#s6:target ~ .prevNext >*:nth-child(6){ visibility: visible; }
#s7:target ~ .prevNext >*:nth-child(7){ visibility: visible; }
#s8:target ~ .prevNext >*:nth-child(8){ visibility: visible; }

/* SLIDER ANIMATION POSITIONS */
#s1:target ~ .slider{ transform: translateX(   0%); -webkit-transform: translateX(   0%); }
#s2:target ~ .slider{ transform: translateX(-100%); -webkit-transform: translateX(-100%); }
#s3:target ~ .slider{ transform: translateX(-200%); -webkit-transform: translateX(-200%); }
#s4:target ~ .slider{ transform: translateX(-300%); -webkit-transform: translateX(-300%); }
#s5:target ~ .slider{ transform: translateX(-400%); -webkit-transform: translateX(-400%); }
#s6:target ~ .slider{ transform: translateX(-500%); -webkit-transform: translateX(-500%); }
#s7:target ~ .slider{ transform: translateX(-600%); -webkit-transform: translateX(-600%); }
#s8:target ~ .slider{ transform: translateX(-700%); -webkit-transform: translateX(-700%); }

#slidewid{
  width: 25% !important;
}

/*---Tab Start----*/

#teb-bg {
  width: 100%;
  margin: 0 auto 20px;
  float: left;
}
#spw-ttab {
  width: 100%;
  float: left;
}
#spw-tabs {
  border: 1px solid #dcdcdc;
    float: left;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 763px;
  background:url(../images/tab-bg.png) repeat-x top center;
}
#spw-tabs ul {
  list-style-type: none;
  padding:0 0 0 0px;
  margin: 0px ;
  display: table;
}
#spw-tabs ul li {
  float: left;
  height: 40px;
  left: 0px;
  margin: 0 0px 0 0;
   width: 151px;
  border-right:1px solid #c0c0c0; 
}
#spw-tabs ul li.spw-lastitem {
  margin: 0 0px 0 0;
   width: 151px;
    border-right:0px solid #dcdcdc; 
}
#spw-tabs ul li a {
  color: #565656;
  display: block;
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
    font-weight: bold;
  height: 40px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
#spw-tabs ul li a:hover, #spw-tabs ul li a.spw-selected {
    text-decoration: none;  
  color:#FFF;
  background:url(../images/title-bg.png) no-repeat top center;
  }
#spw-tabs ul li a:hover span, #spw-tabs ul li a.spw-selected span {
   text-decoration: none; 
  color:#FFF;
  
}
#spw-tabs ul li a.spw-selected, #spw-tabs ul li a.spw-selected span {
   text-decoration: none; 
  color:#FFF;
  
}
#spw-tabpanels div {
  float: left;
  padding: 15px;
      color: #535353;
    display: table;
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
  clear: both;
  text-align: justify;
  text-decoration: none;
  margin: 0;
    background: #f0f0f0;
   border: 1px solid #b7b7b7;
    float: left;
    margin: 0;
    width: 733px;
  }
#spw-tabpanels div ul {
  float: left;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
#spw-tabpanels div ul li {
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #535353;
  font-weight: normal!important;
  position: relative;
  clear: both;
  text-align: justify;
  text-decoration: none;
  margin: 4px 0;
  padding: 0 0 0 15px;
  list-style: none;
  background: url(../images/bullet-arrow.png) no-repeat left 4px;
}
#spw-tabpanels div span {
  color: #FF002A;
  font-weight: bold;
  text-transform: uppercase;
}


/*------------------------------------------------------------------Start hover img-----------------------------------------------------------------*/
#gallery {
 background: #fff none repeat scroll 0 0;
border: 0 none;
box-sizing: border-box;
float: left;
height: auto;
margin: 0 0 20px;
padding: 0 0 20px;
position: relative;
width: 100%;
}
#gallery #slides {
  float: left;
  height: auto;
  overflow: hidden;
  text-align: center;
  width: 100%;
  z-index: 500;
}
#slides > div {
  margin-top: 13px;
}
#gallery #slides div ul {
  display: table;
  height: auto;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  width: auto;
}
#gallery #slides div ul li {
  float: left;
  height: auto;
 margin: 4px 5px 0;
  padding: 0;
  width: auto;
}
#gallery #slides div ul li:last-child {
  margin-right: 0;
}
#gallery .big-img-wpr {
  background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
  border: 0px solid hsl(0, 0%, 0%);
  box-sizing: border-box;
  height: 710px;
  margin: 20px auto 0;
  max-width: 100%;
  width: 948px;
}
#gallery div.img-wpr {
  background: hsla(0, 0%, 0%, 0) none repeat scroll 0 0;
border: 0 none;
bottom: 0;
height: 710px;
left: 0;
margin: 0 auto;
max-width: 100%;
position: absolute;
right: 0;
top: 24px;
width: 100%;
}
#gallery div.img-wpr .img-box {
  background-color: hsl(0, 0%, 4%);
  display: table-cell;
height: 710px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  vertical-align: middle;
  width: 1000px;
}
#gallery div.img-wpr .big-img {
  display: table-cell;
  height: auto;
  margin: 0 auto;
  max-height: calc(100% - 20px);
  max-width: calc(100% - 20px);
  vertical-align: middle;
  width: auto;
}
#gallery .thumb {
  border: 1px solid hsl(0, 0%, 0%);
box-sizing: border-box;
cursor: pointer;
display: table-cell;
height: 100px;
vertical-align: middle;
width: 101px;
}
#gallery #slides div ul li:first-child {
  margin-left: 0;
}
#gallery #slides div ul li:last-child {
  margin-right: 0;
}
#gallery .thumb > img {
  display: table-cell;
height: auto;
margin: 0 auto;
max-height: calc(100% - 0px);
max-width: calc(100% - 0px);
vertical-align: middle;
width: auto;
}
#gallery #slides div#slide1 ul:first-child li:first-child .img-wpr {
  z-index: 1;
}
#gallery #slides input {
  display: none;
}
#gallery #slides input:checked ~ .img-wpr {
  z-index: 2;
}
#gallery {height: auto;}
#gallery .big-img-wpr ,#gallery div.img-wpr,#gallery div.img-wpr .img-box{height: 540px;}
#gallery div.img-wpr {top: 0px;}
#gallery div.img-wpr .img-box {background-color: #fff;}
#gallery {background: transparent;}
#gallery .thumb {
  background: #fff;
  border: 0 none;
  box-sizing: border-box;
  height: 145px;
  padding: 10px;
  width: 125px;
}
#gallery .thumb > img {
  border: 1px solid #ccc;
  box-sizing: border-box;
  display: table-cell;
  height: auto;
  margin: 0 auto;
  max-height: calc(100% - 0px);
  max-width: calc(100% - 0px);
  padding: 1px;
  vertical-align: middle;
  width: auto;
}
#slides > div {
  margin-top: 0;
}
.esd-listingarea-box:first-child {
  margin-bottom: 0;
}
#gallery {margin: 0;}
#gallery .big-img-wpr {margin: 10px auto 0;}
/*------------------------------------------------------------------end hover img-----------------------------------------------------------------*/

/*===========Tab=============*/
.listing-tab {
  margin: 20px auto 0;
  max-width: 1000px;
  padding: 0;
  width: 100%;
}
.listing-tab main {
  min-width: 320px;
  max-width: 100%;
  float: left;
  padding: 0;
  margin: 0 auto;
  
}
.listing-tab section {
  background: white none repeat scroll 0 0;
  border: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: #000;
  display:none;
  float: left;
  font-family: lato;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 40px;
  max-width: 100%;
  padding: 15px;
  text-align: justify;
  transition: al 0.3s ease-in 0s;
  width: 1200px;
}
.listing-tab input {
  display: none;
}
.last-tab
{
  background:hsl(201, 59%, 29%) !important; 
}
.listing-tab label {

  border-left: 1px solid hsl(0, 0%, 100%);
  box-sizing: border-box;
  color: hsl(0, 0%, 100%);
  display: inline-block;
  float: left;
  font-family: lato;
  font-size: 17px;
  font-weight: 600;
  height: 40px;
  letter-spacing: 1px;
  line-height: 16px;
  margin: 0;
  padding: 12px 20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 16.6667%;
  z-index: 111;
}
.listing-tab label:hover {
  transition: al 0.3s ease-in 0s;
  cursor: pointer;
}
.listing-tab input:checked + label {
  background: #F86F15;
  color: white;
  transition: al 0.3s ease-in 0s;
}
.listing-tab #tab1:checked ~ #content1, .listing-tab #tab2:checked ~ #content2, .listing-tab #tab3:checked ~ #content3, .listing-tab #tab4:checked ~ #content4 , .listing-tab #tab5:checked ~ #content5{
  display: block;
  background-color: white;
}
.listing-tab .d-link {
  padding: 0;
}
.listing-tab .d-link a {
  color: #fff;
  float: left;
  line-height: 32px;
  padding: 4px 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.d-link:hover, .d-link:hover::before, .d-link:hover::after, .d-link > a:hover {
  
  background: #f00;
  color: #ffffff;
  transition: al 0.3s ease-in 0s;
  cursor: pointer;
}


.mobile-tab {
  width: 100%;
  float: left;
  margin: 0 0 20px 0;
  padding: 0;
}
.accordion {
  border: 1px solid white;
  padding: 0;
  margin: 0 auto;
  list-style: none outside;
}
.accordion-item {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
.accordion > * + * {
  border-top: 1px solid white;
}
.accordion-item-hd {
  background: #FF6600;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  display: block;
  font-family: lato;
  font-size: 15px;
  font-weight: normal;
  padding: 12px 30px 8px 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s all ease-in;
}
.accordion-item-hd:hover {
  background: white;
  color: #FF6600;
  transition: 0.5s all ease-in;
}
.accordion-item-hd a {
  display: block;
  padding: 0;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: normal;
  color: hsl(0, 0%, 100%) !important;
  text-align: center;
  width: 100%;
  text-decoration: none;
}
.accordion-item-hd a:hover {
  color: #FF6600;
}
.accordion-item-input:checked ~ .accordion-item-bd {
  color: hsl(0, 0%, 35%);
  float: left;
  font-family: open sans;
  font-size: 13px;
  font-weight: normal;
  margin: 10px 2%;
  max-height: 3000px;
  padding: 0;
  text-align: justify;
  transition: max-height 1s ease-in 0s, margin 0.3s ease-in 0s, padding 0.3s ease-in 0s;
  width: 96%;
}
#content3 > a,#content2 > a {
  color: hsl(193, 100%, 33%);
  text-decoration: none;
}
.accordion-item-input:checked ~ .accordion-item-hd > .accordion-item-hd-cta {
  background: url(../images/minus.png) no-repeat center center;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.accordion-item-hd-cta {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/plus.png) no-repeat center center;
  position: absolute;
  top: calc(35% - 6px );
  /*minus half font-size*/
  right: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
.accordion-item-bd {
  max-height: 0;
  margin-bottom: 0;
  padding: 0 2%;
  overflow: hidden;
  -webkit-transition: max-height .15s ease-out, margin-bottom .3s ease-out, padding .3s ease-out;
  transition: max-height .15s ease-out, margin-bottom .3s ease-out, padding .3s ease-out;
}
.accordion-item-input {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}
.listing-tab label {
  border-left: 1px solid hsl(0, 0%, 100%);
  box-sizing: border-box;
  color: #F86F15;
  display: inline-block;
  float: left;
      background: white;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  letter-spacing: 0;
  line-height: 16px;
  margin: 0;
  padding: 12px 20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 16.6667%;
  z-index: 111;
}
.listing-tab .d-link a{ color: #333;
font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 700;

}
.listing-tab input:checked {
  color: white;
  transition: al 0.3s ease-in 0s;
}

label,.listing-tab label:hover {
  color: #F86F15;
  transition: al 0.3s ease-in 0s;
    color: white;
  background-color: #F86F15;
}

.d-link:hover, .d-link:hover::before, .d-link:hover::after, .d-link > a:hover {
  background:url("../images/title-bg.png") no-repeat scroll center top;
  color: #ffffff!important;
  cursor: pointer;
  transition: al 0.3s ease-in 0s;
}
.listing-tab label {
  width: 16.58%;
  border-left: 1px solid #c0c0c0;
  
}
.listing-tab label:first-child{ border-left: 0px solid #c0c0c0;}
.listing-tab section {border: 1px solid #c0c0c0;}
.listing-tab main {
  margin: 0 auto;
  max-width: 100%;
  min-width: 100%;
  padding: 0;
}
.listing-tab section {width: 99.7%;background: #f0f0f0;margin-bottom: 0;}
.listing-tab {margin: 0 auto;}
#esd-designer span {
  color: #fff;
  font-family: "Open Sans",sans-serif;
  font-weight: normal;
  text-decoration: none;
}
/*===========Tab END=============*/

/*-----Mobile--Tabs-------*/ 

.mobile-tab {
  width: 100%;

 margin: auto;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .mobile-tab {
    display:none!important;
  }
}
@media screen and (max-width: 769px) {
  .pconly{
    display:none!important;
  }
}


.slider1{
  padding-top: 40px;
  padding-bottom: 20px;
}

.logo{
  width: 100%;
  margin: auto;
  text-align: center;
  height: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

.logo img{
  height: 50px;

}

.banner{
  width: 100%;
  margin: auto;
  text-align: center;
  height: auto;
  padding-bottom: 30px;
}

.banner img{
  height: 300px;
  width: 100%;
}

.buttons{
    width: 100%;
  margin: auto;
  text-align: center;
  height: auto;
  padding-bottom: 50px;
}

.buttons button{
    text-align: center;
  background-color: #F86F15;
  color: white;
  font-size: 18px;
  font-family: sans-serif;
height: 60px;
width: 200px;
border: solid 5px white;
}

.mid-sec{
    width: 100%;
  margin: auto;
  height: 500px;
  padding-bottom: 100px;
}

.midsec1{
  width: 33%;
  float: left;
  text-align: center;
}

.midsec2{
  width: 33%;
  float: left;
}

.midsec3{
  width: 33%;
  float: left;
}

.sec-1{
  width: 90%;
  margin: auto;
  height: auto;
}

.midsec2 pre{
  font-size: 15px;
  font-family: sans-serif;
  line-height: 25px;
}

.bg-color{
  background-color: #EFEFEF;
  padding: 20px;
    font-size: 15px;
  font-family: sans-serif;
}

.midsec2 h1{
  font-size: 30px;
  font-family: sans-serif;
}

.midsec2 span{
  color: #FF6600;
}

.midsec3 pre{
  font-size: 15px;
  font-family: sans-serif;
  line-height: 25px;
}

.midsec3 h1{
  font-size: 30px;
  font-family: sans-serif;
}

.slider img{
  width: -webkit-fill-available;
}


.main-bg{
  background-color: #EFEFEF;
}

.tabs{
  width: 100%;
  height:  auto;
  background-color: #EFEFEF;
  padding-top: 0px;
  display: inline-block;
  padding-bottom: 20px;
}
.CSSgal{
  position: relative;
  overflow: hidden;
      width: 80%;
    margin: auto;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:focus {
    outline: none;
}
.owl-slider .owl-dots {
    display: none;
}
.buttonsize a{ display: block; 
text-align: center; text-decoration: none; }


  









@media only screen and (max-width : 640px) {
.col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7,
.col-sm-8{  flex: 0 0 100%; max-width: 100%; }
.logo-client {  width: 73%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.CSSgal .slider, .slider1, .tabs {
    height: auto }
    .CSSgal .slider > * {
    width: 100%;
  }
  .buttonsize a {
    max-width: 80%;
    margin: 10px auto 6px;
    font-size: 17px;
}
   .CSSgal .slider > *{ margin-left: 0px !important; }
}

@media screen and (max-width: 640px) {
  #for-pc {
    display:none!important;
  }
}
@media screen and (min-width: 640px) {
  #for-mbl {
    display:none!important;
  }
}

.text-white{
  color: white;
}


/* PREV/NEXT CONTAINERS VISIBILITY */
.CSSgal >s:target ~ .prevNext >* { visibility:  hidden; }
#s11:target ~ .prevNext >*:nth-child(1){ visibility: visible; }
#s12:target ~ .prevNext >*:nth-child(2){ visibility: visible; }
#s13:target ~ .prevNext >*:nth-child(3){ visibility: visible; }
#s14:target ~ .prevNext >*:nth-child(4){ visibility: visible; }
#s15:target ~ .prevNext >*:nth-child(5){ visibility: visible; }
#s16:target ~ .prevNext >*:nth-child(6){ visibility: visible; }
#s17:target ~ .prevNext >*:nth-child(7){ visibility: visible; }
#s18:target ~ .prevNext >*:nth-child(8){ visibility: visible; }

/* SLIDER ANIMATION POSITIONS */
#s11:target ~ .slider{ transform: translateX(   0%); -webkit-transform: translateX(   0%); }
#s12:target ~ .slider{ transform: translateX(-100%); -webkit-transform: translateX(-100%); }
#s13:target ~ .slider{ transform: translateX(-200%); -webkit-transform: translateX(-200%); }
#s14:target ~ .slider{ transform: translateX(-300%); -webkit-transform: translateX(-300%); }
#s15:target ~ .slider{ transform: translateX(-400%); -webkit-transform: translateX(-400%); }
#s16:target ~ .slider{ transform: translateX(-500%); -webkit-transform: translateX(-500%); }
#s17:target ~ .slider{ transform: translateX(-600%); -webkit-transform: translateX(-600%); }
#s18:target ~ .slider{ transform: translateX(-700%); -webkit-transform: translateX(-700%); }



.listing-tab button {

  border-right: 1px solid hsl(0, 0%, 100%);
  box-sizing: border-box;
  color: hsl(0, 0%, 100%);
  display: inline-block;
  float: left;
  font-family: lato;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  letter-spacing: 1px;
  line-height: 16px;
  margin: 0;
  padding: 12px 20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 16.6667%;
  z-index: 111;
  background-color: white;
  color: #F86F15;
  border-top: 0px;
  border-bottom: 0px;
    font-family: "Open Sans",sans-serif;
  font-weight: normal;
  text-decoration: none;
  font-weight: bold;
}

.listing-tab button {
  width: 16.58%;
  border-left: 1px solid #c0c0c0;
  
}

.listing-tab button:hover{
  color: white;
  background-color: #F86F15;
}

.mobile-tab a{
  text-decoration: none;
}

.accordion-item-hd button{
  background: transparent;
  cursor: pointer;
  display: block;
  font-family: lato;
  font-weight: normal;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s all ease-in;
  color: white;
  border: none;
 margin: auto;
}

.accordion-item-hd button:hover{
background-color: white;
color: #FF6600 ;
  }

.CSSgal-1{
  position: relative;
  overflow: hidden;
  height:   100%; /* Or set a fixed height */
}

/* SLIDER */
.CSSgal-1 .slider{
  height:      100%;
  white-space: nowrap;
  font-size:   0;
  transition:  0.8s;
}

/* SLIDES */
.CSSgal-1 .slider > *{
  font-size:       1rem;
  display:         inline-block;
  vertical-align:  top;
  height:          100%;
  width:           100%;
  background:      none 50% no-repeat;
  background-size: cover;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */
.CSSgal-1 .prevNext{
  position: absolute;
  z-index:  1;
  top:      50%;
  width:    100%;
  height:   0;
}
.CSSgal-1 .prevNext > div+div{
  visibility: hidden; /* Hide all but first P/N container */
} 
.CSSgal-1 .prevNext a{
background:  #F86F15;
  position:    absolute;
  width:       40px;
  height:      40px;
  line-height: 40px;
  text-align:  center;
  text-decoration:   none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transform: translateY( -50% );
          transform: translateY( -50% );
}
.CSSgal-1 .prevNext a:hover{
  opacity: 1;
}
.CSSgal-1 .prevNext a+a{
  right: 0px;
}

/* NAVIGATION */
.CSSgal-1 .bullets{
  position:   absolute;
  z-index:    2;
  bottom:     0;
  padding:    10px 0;
  width:      100%;
  text-align: center;
}
.CSSgal-1 .bullets > a{
  display:         inline-block;
  width:           20px;
  height:          20px;
  line-height:     20px;
  text-decoration: none;
  text-align:      center;
  border-radius:   50%;
  background:      rgba(255,255,255,1);
}
.CSSgal-1 .bullets > a+a{
  background: rgba(255,255,255,0.5); /* Dim all but first */
}
.CSSgal-1 .bullets > a:hover{
  background: rgba(0,255,255,0.9);
}

/* ACTIVE NAVIGATION ANCHOR */
.CSSgal-1 >s:target ~ .bullets >* { background: rgba(255,255,255,0.5); }
#s21:target ~ .bullets >*:nth-child(1){ background: rgba(255,255,255,  1); }
#s22:target ~ .bullets >*:nth-child(2){ background: rgba(255,255,255,  1); }
#s23:target ~ .bullets >*:nth-child(3){ background: rgba(255,255,255,  1); }
#s24:target ~ .bullets >*:nth-child(4){ background: rgba(255,255,255,  1); }

/* PREV/NEXT CONTAINERS VISIBILITY */
.CSSgal-1 >s:target ~ .prevNext >* { visibility:  hidden; }
#s21:target ~ .prevNext >*:nth-child(1){ visibility: visible; }
#s22:target ~ .prevNext >*:nth-child(2){ visibility: visible; }
#s23:target ~ .prevNext >*:nth-child(3){ visibility: visible; }
#s24:target ~ .prevNext >*:nth-child(4){ visibility: visible; }

/* SLIDER ANIMATION POSITIONS */
#s21:target ~ .slider{ transform: translateX(   0%); -webkit-transform: translateX(   0%); }
#s22:target ~ .slider{ transform: translateX(-100%); -webkit-transform: translateX(-100%); }
#s23:target ~ .slider{ transform: translateX(-200%); -webkit-transform: translateX(-200%); }
#s24:target ~ .slider{ transform: translateX(-300%); -webkit-transform: translateX(-300%); }