/* grid */
.grid {
    display: grid;
    grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
    grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
    gap: var(--bs-gap, 1rem)
}

    .grid .g-col-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-1 {
        grid-column-start: 1
    }

    .grid .g-start-2 {
        grid-column-start: 2
    }

    .grid .g-start-3 {
        grid-column-start: 3
    }

    .grid .g-start-4 {
        grid-column-start: 4
    }

    .grid .g-start-5 {
        grid-column-start: 5
    }

    .grid .g-start-6 {
        grid-column-start: 6
    }

    .grid .g-start-7 {
        grid-column-start: 7
    }

    .grid .g-start-8 {
        grid-column-start: 8
    }

    .grid .g-start-9 {
        grid-column-start: 9
    }

    .grid .g-start-10 {
        grid-column-start: 10
    }

    .grid .g-start-11 {
        grid-column-start: 11
    }

@media(min-width: 576px) {
    .grid .g-col-sm-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-sm-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-sm-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-sm-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-sm-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-sm-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-sm-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-sm-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-sm-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-sm-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-sm-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-sm-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-sm-1 {
        grid-column-start: 1
    }

    .grid .g-start-sm-2 {
        grid-column-start: 2
    }

    .grid .g-start-sm-3 {
        grid-column-start: 3
    }

    .grid .g-start-sm-4 {
        grid-column-start: 4
    }

    .grid .g-start-sm-5 {
        grid-column-start: 5
    }

    .grid .g-start-sm-6 {
        grid-column-start: 6
    }

    .grid .g-start-sm-7 {
        grid-column-start: 7
    }

    .grid .g-start-sm-8 {
        grid-column-start: 8
    }

    .grid .g-start-sm-9 {
        grid-column-start: 9
    }

    .grid .g-start-sm-10 {
        grid-column-start: 10
    }

    .grid .g-start-sm-11 {
        grid-column-start: 11
    }
}

@media(min-width: 768px) {
    .grid .g-col-md-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-md-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-md-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-md-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-md-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-md-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-md-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-md-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-md-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-md-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-md-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-md-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-md-1 {
        grid-column-start: 1
    }

    .grid .g-start-md-2 {
        grid-column-start: 2
    }

    .grid .g-start-md-3 {
        grid-column-start: 3
    }

    .grid .g-start-md-4 {
        grid-column-start: 4
    }

    .grid .g-start-md-5 {
        grid-column-start: 5
    }

    .grid .g-start-md-6 {
        grid-column-start: 6
    }

    .grid .g-start-md-7 {
        grid-column-start: 7
    }

    .grid .g-start-md-8 {
        grid-column-start: 8
    }

    .grid .g-start-md-9 {
        grid-column-start: 9
    }

    .grid .g-start-md-10 {
        grid-column-start: 10
    }

    .grid .g-start-md-11 {
        grid-column-start: 11
    }
}

@media(min-width: 992px) {
    .grid .g-col-lg-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-lg-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-lg-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-lg-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-lg-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-lg-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-lg-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-lg-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-lg-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-lg-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-lg-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-lg-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-lg-1 {
        grid-column-start: 1
    }

    .grid .g-start-lg-2 {
        grid-column-start: 2
    }

    .grid .g-start-lg-3 {
        grid-column-start: 3
    }

    .grid .g-start-lg-4 {
        grid-column-start: 4
    }

    .grid .g-start-lg-5 {
        grid-column-start: 5
    }

    .grid .g-start-lg-6 {
        grid-column-start: 6
    }

    .grid .g-start-lg-7 {
        grid-column-start: 7
    }

    .grid .g-start-lg-8 {
        grid-column-start: 8
    }

    .grid .g-start-lg-9 {
        grid-column-start: 9
    }

    .grid .g-start-lg-10 {
        grid-column-start: 10
    }

    .grid .g-start-lg-11 {
        grid-column-start: 11
    }
}

