/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: 'Anek Tamil', sans-serif;
  color: #262626;
  font-size: 16px;
 overflow-x: hidden;
}

a {
  color: #428bca;
}

a:hover {
  color: #9eccf4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
 font-family: 'Anek Tamil', sans-serif;
  color: #262626;
  font-weight:800;
}

section {
    padding: 80px 0;
}

p {
 font-family: 'Anek Tamil', sans-serif;
  color:#262626;
  font-weight: 300;
  font-size: 16px;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px;
  }
}
h4
{
  font-size:24px;
}
h6
{
  font-size:18px;
}
.main-heading {
    font-family: 'Anek Tamil', sans-serif;
    color: #102136;
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
}
.sub-heading{
  font-family: 'Anek Tamil', sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.flex-end{
  justify-content: flex-end;
}

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

.text-white{
  color: #fff;
}

.d-grid{
  display: grid;
}

.d-grid.grid-columns-2{
  grid-template-columns: repeat(2, 1fr);
}
.d-grid.grid-columns-3{
  grid-template-columns: repeat(3, 1fr);
}
.d-grid.grid-columns-4{
  grid-template-columns: repeat(4, 1fr);
}
.d-grid.grid-columns-5{
  grid-template-columns: repeat(5, 1fr);
}

.grid-gap-18{
  grid-gap: 18px;
}

.grid-gap-20{
  grid-gap: 20px;
}

.grid-gap-30{
  grid-gap: 30px;
}

.grid-gap-40{
  grid-gap: 40px;
}

.grid-gap-50{
  grid-gap: 50px;
}

.grid-gap-60{
  grid-gap: 50px;
}

.btn-theme {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0px;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 8px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    font-family: 'Anek Tamil', sans-serif;
    min-width: 200px;
    text-align: center;
  text-transform: uppercase;
}
.btn-theme-blue {
    border: 1px solid #2241A6;
    background: #2241A6;
}
.btn-theme-blue:hover {
    border: 1px solid #1a399f;
    background: #1a399f;
    color: #fff;
}
button:focus {
    outline: 0;
}


.slider-nav-left, .slider-nav-right{
  position: relative;
}

.slider-nav-left:before{
  content:url(../img/nav-left.png);
}

.slider-nav-right:before{
  content:url(../img/nav-right.png);
}

.owl-prev, .owl-next {
   position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block !important;
}

.owl-prev { left: -65px; }
.owl-next { right: -65px; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar{
  padding: 20px 0;
  border-bottom: 1px solid #DADADA;
}

#topbar .top-bar-search-form{
  max-width: 464px;
  width: 100%;
  margin-left: 30px;
  line-height: 1;
}

#topbar .top-bar-search-wrap{
  width: 100%;
  display: inline-block;
}

/*
#topbar .top-bar-search-wrap .form-control {
    border: none;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 12px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
*/
#topbar .top-bar-search-wrap input {
    height: 41px;
    color: #000;
    padding: 0px 10px 0px;
    border:1px solid #DADADA;
    border-radius: 12px 0px 0px 12px;
    width: calc(100% - 116px);
    float: left;
}


#topbar .top-bar-search-wrap span.input-group-btn {
    float: left;
    width: 116px;
}

#topbar .top-bar-search-wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px;
    border:1px solid #2241A6;
    width: 100%;
    height: 41px;
    background-color: #2241A6;
    color: #fff;
  text-transform: none !important;
    margin: -1px;
    border-radius: 0px 12px 12px 0px;
    text-transform: uppercase;
    position: relative;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

#topbar .top-menu-container .top-menu{
  list-style-type: none;
  margin-bottom: 0;
}

#topbar .top-menu-container .top-menu li, #topbar .top-menu-container .top-menu li a{
  color: #2241A6;
  font-weight: 500;
}


#header {
    background-color: #fff;
    z-index: 999 !important;
}


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color:#262626;
  padding: 12px 18px;
  transition: 0.3s;
  font-size: 16px;
 font-family: 'Anek Tamil', sans-serif;
  font-weight: 500;
}
.nav-menu li:first-child a{
  padding-left: 0 !important;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #2241A6;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #101010;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #B70606;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
      color: #B70606;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.search-icon {
  width: 20px;
}


header .sub-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    top: 130%;
   
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    width: 219px;
    padding: 20px;
    border: 0;
    left: -63px;
    background: #FFF;
    box-shadow: 0 0 4px rgba(0,0,0,.11);
    z-index: 999;
}
 header .sub-menu a {
    padding: 10px 0px;
}
header   .dropdown.dropdown a:before, 
header   .menu-item-has-children a:before {
    content: "";
    position: absolute;
    height: 7px;
    width: 7px;
    border: 1px solid #000000;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(132deg);
    top: 18px;
    right: 4px;
}

ul.sub-menu a:before {
    display: none;
}

@media (min-width: 992px) {
     .navbar-nav {
        align-items: center;
    }
  .sub-menu {
        position: absolute;
    }

    header .dropdown:hover .dropdown-menu, 
    header .menu-item-has-children:hover .sub-menu {
        visibility: visible !important;
        top: 100%;
        opacity: 1;
        display: block;
    }
}

 


@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

@media screen and (min-width:992px) and (max-width:1199px) {
  .nav-menu a {
    padding: 12px 12px;
    font-size: 14px;
  }
}


/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #101010;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #16ABB3;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
  width: 42px;
  max-width: 42px;
    top: 14px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
   /* border: 1px solid #a7a7a7;*/
    box-shadow: none !important;
    border-radius: 5px;
    font-size: 28px;
    line-height: 0;
    padding-top: 3px;
}

.mobile-nav-toggle i {
    color: #0c0c0c;
    font-weight: normal;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
.icofont-navigation-menu:before {
   content:"" !important;
   width: 36px;
   height: 36px;
   background:url('../img/menu.png') no-repeat;
   position: absolute;
   right: 0;
   top: 0px;
   background-size: contain;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer{
  padding: 50px 0;
}

ul.foo-social{
  list-style-type: none;
  display: flex;
  gap:20px;
  padding: 0;
  margin: 0;
}

.foo-logo{
  margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links ul {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
}
.footer-links ul li {
    margin-bottom: 5px;
}
.footer-links ul li a{
  font-size: 16px;
  color: #262626;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/
#main{
  min-height: 100px;
}



.banner-form-col{
  position: relative;
  width: 100%;
  min-height: 642px;
}

.banner-form-wrapper{
  max-width: 632px;
  width: 100%;
  min-height: 566px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 4px;
  padding: 40px;
}

.banner-form-wrapper p{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #262626
}

section.about-sec{
  background-image: url(../img/element-dots.png);
  background-repeat: no-repeat;
  position: relative;
}

section.about-sec:before{
  content: url(../img/element-2.webp);
  position: absolute;
  left: 0;
  bottom: 0;
}

section.about-sec:after{
  content: url(../img/element-1.webp);
  position: absolute;
  right: 0;
  top: 0;
}

section.about-sec .container{
  z-index: 2;
  position: relative;
}

section.more-benefits-sec{
  padding-bottom: 120px;
}

.benefits-blurbs .blurb{
  background-color: #F6F8FF;
  border:1px solid #E6E6E6;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}

.benefits-blurbs .blurb .blurb-title{
  font-size: 24px;
  font-weight: 600;
}

.benefits-blurbs .blurb .image-container{
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.benefits-blurbs .blurb .image-container img{
  max-width: 100%;
}

.more-benefits-blurbs .blurb{
  border-bottom: 1px solid #fff;
}
.more-benefits-blurbs .blurb .image-container{
  margin-bottom: 25px;
}

.more-benefits-blurbs .blurb .image-container img{ 
  width: 100%;
}

.more-benefits-blurbs .blurb .blurb-title{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.more-benefits-blurbs .blurb p{
  color: #fff;
}

section.advantage-sec{
  position: relative;
}
section.advantage-sec:before{
  content: url(../img/element-3.webp);
  position: absolute;
  right: 0;
  top: 30px;
}



.advantage-table td, .advantage-table th{
  padding: 20px 30px;
  
}

.advantage-table tr th{
  width: 20%;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  background-color: #F6F8FF;
}

.advantage-table tr td {
    font-size: 24px;
    font-weight: 700;
}
.advantage-table tr td p {
    font-weight: 700;
    font-size: 18px;
}
.advantage-table tr td:nth-child(2), .advantage-table tr td:nth-child(2) p{
  font-size: 18px;
  font-weight: 400;
}

.advantage-table tr th:nth-child(2){
  width: 40%;
}

table.rounded-corners {
 /* Change these properties */
 --border: 1px solid #E6E6E6;
 border-radius: 10px;

 /* Don't change these properties */
 border-spacing: 0;
 border-collapse: separate;
 border: var(--border);
 overflow: hidden;
}

/* Apply a border to the right of all but the last column */
table.rounded-corners th:not(:last-child),
table.rounded-corners td:not(:last-child) {
 border-right: var(--border);
}

/* Apply a border to the bottom of all but the last row */
table.rounded-corners>thead>tr:not(:last-child)>th,
table.rounded-corners>thead>tr:not(:last-child)>td,
table.rounded-corners>tbody>tr:not(:last-child)>th,
table.rounded-corners>tbody>tr:not(:last-child)>td,
table.rounded-corners>tfoot>tr:not(:last-child)>th,
table.rounded-corners>tfoot>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>td,
table.rounded-corners>tr:not(:last-child)>th,
table.rounded-corners>thead:not(:last-child),
table.rounded-corners>tbody:not(:last-child),
table.rounded-corners>tfoot:not(:last-child) {
 border-bottom: var(--border);
}


section.mid-cta-sec{
  background-position: center right !important;
  padding: 50px 0;
  min-height: 278px;
  position: relative;;
}

section.mid-cta-sec:after{
  content: url(../img/mid-cta-img.png);
  position: absolute;
  right: 47px;
  bottom: 0;
}

table.specs-table{
  width: 100%;
 
}
table.specs-table th{
  width: 20%;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
}
table.specs-table td{
  font-size: 18px;
  font-weight: 400;
}

table.specs-table th, table.specs-table td{
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
table.specs-table th:not(:last-child), table.specs-table td:not(:last-child){
  border-right: 1px solid #E6E6E6
}

section.technical-specs-sec .table-wrapper{
   background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 60px;
}

section.technical-specs-sec{
  position: relative;
}



section.technical-specs-sec .container{
  position: relative;
  z-index: 2;
}

/* section.technical-specs-sec:before{
  content: url(../img/element-5.webp);
  position: absolute;
  left: 0;
  bottom: 0;
}

section.technical-specs-sec:after{
   content: url(../img/element-4.webp);
    position: absolute;
    right: 0;
    top: 30px;
} */
section.manufacturing-process-sec  {
    padding-top: 50px;
}
section.manufacturing-process-sec .nav-tabs-row{
  margin-top: 60px;
}


ul.nav-tabs, .nav-tabs .nav-link.active, ul.nav-tabs li a, ul.nav-tabs li a:hover{
  border: 0;
}


ul.nav-tabs li {
    width: 20%;
    justify-content: center;
    text-align: center;
}

section.manufacturing-process-sec ul.nav-tabs li a{
  text-align: center;
  border: 0 !important;
  height: 225px;
  transition: 0.5s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
     
}

section.manufacturing-process-sec ul.nav-tabs li a .steps{
  width: 88px;
  height: 88px;
  background-color: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 500;
  color: #262626;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  transition: 0.5s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
      position: relative;
  z-index: 2;
  font-family: 'Anek Tamil', sans-serif;
}

section.manufacturing-process-sec ul.nav-tabs li a.active .steps, section.manufacturing-process-sec ul.nav-tabs li a:hover .steps{
  background-color: #262626 !important;
  color: #fff !important;
  font-weight: 800;
}

section.manufacturing-process-sec ul.nav-tabs li a h4{
  font-size: 18px;
  font-weight: 600;
  max-width: 175px;
  margin: auto;
}

section.manufacturing-process-sec ul.nav-tabs li{
  position: relative;
  margin-bottom: 0;
}

section.manufacturing-process-sec ul.nav-tabs li:before{
  content: '';
  width: 100%;
  height: 3px;
  background-color: #E8E7E6;
  position: absolute;
  left: 0;
  top: 52px;
}

section.manufacturing-process-sec ul.nav-tabs li:first-child:before{
  width: 50%;
  right: 0;
  left: auto;
}

section.manufacturing-process-sec ul.nav-tabs li:last-child:before{
  width: 50%;
}

section.manufacturing-process-sec ul.nav-tabs li a.active:before{
    content: url(/wp-content/uploads/2023/12/mobile-arrow-bottom.png);
/*   content: url(../img/icon/active-shape.png); */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  transition: 0.5s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

section.manufacturing-process-content-sec{
  background-color: #F6F8FF;
  border-top:1px solid #e6e6e6;
}

.tab-content-text p{
  font-size: 18px;
  font-weight: 500;
}

.application-item{
  border-radius: 12px;
  overflow: hidden;
}

.application-item .image-container{
  position: relative;
  padding-bottom: 58%;
  margin: 0;
}

.application-item .image-container img{
  position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.application-item h4{
  text-align: center;
  padding: 15px;
  color: #fff;
  background-color: #000000;
  margin:0;
  font-size: 24px;
  font-weight: 700;
}

.cost-estimator-sec{
  min-height: 424px;
}

.cost-estimator-wrapper{
  max-width: 660px;
  width: 100%;
  min-height: 291px;
  background-color: #fff;
  border-radius: 5px;
  text-align: right;
  padding: 40px;
  margin-left: auto;
  margin-right: 0;
}

.cost-estimator-wrapper .main-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    text-align: left;
}

.cost-estimator-wrapper p {
    font-size: 18px;
    text-align: left;
    font-weight: 400;
}

section.cost-estimator-sec{
  position: relative;
}

section.cost-estimator-sec:after{
  content: url(../img/element-1-1.webp);
  position: absolute;
  right: 0;
  bottom: -90px;
}

.testimonial-item{
  display: flex;
  padding: 40px;
  border: 1px solid #DADADA;
  border-radius: 12px;
}

.testimonial-item .image-container{
  width: 87px;
  height: 87px;
  border-radius: 50%;
  position: relative;
}

.testimonial-item  .testimonial-content-wrap {
    width: calc(100% - 87px);
    padding-left: 34px;
}
.testimonial-item h5 {
    font-size: 18px;
    font-weight: 500;
}
.star-rating {
    margin-bottom: 5px;
}
.testimonial-item .image-container img{
   position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.star-rating i{
  color: #F7C749;
  font-size: 25px;
}

.testimonial-content-wrap h4{
  font-size: 24px;
  font-weight: 800;
}

.testimonial-content-wrap p{
  font-size: 18px;
}

.bottom-about-sec{
  padding: 0;
}

.bottom-about-sec .img-container{
  margin-top: -30px;
}

.bottom-about-sec p{
  font-size: 18px;
  color: #fff;
}

.right-nav a {
    font-weight: 500;
    color: #2241a6;
}

.testimonial-sec{
  position: relative;
}

.testimonial-sec:before{
   content: url(../img/testimonial-element.webp);
  position: absolute;
  left: 0;
  bottom: -10px;
}

.owl-carousel button.owl-dot{
  background-color: #DADADA;
  height: 9.8px;
  width: 9.8px;
  border-radius: 50%;
  margin-right: 10px;
}

.owl-carousel button.owl-dot.active{
   background-color: #262626;
}

.owl-carousel .owl-dots{
  text-align: center;
  margin-top: 50px;
}

.star-rating i.star-gray {
color: #E6E6E6;
}

section.video-banner {
    padding: 0px 0px;
}
.home .banner-desk {
    display: none;
}

.video-banner {
    min-height: calc(100vh - 161px);
    padding: 50px 0px 62px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
}
.video-banner {
    background: url('../img/video-poster.jpg') no-repeat;
    background-size: cover !important;
}
video#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

 .video-banner .container {
  position: relative;
  z-index: 4;
}
 .video-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  z-index: 1;
  opacity: 0.2;
}

.banner-title {
    color: #FFF;
    text-align: center;
}

 


  

span.mute-icon.audio-icon {
    display: none;
}

.audio-icon img {
    max-width: 18px !important;
    display: inline-block;
}

.audio-open span.mute-icon.audio-icon {
    display: inline-block;
}

.audio-open span.unmute-icon.audio-icon {
    display: none;
}

span.mid-icon span {
    display: block;
}

.video-box {
    background: #FFF;
    padding: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,.22);
}
.mfp-iframe-scaler iframe {
    background: #FFF !important;
    padding: 14px;
}
.video-box.box-primary {
    background: #2241a6;
}
.bottom-about-sec a.btn-theme,
.tab-content-text a.btn-theme{
    display: none;
}

.gallery-sec h3 {
    text-transform: capitalize;
}
.ecp_data h2 {
    font-weight: 600;
}

.ecpdiv3 h3 {
    font-weight: 600 !important;
}
.advantage-table tr td,
table.specs-table tr th{
    font-weight: 600;
}
.tableclass td, .tableclass th {
    font-weight: normal;
}



/*Custom Select*/

body .custom-select-wrapper {
    max-width: 100%!important;
    min-width: 100%;
    padding: 0;
}

.custom-select-button {
    box-shadow: none !important;
    height: 49px;
    border: 0 !important;
    color: #7e7e7e !important; 
}
body .custom-select-option.active {
    background-color: #2241a6 ;
    color: #ffffff;
}

.entry-title {
    font-weight: 700;
}
.fixed-button2 a {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0,0,0,.44);
    padding: 6px;
    border-radius: 10px;
    display:inline-block !important;
}

.fixed-button2 span.mid-icon img {
    max-width: 33px;
}

.fixed-button2  span.mid-icon span {
    line-height: 17px;
    font-size: 14px;
    margin-top: 6px;
}
/*Responsive */




@media (min-width:992px){
header .sub-menu .sub-menu {
    display: none !important; 
}

header .sub-menu .menu-item-has-children:hover  .sub-menu{
    display:block !important;
    left: 100%;
    top: 0;
}

.menu-item-has-children {
    position: relative;
}	
}



@media (min-width:992px) and (max-width:1200px){
.application-item h4 {
    font-size: 20px;
} 
}



@media (max-width:991px){
ul.sub-menu {
    padding-left: 22px !important; 
}	
#header {
    padding: 10px 10px;
}
section.about-sec {
    background-image: none;
} 
.search-sm {
    display: inline-block !important;
    float: right;
    margin-right: 42px;
    margin-top: 12px;
}

#header .container {
    max-width: 97%;
}
.banner-text {
    margin-top: 69%;
}
.logo-sm {
    position: relative;
    left: -9px;
} 
  
.mfp-iframe-scaler iframe {
    padding: 10px;
} 
.owl-prev {
    left:10px;
} 
.owl-next {
    right:10px;
} 
.logo-sm {
    display: inline-block !important;
    position: relative;
    left: -20px;
} 
.slider-nav-left:before, .slider-nav-right:before {
    filter: brightness(0) invert(0);
}

  .right-nav{
    display: none;
  } 
  
.d-grid.grid-columns-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}  

.more-benefits-blurbs .blurb p {
    margin-bottom: 25px;
}
.d-grid.grid-columns-5 {
    grid-template-columns: repeat(2, 1fr);
}

img {
    max-width: 100%;
}



.bottom-about-sec .content-text {
    text-align: center;
}

.bottom-about-sec  h2.main-heading.text-white {
    text-align: center;
}
 

.bottom-about-sec {
    padding: 40px 0px 0;
}

.main-heading {
    font-size: 30px;
    line-height: 38px;
}

.testimonial-item {
    flex-wrap: wrap;
}

.testimonial-item .image-container {
    width: 100%;
}

.testimonial-item .image-container img {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    margin: auto;
}

.testimonial-item .testimonial-content-wrap {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-top: 20px;
}

.testimonial-slider {
    margin-top: 25px;
}

.btn-col.text-right {
   /* text-align: left !important;*/
}

.cost-estimator-wrapper {
    padding: 30px;
}

.cost-estimator-sec {
    min-height: auto;
}

section {
    padding: 40px 0px;
}
body.search-open .form-sm {
    display: block !important;
    position:absolute;
    bottom: -67px;
    z-index: 999;
    background: #FFF;
    width: 100%;
    left: 0;
    right: 0;
    padding: 10px;
}
 
#header {
    position: relative;
}

body.search-open .form-sm  button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #2241A6;
    width: 54px !important;
    height: 48px;
    background-color: #2241A6;
    color: #fff;
    text-transform: none !important;
    margin: -1px;
    border-radius: 0px 12px 12px 0px;
    text-transform: uppercase;
    position: relative;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

body.search-open .form-sm  .top-bar-search-wrap {
    display: flex;
}

body.search-open .form-sm  .form-control {
    height: 47px;
}
.search-sm i {
    font-size: 20px;
} 
li.menu-sm {
    display: block !important;
} 
  
section.banner-sm {
/*    display: block !important;*/
/*     min-height: 400px;
    background-size: cover !important; */
  padding-top: 0px;
  padding-bottom: 0px;
    position: relative;
}
section.banner-sm .img-sec {
    position: relative;
}
.banner-desk {
    background-image: none !important;
    margin-top: -210px;
}

.banner-form-wrapper {
    position: relative;
    box-shadow: 0px 0px 10px rgba(0,0,0,.11);
    min-height: auto;
    margin: auto;
}
  
 .banner-form-col {
    min-height: auto;
} 
.banner-form-wrapper p br {
    display: none;
}

.benefits-blurbs .blurb .blurb-title {
    font-size: 16px;
}

.more-benefits-blurbs .blurb .blurb-title {
    font-size: 24px;
    line-height: 24px;
} 
.benefits-blurbs .blurb {
    padding: 15px;
} 
section.more-benefits-sec {
    padding-bottom: 40px;
}
  
.blurbs.more-benefits-blurbs {
    margin-top: 24px;
} 
  
  
.sub-heading {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}
  
section.about-sec:after {
    content: "";
    width: 100px;
    height: 90px;
    background: url(../img/element-1.webp) no-repeat;
    position: absolute;
   right: -7px !important;
    top: 28px !important;
    background-size: contain;
} 
  
section.advantage-sec:before{
 content: "";
    width: 100px;
    height: 90px;
    background: url("../img/element-3.webp") no-repeat;
    position: absolute;
   right: -7px !important;
    top: 28px !important;
    background-size: contain;
  opacity: 0;
} 
section.cost-estimator-sec:after {
    content: "";
    width: 65px;
    height: 143px;
    background: url("../img/element-1-1.webp") no-repeat;
    position: absolute;
    bottom: -134px;
    background-size: contain;
}
  
section.technical-specs-sec:before {
    content: "";
    width: 96px;
    height: 119px;
    background: url("../img/element-5.webp") no-repeat;
    position: absolute;
    bottom: -69px;
    right: 0 !important;
    background-size: contain;
    left: auto;
}
section.about-sec:before {
    content: "";
    width: 100px;
    height: 90px;
    background: url(../img/element-2.webp) no-repeat;
    position: absolute;
    left: 0px !important;
    bottom: 1px !important;
    background-size: contain;
} 
.advantage-table td, .advantage-table th {
    padding: 10px;
}

.advantage-table tr td {
    font-size: 14px;
    line-height: 18px;
}

.advantage-table tr td p {
    font-size: 14px;
    line-height: 16px;
}

.advantage-table tr td:nth-child(2), .advantage-table tr td:nth-child(2) p {
    font-size: 14px;
}
section.technical-specs-sec:after {
    display: none;
}

.advantage-table tr th {
    font-size: 14px;
    line-height: 16px;
}   
::-webkit-scrollbar {
  width: 7px;
    height:5px;
  border-radius: 30px;
}

 
::-webkit-scrollbar-track {
  background: #ffffff;
  box-shadow: inset 0 0 5px grey;
  border-radius: 30px;
}

 
::-webkit-scrollbar-thumb {
  background: #000000;
  box-shadow: inset 0 0 5px grey;
  border-radius: 30px;
}

 
::-webkit-scrollbar-thumb:hover {
  background: #000000;
  box-shadow: inset 0 0 5px grey;
  border-radius: 30px;
} 
section.mid-cta-sec {
    background-position: left !important;
    padding-bottom: 0;
}

section.mid-cta-sec {
    text-align: center;
} 
section.mid-cta-sec:after {
    display: none;
}
  
section.technical-specs-sec .table-wrapper {
    padding: 3px;
}

table.specs-table th, table.specs-table td {
    min-width: 145px;
    background: #f9f9f9;
    line-height: 21px;
    font-size: 15px;
}
 
.table-responsive.mt-30 {
    margin-top: 30px;
}
 section.manufacturing-process-sec ul.nav-tabs li a .steps {
    width: 50px;
    height: 50px;
    font-size: 21px;
}

section.manufacturing-process-sec ul.nav-tabs li a h4 {
    font-size: 12px;
    font-weight: 700;
}

section.manufacturing-process-sec ul.nav-tabs li a {
    height: 141px;
}
 

section.manufacturing-process-sec ul.nav-tabs li:before {
    top: 36px;
}

section.manufacturing-process-sec .nav-tabs-row {
    margin-top: 1px;
}

section.manufacturing-process-sec {
    padding-top: 26px;
}

.tab-pane {
    padding: 15px 0px  0;
}

.tab-pane .img-container {
    margin-bottom: 30px;
} 
  .main-heading {
    margin-bottom: 15px;
} 
.footer-col {
    margin-bottom: 30px;
} 
.footer-sm {
    border-top: 1px solid #ebebeb;
    padding: 15px 0px 15px;
}

.footer-sm  .footer-col {
    margin-bottom: 0 !important;
}

.footer-sm .row {
    align-items: center;
    justify-content: space-between;
}

.footer-sm  .foo-logo {
    margin-bottom: 0;
}

footer {
    padding: 50px 0px 0px;
} 
  
body.search-open .form-sm .form-control {
    border-radius: 10px 0px 0px 10px;
} 
.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
    color: #ffffff;
    text-decoration: none;
} 
section.about-sec .main-heading {
    margin-bottom: 0;
}
 
.banner-form-wrapper h2,
.more-benefits-sec h2{
    margin-bottom: 10px;
}

  
  
}






@media (max-width:348px){
  
.search-sm {
    margin-right: 32px;
} 
  
}




/* @media (min-width:1200px){
.bottom-about-sec .img-container {
    margin-top: -76px;
} 
} */


@media (max-width:991px){
 .more-benefits-blurbs .blurb {
    display: flex;
    align-items: flex-start;
}
.tab-pane h2.main-heading {
    display: flex;
}
.steps-num:before {
    content: ".";
    float: right;
}
.steps-num {
    margin-right: 10px;
}
.more-benefits-blurbs .blurb .image-container {
    width: 120px;
    margin-right: 10px;
}

.blurb-desc {
    flex: 1;
}
.more-benefits-blurbs .blurb:last-child {
    border: 0;
}
.more-benefits-blurbs .blurb .image-container img {
    height: auto;
}
.cost-estimator-wrapper .main-heading , .testimonial-sec h2.main-heading{
    margin-bottom: 6px;
}
.more-benefits-blurbs .blurb .blurb-title {
    font-size: 20px;
    line-height: 20px;
}  
table.specs-table th, table.specs-table td {
    padding-top: 5px;
    padding-bottom: 5px;
} 
.more-benefits-blurbs .blurb .image-container img {
    border-radius: 6px;
} 
.hero-form.mt-5 {
    margin-top: 30px !important;
} 
section.advantage-sec , .about-sec{
    overflow-x: hidden;
}   
  
}

@media (min-width:481px) and (max-width:991px){
  .more-benefits-blurbs .blurb .image-container {
    width: 220px;
    margin-right: 20px;
}  
}



@media (min-width:375px) and (max-width:991px){
 .blurbs.benefits-blurbs {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 6px;
}


.benefits-blurbs .blurb {
    padding: 8px;
}

.benefits-blurbs .blurb .image-container img {
    max-width: 75%;
}

.benefits-blurbs .blurb .image-container {
    align-items: center;
}     
}

@media (max-width:480px){

.benefits-blurbs .blurb .blurb-title {
    font-size: 14px;
}    
}



@media (max-width:767px){
.more-benefits-blurbs .blurb {
    display: inline;
}

.more-benefits-blurbs .blurb .image-container {
    margin-right: 0;
    width: 100%;
} 
}



@media (min-width:375px) and (max-width:991px){
.blurbs.benefits-blurbs {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.benefits-blurbs .blurb {
    width: calc(32.10% - 1px);
}
    
}







/*New */


#topbar .top-bar-search-wrap , ul#menu-top {
    display: none !important;
}
.advantage-table tr td {
    vertical-align: top;
}

table.specs-table   tr th {
    width: 20%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background-color: #F6F8FF;
    padding-top: 18px;
}

section.technical-specs-sec .table-wrapper {
    padding: 0;
}.search-sm {
    display: none !important;
}
.advantage-table tr td:nth-child(3) {
    white-space: nowrap;
}
.btn-col-top {
    text-align: right;
}

.banner-form-wrapper {
    display: none;
}

.banner-form-col {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.form-open .banner-form-wrapper {
    display: block;
}

.form-open .btn-col-top {
    display: none;
}

@media (min-width:992px){
.banner-desk {
    min-height: 100vh;
} 
.btn-col-top {
    margin-top: 109px;
}

/* .banner-desk .container {
    max-width: 100%;
}  */
.btn-col-top {
    position: absolute;
    bottom: 0;
} 
}



@media (min-width:992px) and (max-width:1400px){
.banner-desk {
     
    background-size: 100% 100% !important;
}
.btn-col-top {
    bottom: 100px;
}    
}


@media (max-width:991px){
section.banner-sm .main-heading {
    color: #FFF;
    text-shadow: 0px 0px 14px #000;
} 
table.specs-table tr th {
    font-size: 14px;
    line-height: 20px;
    padding-top: 3px;
} 

.banner-desk .btn-col-top {
    display: none;
}

.banner-desk {
    display: none;
}

/* section.banner-sm .btn-col-top{
 
    margin-top: 145px;
} */
section.banner-sm .btn-col-top {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -72%);
}
.btn-col-top {
    text-align: center;
}

.form-open .banner-desk {
      display: block;
} 
  
  
}


/*******My css*********/
@media (min-width: 992px)
{
.home .banner-desk {
    min-height: auto;
    height: 85vh;
    background-size: cover!important;
    background-position: bottom center!important;
}
  .img-block-right a.btn-theme {
    margin-top: 10px;
}
  .img-block-right {
       position: absolute;
    right: 0px;
    width: 250px;
    top: 10%;
    text-align: center;
}
  .img-block-right a.btn-theme {
    margin-top: 10px;
    border: 1px solid #fff;
    background: #fff;
    color: #2241A6;
  font-size: 20px;
}
  .btn-col-top2 a.btn-theme {
    margin-top: 10px;
    border: 1px solid #fff;
    background: #fff;
    color: #2241A6;
  font-size: 20px;
  min-width: 215px;
}
}
.carousel-container {
    position: relative;
    height: 65vh;
}
.bx {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 40px;
    left: 0px;
    right: 0;
}
.carousel-container h1 {
    color: #fff;
    font-size: 70px;
    width: 50%;
    margin-bottom: 10px;
/*     border-bottom: 3px solid #eb1c24; */
}
.carousel-container p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
  font-size: 21.5px;
}
.btn-col-top2 {
    justify-content: center;
    align-items: flex-end;
    position: absolute;
/*     bottom: 0px; */
    /* left: 0px; */
/*     right: -35px; */
  left: 50%;
    transform: translate(-50%, -50%);
   bottom: 50px;
    display: flex;
    z-index: 2;
}
.banner-form-col {
    display: none;
}
.logo img {
    height: 44px;
    object-fit: contain;
    width: auto;
}
.logo-sm img {
    height: 44px;
    object-fit: contain;
    width: auto;
}
.benefits-blurbs .blurb .image-container img {
    height: 70px;
    object-fit: contain;
    width: 120px;
}