@media(min-width: 1200px) {
    .grid .g-col-xl-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-xl-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-xl-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-xl-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-xl-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-xl-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-xl-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-xl-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-xl-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-xl-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-xl-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-xl-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-xl-1 {
        grid-column-start: 1
    }

    .grid .g-start-xl-2 {
        grid-column-start: 2
    }

    .grid .g-start-xl-3 {
        grid-column-start: 3
    }

    .grid .g-start-xl-4 {
        grid-column-start: 4
    }

    .grid .g-start-xl-5 {
        grid-column-start: 5
    }

    .grid .g-start-xl-6 {
        grid-column-start: 6
    }

    .grid .g-start-xl-7 {
        grid-column-start: 7
    }

    .grid .g-start-xl-8 {
        grid-column-start: 8
    }

    .grid .g-start-xl-9 {
        grid-column-start: 9
    }

    .grid .g-start-xl-10 {
        grid-column-start: 10
    }

    .grid .g-start-xl-11 {
        grid-column-start: 11
    }
}

@media(min-width: 1400px) {
    .grid .g-col-xxl-1 {
        grid-column: auto/span 1
    }

    .grid .g-col-xxl-2 {
        grid-column: auto/span 2
    }

    .grid .g-col-xxl-3 {
        grid-column: auto/span 3
    }

    .grid .g-col-xxl-4 {
        grid-column: auto/span 4
    }

    .grid .g-col-xxl-5 {
        grid-column: auto/span 5
    }

    .grid .g-col-xxl-6 {
        grid-column: auto/span 6
    }

    .grid .g-col-xxl-7 {
        grid-column: auto/span 7
    }

    .grid .g-col-xxl-8 {
        grid-column: auto/span 8
    }

    .grid .g-col-xxl-9 {
        grid-column: auto/span 9
    }

    .grid .g-col-xxl-10 {
        grid-column: auto/span 10
    }

    .grid .g-col-xxl-11 {
        grid-column: auto/span 11
    }

    .grid .g-col-xxl-12 {
        grid-column: auto/span 12
    }

    .grid .g-start-xxl-1 {
        grid-column-start: 1
    }

    .grid .g-start-xxl-2 {
        grid-column-start: 2
    }

    .grid .g-start-xxl-3 {
        grid-column-start: 3
    }

    .grid .g-start-xxl-4 {
        grid-column-start: 4
    }

    .grid .g-start-xxl-5 {
        grid-column-start: 5
    }

    .grid .g-start-xxl-6 {
        grid-column-start: 6
    }

    .grid .g-start-xxl-7 {
        grid-column-start: 7
    }

    .grid .g-start-xxl-8 {
        grid-column-start: 8
    }

    .grid .g-start-xxl-9 {
        grid-column-start: 9
    }

    .grid .g-start-xxl-10 {
        grid-column-start: 10
    }

    .grid .g-start-xxl-11 {
        grid-column-start: 11
    }
}
/* end grid */

.DesignMode .fixed-top{
  position: relative;
}

.DesignMode .slick-track{
  width:100%!important
}


a:hover{
  text-decoration: none!important;
}
.top .navbar a{
  text-transform: capitalize;
}

.contactInfo .footer-social img{
  width: 50px;
  height: auto;
  
}



.productInfo p{
  margin: 7px 0!important;
}
.productInfo a:hover{
  color: #ffffff!important;
}

.product-category-item{
  margin: 2.5px 0;
}
.product-category-item img{
  /*border: 1px solid #ddd;
  box-shadow: 0px 2px 5px 2px #d2d2d2;*/
}


.product-category-item{
  -ms-flex: 0 0 33.33%!important;
  flex: 0 0 33.33%!important;
  max-width: 33.33%!important;
}

@media (min-width: 576px){
  .product-category-item{
    -ms-flex: 0 0 25%!important;
    flex: 0 0 25%!important;
    max-width: 25%!important;
  }
}
@media (min-width: 991px){
  .product-category-item{
    -ms-flex: 0 0 20%!important;
    flex: 0 0 20%!important;
    max-width: 20%!important;
  }
}
@media (min-width: 1200px){
  .product-category-item{
    -ms-flex: 0 0 16.66%!important;
    flex: 0 0 16.66%!important;
    max-width: 16.66%!important;
  }
}
@media (min-width: 1400px){
  .product-category-item{
    -ms-flex: 0 0 14.28%!important;
    flex: 0 0 14.28%!important;
    max-width: 14.28%!important;
  }
}

@media (max-width: 768px){
  .productInfo-cate + .productInfo-cate{
    margin-top: 10px
  }
  .productCategories .frameHeader{
    font-size: 1.5rem;
  }
}


@media (max-width: 576px){
  .top .navbar a{
    padding: .1em 0!important;
  }
  .navbar .navbar-brand img {
    height: 30px!important;
    
  }
  .navbar.scrolled .navbar-brand img {
    height: 25px!important;
    width: auto;
  }
}