.page-id-575 .formclass {
    max-width: 100%;
    margin-bottom: 25px;
}
 
.fixed-button {
    position: fixed;
    right: 12px;
    bottom: 15px;
    z-index: 999999;
}
select {
    height: 52px;
}
.home .ecp_data h2 {
    margin-bottom: 25px;
}
 section.gallery-sec {
    background: #F6F8FF;
}
.video-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.video-icon img {
    max-width: 46px;
    background: #2241a6;
    border-radius: 50%;
    padding: 10px;
    padding-left: 13px;
    width: 46px !important;
    height: 46px;
}

.pum-theme-267 .pum-container, .pum-theme-lightbox .pum-container {
/*    border-radius: 0 !important; */
}
.fixed-button a.btn-theme {
    width: 84px!important;
    height: 68px!important;
    padding: 6px 10px 5px 10px!important;
    min-width: auto!important;
    display: flex;
    align-items: center;
    font-size: 16px!important;
    border-radius: 10px;
    line-height: 21px;
    justify-content: center;
}
a#btn-unmute {
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 700;
    background: #2241a6;
    position: absolute;
    left: 20px;
    bottom: 20px;
    text-transform: uppercase;
    font-size: 16px; 
    width: 42px;
    height: 33px;
}
.hero-text-overrow {
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
}
.fixed-button a.btn-theme img {
    max-width: 22px;
    margin-bottom: 2px;
}
.check-row input[type=checkbox] {
    position: absolute;
    left: 6px;
    top: 5px;
}