@media (max-width: 420px){
  .col-xxs-12{
    -ms-flex: 0 0 100%!important;
    flex: 0 0 100%!important;
    max-width: 100%!important;
  }
  
}

.productCategories .frameBody{
  background: #fff;
}
.product-type-item-wrap{
  padding: 15px;
}
.product-type-item{
  padding: 7.5px;
}


/***********************************Lazyload******************************/
.lds-ring {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  border: 4px solid #000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;
  border-color: #fec652 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lozad-wrap{
  position: relative;
}
.lozad-wrap .lds-ring{
  position: absolute;
  left:50%;
  top:50%;
  margin-left: -17.5px;
  margin-top: -17.5px;
}
img.lozad {
  background: rgba(205,205,205,.1);
  min-width: 100px;
  min-height: 100px;
}
img.lozad.active{
  background: transparent;
  min-width: 0;
  min-height: 0;
  
}

img.lozad.active + .lds-ring{
  display: none;
}

/*****************ProductPage***************/
.leftmenu-item{
  padding: 15px!important;
  border-radius: 15px!important;
}
.leftmenu-item + .leftmenu-item{
  margin-top: 10px;
}
.leftmenu-item-title{
  color: white;
  background: transparent linear-gradient(135deg, #FFCA55 0%, #F37721 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  text-align: left;
  border-radius: 7px;
  padding: 7px 15px!important;
}
.leftmenu-item-title:hover{
  color: #fff;
}
.leftmenu-item ul{
  margin-bottom: 0;
}
.leftmenu-item ul li{
  border : #ffc653  1px solid;
  padding: 7px 15px!important;
  border-radius: 7px;
  margin: 2.5px 0;
}


.productlist-item{
  padding: 15px 20px!important;
  border-radius: 15px!important;
}
.productlist-item + .productlist-item{
  margin-top: 15px
}
.productlist-item .moreInfo_row,
.productlist-item .contactSale_row{
  display: flex;
}

.productlist-item .productlist-detail strong{
  color: #f47310;
}

.productlist-item .productlist-detail .tx_content06{
  font-weight: bold;
  color: #636363;
}
section.top{
  position: relative;
}
.breadcrumbs{
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}
.productdetail img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.productdetail .tx_content01{
  font-size: 20px;
  margin-top: 10px;
}
.productdetail .tx_content03{
  font-size: 24px;
}

.productdetail .tx_content06{
  font-size: 20px;
  margin-top: 10px;
  display:block;
}

.productdetail td[bgcolor="#89d7f1"]{
  padding: 5px 0;
}
.productdetail td[bgcolor="#89d7f1"] a{
  font-size: 24px;
  color : #333;
}
.productdetail ul, .productdetail p, .productlist-detail ul, .productlist-detail p{
  margin-bottom: 0;
}
.product-list-bg-grey{
  background: #f7f7f7;
  padding: 30px;
  margin-bottom: 20px;
}
.filter-product select{
  font-size: 22px;
  border-radius: 50px;
}


.contactSaleDetail .tx_content01{
  
}
.productdetail > table{
  width: 100%;
}
.type-frame h4{
  font-size: 26px;
}
.content .contentHr {
  width: 80px;
  height: 2px!important;
  background: #F37721;
  border-radius: 2px;
  height: 1px;
}
@media (max-width: 768px){
  .col-xxs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xxs-4 {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-xxs-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxs-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /*section.top .navbar{
  background: transparent;
}
  section.top .navbar.scrolled {
  background: rgba(34,34,34,.9);
}
  .top .navbar li a.active, .top .navbar li a:hover{
  background: transparent!important;
}*/
  
  .filer-product select{
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
    margin: 20px auto!important;
    
  }
  .filer-product select+select {
    margin-top: 0!important;
  }
  .productlist-item-top-image{
    text-align: center;
  }
}

/******************Contactpage**************************************/
.bg-ci{
  background: transparent linear-gradient(
    135deg,#ffca55 0%,#f37721 100%) 0% 0% no-repeat padding-box;
}

.job-info{
  border-radius: 20px;
  color: #fff;
  padding: 20px;
  font-size: 24px;
}
.job-info a{
  color: #fff;
}
.job-info-left{
  text-align: right;
}
.job-info-right{
  border-left: 1px solid #fff;
}
.contact-us-form input,
.contact-us-form select,
.contact-us-form textarea{
  height: 39px;
  width: 100%!important;
  border-color:#cecece;
  font-size: 24px;
}
.contact-us-form table{
  width: 100%!important;
}
.contact-us-form input[type="text"]{
  border:0;
  border-bottom:1px solid #cecece;
  
}
.contact-us-form select,
.contact-us-form textarea{
  border-radius: 20px;
  margin-top: 10px;
  padding: 5px 15px;
}
.contact-us-form textarea{
  min-height: 80px;
}
.contact-us-form .tx_content05{
  font-size: 24px;
}
.contact-us-form *{
  color: #303030;
}
.contact-info{
  padding: 0px !important;
  border-radius: 20px;
}

.contact-info *{
  font-size: 24px;
  color: black;
}

.contact-info tr td{
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.contact-info a.link_orange{
  text-decoration: underline;
}
/*.contact-info a.link_orange:hover{
color: #fff;
}*/

.contact-info img.info-icon {
  height: 40px;
}
.contact-info tr td + td{
  padding-top: 17px;
}

.contact-us-form .CaptchaTable {
  width: 300px!important
}

.contact-us-form .capcha label{
  font-size: 24px;
}
.contact-us-form .FormButton{
  max-width: 250px;
  background: transparent linear-gradient(
    135deg,#ffca55 0%,#f37721 100%) 0% 0% no-repeat padding-box;
  border-radius: 20px;
  color: #fff;
  height: 43px;
  border: 0;
  margin: 15px 0 20px;
  font-weight: bold;
}
@media (max-width: 768px){
  .job-info-left{
    text-align: left;
  }
  .job-info-right{
    border-left: 0;
    border-top: 1px solid #fed997;
    padding-top: 15px;
    margin-top: 15px;
  }
  
}
.forum-redesign tr.Thread{
  border: 1px solid #d6d6d6;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  padding-right: 30px;
}
.forum-redesign tr.Thread + .Thread{
  margin-top: 30px;
}

.forum-redesign .PostAttachmentsList {
  max-height: 300px;
  overflow: hidden;
  padding-right: 25px;
}

.forum-redesign tr.Thread td.ThreadImageDefault.ThreadImage {
  width: 50%;
  padding: 0;
  height: 300px;
}
.forum-redesign tr.Thread td.ThreadImageDefault.ThreadImage img{
  width: 100%;
  height: auto;
  padding: 0!important;
}

.forum-redesign tr.Thread td.ThreadInfo{
  width: 50%;
  height: 175px;
}
.forum-redesign tr.Thread td.LastPost{
  width: 50%;
  height: 50px;
  color : #bcbcbc;
  font-size: 20px;
  border-top: 1px solid #bcbcbc;
}

.forum-redesign tr.Thread td{
  float: left;
  padding: 15px;
}
.forum-redesign tr.Thread td.ThreadInfo,
.forum-redesign tr.Thread td.LastPost{
  padding-left: 0;
  padding-right: 0;
}

.forum-redesign td.ThreadInfo a{
  color: #303030;
  font-size: 36px;
  max-height: 140px;
  overflow: hidden;
  display: block;
}

.forum-redesign tr.Thread td.ThreadLogo{
  background-image :url(/App_Themes/SoftdebutRedesign/images/Asset17.png);
  width: 50%;
  height: 43px;
  padding-left: 58px;
  padding-top: 29px;
  background-repeat: no-repeat;
  color: #bcbcbc;
  margin-top: 25px;
  position: relative;
}

a.facebookshare {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
}
.ForumTitle{
  display: none
}

.forum-redesign .Pager{
  text-align: center;
  margin:30px;
}
.forum-redesign .Pager a,
.forum-redesign .Pager span{
  font-size: 24px;
  margin:0 10px;
}
.forum-redesign .Pager a{
  color: #bcbcbc;
}
.forum-redesign .Pager span{
  color: #f37721;
}
@media (max-width: 768px){
  .forum-redesign tr.Thread,
  .forum-redesign .PostAttachmentsList{
    padding-right: 0;
  }
  .forum-redesign tr.Thread td.ThreadImageDefault.ThreadImage,
  .forum-redesign tr.Thread td.ThreadLogo,
  .forum-redesign tr.Thread td.ThreadInfo, 
  .forum-redesign tr.Thread td.LastPost{
    width: 100%;
    height: auto
  }
  .forum-redesign td.ThreadInfo a{
    height: auto
  }
  .forum-redesign tr.Thread td.ThreadInfo, .forum-redesign tr.Thread td.LastPost{
    padding-left: 15px;
    padding-right: 15px;
  }
  .forum-redesign tr.Thread td.LastPost{
    border-top: 1px solid #f7f7f7;
    text-align: right;
  }
  .forum-redesign tr.Thread td.ThreadLogo {
    
    padding-left: 83px;
    
    background-position-x: 15px;
  }
  a.facebookshare{
    right: 15px;
  }
}



.ForumContent.tx_content01{
  width: 100%;
  margin-top: 30px;
}

.ForumContent.tx_content01 .PostsTable{
  width: 100%;
}

.ForumPost   #PostSubject .tx_content01{
  font-size: 36px;
}

.ForumPost .PostText{
  margin-top: 15px;
}
.ForumPost .PostText img{
  width: auto;
  max-width: 100%;
}
.ForumPost .AttachThread{
  border-top: 1px solid #bcbcbc;
  padding-top: 20px;
  margin-top: 20px;
  display: none;
}
.forum-redesign .ActionsThread {
  display: none;
}
.ForumPost .AttachThread .PostAttachmentsHeader{
  font-size: 24px;
}

.ForumPost .PostBy{
  font-size: 20px;
  margin: 10px 0 30px;
  background: #303030;
  padding: 15px;
  display: none!important;
}
.ForumPost .PostBy *{
  color: #dbdbdb;
  font-size: 24px;
}
.ForumPost .PostBy .PostActionLink{
  display: none;
}

.ActionsThread span.ForumBreadCrumbs{
  font-size: 30px;
}
.ActionsThread .tx_content03{
  font-size: 24px;
  display: none;
}
@media (max-width: 768px){
  .productInfo a.sliderBtn{
    position: relative;
    display: block;
    border-radius: 0.75em;
  }
  .productInfo .anchorRow{
    max-width: 100%;
    display: block;
    word-break: break-all;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
  .productInfo .anchorRow i{
    position: absolute;
    right:10px;
    top: 0px;
  }
}



/******************************Service******************************/
.service_type h4 a{
  color: #212529;
}
.service_type h4.active a{
  color: #f37721;
}

.service_sub_type{
  border: 1px solid #f37721;
  border-radius: 5px;
  padding: 10px;
}
.service_sub_type a{
  font-size: 22px;
  color: #555;
  display: block;
}
.service_sub_type a:hover{
  color: #f37721;
}
.service_sub_type.active{
  background: #f37721;
}
.service_sub_type.active a{ 
  color: #fff;
}
.bg-black{
  background: #000;
}
.servicedetail{
  font-size: 24px;
  font-weight: normal;
  color:#555;
  overflow: hidden;
}
.servicedetail img{
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}
.Bbreadcrumbs{
  
}

.Bbreadcrumbs a, 
.Bbreadcrumbs span{
  background: #fff;
  border-radius: 5px;
  padding: 2px 20px;
  font-size: 24px!important;
  color: #333!important;    
  margin-left: -13px;
}
.Bbreadcrumbs a:first-child{
  margin-left: 0;
}
.Bbreadcrumbs div.breadcrum-arrow{
  background: #f37721;
  color: #fff!important;
  padding: 0!important;
  width: 25px;
  height: 25px;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  position: relative;
  margin-left: -13px;
  font-size: 24px;
}

.banner-img.mobile-banner{
  display: none !important
}

.slick-slide .headtext{
  font-size: 60px;
  line-height: 1;
}

.slick-slide .subtext{
  font-size: 28px;
  line-height: 1;
  margin-top: 30px;
}
@media (max-width: 1199px){
  .banner-main-text{
    position: absolute;
    bottom: 0;  
  }
  .slick-slide .headtext{
    font-size: 42px;
  }
  
}
@media (max-width: 992px){
  /*#navbarNav{
  background: rgba(34,34,34,.9);
}*/
  .top #navbarNav .nav-item a.nav-link{
    padding-left: 15px;
  }
  .top .scrolled #navbarNav{
    background: transparent;
  }
  .slick-slide .headtext{
    font-size: 36px;
  }
  .slick-slide .subtext{
    font-size: 20px;
  }
}
@media (max-width: 768px){
  .banner-img{
    background-position: center left!important;
    height: 400px!important;
  }
}
@media (max-width: 576px){
  .banner-img.desktop-banner{
    display: none !important
  }
  .banner-img.mobile-banner{
    display: block !important;
    height: 650px !important;
    background-position: top;
  }
  /*section.top{
  height: 650px !important;
}*/
  .slick-slide{
    position: relative;
  }
  .slick-slide .banner-main-text{
    position: absolute !important;
    bottom: 50px !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 10% !important;
    text-align: center;
  }
  .top .slick-dots{
    display: none !important;
  }
  .slick-slide .headtext{
    font-size: 36px;
  }
  .slick-slide .subtext{
    font-size: 24px;
  }
}

.slick-slide span img {
  display: inline-block;
}
@media (max-width: 480px){
  span.CMSBreadCrumbsCurrentItem, a.CMSBreadCrumbsLink {
    display: inline-block;
    margin-left: 0;
    margin-top: 10px;
  }
}

/********************************PNUT******************************/



.search-click {
  border:0;
  outline: none;
  background: transparent;
  width: 50px;
  height: 43px;
  padding: 6px 12px;
  transition: all 0.5s;
  position: relative;
  right: -25px;
  z-index: 9;
  width:0
}
.search-click::placeholder{
  color: transparent;
}
.search-click:focus::placeholder{
  color: #ddd;;
}
.search-click:focus {
  width: 200px;
  border-bottom:1px solid black;
  box-shadow: none;
  right: 0;
}


.search-click + i{
  position: relative;
  /*z-index: 10;*/
}
.search-click:focus + i{
  z-index: 10;
  cursor: pointer;
}

.footer-menu li{
  display: block;
}
.footer-menu li a{
  color: rgba(255 ,255 ,255,0.3);
}
.forum-redesign.forum-lastest  .PostAttachmentsList{
  height: 200px;
  overflow: hidden;
  position: relative;
}

.forum-redesign.forum-lastest tr.Thread td.ThreadImageDefault.ThreadImage img{
  position: absolute;
  height: auto;
}

@media (max-width: 991px){
  .forum-redesign.forum-lastest tr.Thread{
    width: 30.33%!important
  }
  .forum-lastest .ThreadTable tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .forum-lastest{
    margin-bottom: 30px;
  }
}
@media (max-width: 991px){
  .forum-redesign.forum-lastest tr.Thread{
    width: 100%!important
  }
}

#typeBanner{
  min-height: 307px;
}
.banner-type-slider .banner-type-slider-border{
  border: solid 1px #e2e2e2; 
  border-radius: 15px;
}
.banner-type-slider a.lozad-wrap{
  padding: 15px!important;
  border: 0!important;
}

.font-weight-bold{
  font-weight: 500!important;
}

.contactInfo h4.font-weight-bold{
  color: #1a1a1a;
  font-weight: 500!important;
}

.forum-redesign tr.Thread td.ThreadLogo{
  background-size: 130px auto;
}

.facebookshare img{
  height: 25px;
}
@media (max-width: 991px){
  .headtext h1{
    font-size: 48px!important
  }
}

.career-card{
  min-height: 100px;
}

.career-btn{
  background: #f37721;
  display: block;
  border-radius: 20px;
  color: #fff;
  /* height: 43px; */
  border: 0;
  margin: 15px 0 20px;
  max-width: 120px;
  padding: 8px 15px;
  text-align: center;
  font-size: 20px;
}

.font-20{
  FONT-SIZE: 20px;
}
.font-14{
  FONT-SIZE: 14px;
}
.font-orange{
  color: #f37721;
}
.font-dark{
  color: #1a204b
    
}
.font-gray{
  color: #9e9e9e
    
}
font-white{
  color: #fff
}
.font-bold{
  font-weight: bold;
}
.back-btn{
  font-size: 20px;
}
.back-btn i{
  position: relative;
  top: 2px;
}

.btn-carrer{
  border: solid 2px #f37721;
  display: inline-block;
  border-radius: 20px;
  color: #fff;
  margin: 15px 0 20px;
  min-width: 150px;
  padding: 8px 15px;
  text-align: center;
  font-size: 20px;
  margin: 0 20px;
}
.btn-carrer i{
  position: relative;
  top: 2px;
}
.btn-orange{
  background: #f37721;
}

.carrer_detail ul{
  padding-left: 20px;
  list-style: none;
  margin-bottom: 5px;
}
.carrer_detail ul li{
  padding: 2.5px 0;
}
.carrer_detail ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #f37721; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.SearchDialog table{
  width:100%;
  max-width: 800px;
}
.SearchDialog .FieldLabel{
  display: none;
}
.SearchDialog tr{
  float: left;
  display:inline-block;
  width:30%;
}
.SearchDialog tr:first-child{
  width:70%;
}
.SearchDialog tr:first-child td{
  width: 100%;
  display: block
}
.SearchDialog tr:first-child td input{
  width: 100%;
  
}
.SearchDialog tr input,
.SearchDialog tr button {
  height: 39px;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 24px;
}

.SearchDialog tr .ContentButton{
  background: #F47310;
  padding: 0 20px;
  color: #fff;
  min-width: 150px;
  margin-left: 15px;
}
.search-click{
  font-size: 20px;
}

.noclick{
  cursor: auto;
}
.contact-us-form .ErrorLabel,
.contact-us-form .EditingFormErrorLabel{
  color: red;
}


@media (max-width: 1199.98px) and (min-width: 768px){
  .home .banner-img{
    height: 300px!important;
    bottom: 0px;
    background-position: center left;
  }
  .banner-img:before {
    content: '';
    position: absolute;
    /*background: rgb(0 0 0 / 15%);*/
    width: 100%;
    height: 300px;
  }
}

h1.tx_content04{
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #f47310;
}


.copyright a:hover{
  text-decoration: underline!important;
  
}
#onetrust-banner-sdk #onetrust-policy-text, #onetrust-banner-sdk .ot-dpd-desc, #onetrust-banner-sdk .ot-b-addl-desc{
  font-size: 18px!important;
}
#onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler{
  font-size: 18px!important;
}
#onetrust-pc-sdk #ot-pc-desc{
  font-size: 18px!important;
}
#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpdesc{
  font-size: 18px!important;
}

/*.News-Gallery {
column-count: 4;
column-gap: 7px;
}
.News-Gallery .item{
margin: 5px 0
}*/
.News-Gallery {
  display: flex;
  flex-wrap: wrap;
}

.News-Gallery .item {
  margin: 0;
  width: 25%;
  padding:4px;
}

#language{
  border: 0 !important;
}
#language .lifirst{
  width: 40px;
  border: 0 !important;
  background-image: url('/media/vu0fs1za/angle-down-solid.svg') !important;
  
  background-size: 10px;
  background-color: transparent;
  background-position-x: 45px;
  
  
}
#language .lifirst > a{
  padding-left: 22px;
  background-image: url('/media/uhuhj1xc/world-line.webp') !important;
  background-color: transparent;
  border: 0 !important;
  background-size: 15px;
  background-position-y: 10px;
  font-size: 22px;
  font-weight: 400;
}
#language .langselector li{
  width: auto;
}
#language .langselector ul{
  width: 75px;
  box-shadow: 0 .5rem 0.5rem rgba(0,0,0,.15) !important;
  border-radius: 6px;
  padding: 8px;
}

#language .langselector li:hover ul {
  visibility: visible;
  background-color: #fff;
}
#language .langselector ul li{
  background-color: #fff;
  padding: 0;
  margin: 0;
}
#language .langselector ul li:hover a{
  background-color: #f2f2f2;
}
#language .langselector ul li a{
  padding-left: 24px;
  font-size: 20px;
  border-radius: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.top .navbar #language li a::after{
  display: none
}
@media (min-width: 992px){
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.25rem!important;
    padding-left: 0.25rem!important;
  }
  .top .navbar li {
    margin-left: 2.5px!important;
    margin-right: 2.5px!important;
  }
  .search-click:focus{
    width: 100px;
  }
  
}
@media (min-width: 992px){
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.25rem!important;
    padding-left: 0.25rem!important;
  }
  .top .navbar li {
    margin-left: 2.5px!important;
    margin-right: 2.5px!important;
  }
  .search-click:focus{
    width: 66px;
  }
  .navbar-brand{
    margin-right: 5px!important
  }
  .navbar .navbar-brand img{
    height: 39px!important;
  }
  
}
@media (min-width: 1024px){
  .navbar .navbar-brand img{
    height: 40px!important;
  }
  .search-click:focus{
    width: 70px;
  }
  .navbar-brand{
    margin-right: 16px!important
  }
}
@media (min-width: 1050px){
  
  .search-click:focus{
    width: 100px;
  }
}
@media (min-width: 1300px){
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.4rem!important;
    padding-left: 0.4rem!important;
  }
  .search-click:focus{
    width: 200px;
  }
}
@media (min-width: 1440px)  {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem!important;
    padding-left: 0.5rem!important;
  }
}
@media (max-width: 992px)  {
  #language .langselector ul{
    position: relative!important;
    visibility: visible!important;
  }
  #language .lifirst>a{
    display: none;
  }
  #language .langselector ul{
    width: auto;
    box-shadow: none;
    padding: 0;
    border: 0;
  }
  #language .langselector ul li{
    
    float: left;
    border: solid 1px #dbdbdb;
    border-radius: 6px
  }
  #language .langselector ul li + li{
    margin-left: 16px;
  }
  #language .langselector ul li a{
    font-size: 24px;
    
    padding:8px 36px 8px 60px;
    background-position-x: 24px;
    background-size: 30px 20px;
    
  }
  body.THTH #language .langselector ul li+li a{
    background-color: #f2f2f2;
    border-color: #f2f2f2;
  }
  
  body.ENUS  #language .langselector ul li:first-child a{
    background-color: #f2f2f2;
    border-color: #f2f2f2;
  }
  
}
@media (max-width: 1200px)  {
.News-Gallery .item {
    width: 33.33%;
  }
}
@media (max-width: 768px)  {
.News-Gallery .item {
    width: 50%;
  }
}