.check-row label {
    padding-left: 24px;
}

.gallery-sec h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}



.bottom-about-sec h2 {
    color: #0E3178 !important; 
}

.bottom-about-sec p {
    color: #11190C;
}


.fixed-button2 {
    position: fixed;
    right: 12px;
    bottom: 100px;
    z-index: 999999;
    text-align: center;
    width: 85px;
    color: #2241A6;
    font-weight: 700
}
.fixed-button2 a {
    color: #2241A6
}


.qr-media img {
    max-width: 240px !important;
}

.wp-title h3 {
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 0;
}

.wp-head {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0,0,0,.11);
    line-height: 95px;
    padding: 4px;
    margin: -47px auto 0px;
    background: #FFF;
}

.wp-box {
    /* background: #FFF; */
    /* box-shadow: 0px 0px 10px rgba(0,0,0,.11); */
    /* border-radius: 10px; */
    /* max-width: 340px; */
    /* padding: 10px; */
    /* margin: 49px auto 0px; */
}

.qr-media {
    margin: 0px 0px;
}

.wp-title {
    margin: 14px 0px 0px;
}

.community h3 {
    font-weight: 600;
}
img{
max-width: 100%;
}
.community {
    text-align: center;
}
.wp-box-wrap {
    /* background: #00a884; */
    /* padding: 3px 7px 17px; */
    /* margin: 14px auto 0px; */
    /* max-width: 364px; */
}

a.linkqr {
    word-wrap: break-word;
}
.btn-join{
	padding: 12px 20px;
    min-width: 200px;
    font-size: 22px;
}
.community {
    border-top: 1px solid #2241a6;
    padding: 8px 0px;
    max-width: 400px;
    margin: 14px auto 0px;
}

.c-icon {
    max-width: 43px;
    position: absolute;
    background: #FFF;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: -26px;
    margin: auto;
}

img {
    max-width: 100%;
}

.certificate-sec {
    background: #F6F8FF;
}
 

.row.cbox-row {
    margin-top: 50px;
}

.c-box {
    border: 2px solid #253f8e;
    text-align: center;
    padding: 41px 20px 29px;
    position: relative;
    /* margin-bottom: 47px; */
}

.c-box h3 {
    font-weight: 600;
    margin: 0;
}

/*Responsive*/


 

@media (min-width:992px)
{
   html.pum-open .pum-container {
    position: absolute !important; 
}
.pum-overlay.pum-active {
    overflow-y: scroll !important; 
    -webkit-overflow-scrolling: touch !important; 
} 

div#mobile {
    display: none;
} 
  section.manufacturing-process-content-sec {
    padding: 60px 0px;
}
}
@media (max-width:991px)
{
	
.c-box {
    margin-bottom: 47px;
} 	
.certificate-sec {
    padding-bottom: 0;
}	
	
div#desktop {
    display: none;
}
.banner-title {
    max-width: 250px;
    margin: auto;
    font-size: 24px;;
}
  