.service-card .description {
  margin-top: 15px !important;
  font-size: 18px !important;
}

.career-offering-description {
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  line-height:18px !important;
  max-height:150px;
}

/* form container */
.contact-us-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-us-success {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    padding: 40px 20px;
    text-align: center;
    width: 530px;
  }
  
  #contactusForm {
    font-size: 24px;
    width: 530px;
}

/* heading */
#contactusForm h3,
h3 {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 12px 0;
}

/* common spacing */
#contactusForm > * {
    display: block;
    margin-top: 8px;
    margin-bottom: 22px;

}

#contactusForm .contact-us-desc-text {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* SELECT */
#contactusForm select.formcontact {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 24px;
    color: #333;
    border: 1px solid #d6d6d6;
    border-radius: 22px;
    background-color: #fff;
    box-sizing: border-box;
}

/* INPUT – underline style */
#contactusForm input.formcontact {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    font-size: 24px;
    color: #333;
    background: transparent;
    box-sizing: border-box;
}

/* input focus */
#contactusForm input.formcontact:focus {
    outline: none;
    border-bottom-color: #f58220;
}

/* textarea */
#contactusForm textarea {
    width: 100%;
    height: 80px;
    padding: 12px 14px;
    font-size: 24px;
    color: #333;
    border: 1px solid #d6d6d6;
    border-radius: 18px;
    box-sizing: border-box;
    resize: none;
}