.h1, h1 , .h2, h2{
    font-size: 28px;
} 
.video-banner {
    min-height: 403px;
} 
section.banner-sm p {
    color: #fff!important;
    max-width: 300px;
    margin: 0 auto;
    border-top: 3px solid #eb1c24;
    font-weight: 600;
    background: #00000047;
    margin-top: 20p;
    line-height: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px;
}
  section.banner-sm .btn-theme-blue {
    color: #2241a6;
    border: 1px solid #fff;
    background: #fff;
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 50%), 0 6px 20px 0 rgb(0 0 0 / 50%);
}
  .applications-sec .owl-nav {
    display: none;
}
  .applications-slider.owl-carousel .owl-dots {
    margin-top: 10px!important;
}
}
@media (max-width:767px)
{
  .pum-theme-267 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
    right: -5px!important;
}
}
section.manufacturing-process-sec ul.nav-tabs li span.num {
    display: none;
}
section.manufacturing-process-sec ul.nav-tabs li a h4 br{
    display: none;
}
.foo-logo {
    height: 42px;
    object-fit: contain;
    width: auto;
}
@media (min-width:981px) and (max-width:1200px)
{
  .home .banner-desk {
    height: 70vh!important;
}
  .carousel-container h1 {
    font-size: 50px!important;
}
  .carousel-container p {
    font-size: 15.5px;
}
  .img-block-right {
    width: 210px;
    top: 4%;
}
}
@media screen and (max-width: 1280px) and (max-height: 960px) and (min-height: 801px)
{
  .home .banner-desk {
    height: 70vh!important;
} 
}
.foo-cont a img {
    margin-right: 10px;
    float: left;
    width: 18px;
    height: 18px;
    object-fit: contain;
    position: relative;
    top: 3px;
}
@media (min-width:1270px) and (max-width:1300px)
{
  .img-block-right {
    width: 200px!important;
    top: 5%!important;
} 
  .home .banner-desk {
    height: 82vh!important;
  }
}
@media (min-width:1700px) and (max-width:5464px)
{
.home .banner-desk
  {
    height:90vh;
  }
}



@media (max-width:767px){
  
.gallery-sec .owl-nav {
    display: none;
} 
  
}


/*********Bg image add Css*********/
@media screen and (min-width:992px) and (max-width:1499px)
{
section.page-banner.banner-desk {
    background: url(/wp-content/uploads/2023/12/English-adapt_banner-small-device.jpg)!important;
      background-size: cover!important;
    background-position: bottom center!important;

}
}
@media screen and (min-width:992px) and (max-width:1299px)
{
  .bx {
    top: 15px;
}
  .carousel-container h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 3px; 
}
  .carousel-container h1 span{
      line-height: 70px;
}
  .carousel-container p {
    font-size: 18.5px;
}
  .img-block-right a.btn-theme {
    min-width: 170px!important;
}
}
.carousel-container h1 span {
    border-bottom: 3px solid #eb1c24;
  display:inline-block;
}
.right-nav.float-right a {
    font-size: 20px;
}
@media (min-width:992px)
{
  .more-benefits-blurbs .blurb .image-container img {
    height: 181px;
    object-fit: contain;
}
  
.banner-text {
    margin-top: 30%;
} 
  
}
section.cost-estimator-sec {
    display: none;
}
section#reviews {
    display: none;
}
a#btn-unmute {
    z-index: 99;
}
@media (min-width:992px) and (max-width:1300px)
{
  .btn-col-top2 {
   bottom: 80px!important;
   left: 51%!important;
}
}
.tab-content-text li {
    font-size: 18px;
    font-weight: 500;
}
.tab-content-text ul {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

body .pum-container .pum-content+.pum-close {
    background: #ec1b24;
    border: 2px solid #ec1b24;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    position: absolute;
    right: -10px;
   font-size: 15px;
    top: -11px;
}



@media (min-width:500px) and (max-width:991px){
.banner-text {
    margin-top: 40%;
}    
}


@media (max-width:480px){
  
/*
.banner-text {
    margin-top: 22%;
}

.video-banner {
    min-height: 165px;
}
*/
  
}


 @media (min-width:800px) and (max-width:1200px){
  .gallery-sec h3 {
    min-height: 53px;
}   
 }




@media (min-width:1101px) and (max-width:1200px){

.video-banner {
    min-height: 350px;
}	
.banner-text {
    margin-top: 100px;
}	
	
}

@media (max-width:1100px){
.video-banner {
    min-height: 250px;
}	
.banner-text {
    margin-top: 100px;
}	
	
}

@media (max-width:991px){
  .pum-content.popmake-content {
    max-height: calc(90vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 7px;
}
.video-banner {
    min-height: 250px;
}
 
body .pum-theme-lightbox .pum-container {
    padding-right: 8px !important;
    padding-bottom: 10px!important;
} 

	
	
	
.tab-content {
  position: relative;
  overflow: hidden;
}
	
.tab-pane.fade:not(.active.show){
  opacity: 0;
  transform: translateX(100%);
} 
  .tab-pane.fade.active.show {
   position: relative;
    opacity: 1;
    transform: translateX(0%);
  }
	
  .tab-pane.fade.active.show {
    transition: opacity 400ms ease-out, transform 400ms ease-out;
  }


	
	
	
	
}




@media (min-width:1200px) and (max-width:1600px){
html.pum-open.pum-open-overlay.pum-open-fixed .pum-container {
    top: 16px!important;
    padding: 19px 22px 10px;
}
	
body .pum-container .pum-title {
    font-size: 36px !important;
}	
	
}


@media (min-width:768px) and (max-width:1100px){
.video-banner {
    min-height: 399px;
}	
}


 @media (max-width:767px){
.video-banner {
    min-height: 201px;
}

.banner-text {
    margin-top: 46px;
}
.video-banner:before {
    opacity: 0.2;
}  


#header {
    z-index: 999 !important; 
}	 
	 
}


#post-638 .entry-header{ text-align:center; margin-bottom: 40px;}
form#enquire_form4 {
    width: 60%;
    margin: 0 auto; 
}

@media (max-width:768px){
  form#enquire_form4 {
    width: 100%;
    margin: 0 auto;
  }
}



/*mobile menu*/
@media (max-width:991px){
.sub-menu-toggle {
    top: 12px;
    position: absolute;
    right: 0;
    background: transparent;
    width: 52px;
    height: 28px;
    z-index: 99999;
}

    .sub-menu-toggle.popped ~ .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        background: transparent;
        width: 100%;
        padding: 6px 0px 0px 34px;
    }

    .sub-menu-toggle:before {
       content: "";
    position: absolute;
    height: 7px;
    width: 7px;
    border: 1px solid #ffffff;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(132deg);
    top: 6px;
    right: 20px;
    }

.menu-item-has-children {
    position: relative;
}

ul.sub-menu {
    display: none;
}	
}