/* textarea focus */
#contactusForm textarea:focus {
    outline: none;
    border-color: #f58220;
}

/* submit button */
#contactusForm button[type="submit"] {
    display: block;
    margin: 30px auto 0 auto;
    padding: 12px 48px;
    font-weight: bold;
    color: #fff;
    background-color: #f58220;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 250px;
}

/* hover */
#contactusForm button[type="submit"]:hover {
    background-color: #e16f12;
}

@media (max-width: 575.98px) {
    .SearchDialog tr .ContentButton {
        margin-left: 0 !important;
    }

    .SearchDialog tr {
        width: 100%;
        display: table-row;
    }

        .SearchDialog tr:first-child {
            width: 100%;
            float: none;
        }

        .SearchDialog tr:last-child {
            float: none;
            text-align: center;
        }

            .SearchDialog tr:last-child > td {
                padding-top: 10px;
            }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #contactusForm {
   width: 450px !important;;
  }

  .contact-info {
    width: 450px !important;
  }

  .contact-us-success {
  width: 450px !important;
  }
}

@media (max-width: 575px) {
  .contact-us-widget {
    align-items: center !important;
  }
  .contact-info {
    width: 360px !important;
  }

  .contact-us-success {
  width: 360px !important;
  }
  
  #contactusForm {
  width: 360px !important;;
  }
}