/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-header {
  position: relative;
  height: 150px;
  background-color: #00374a; /* replace #331d35 with #00374a */
}
.cd-header h1 {
  color: #ffffff;
  line-height: 150px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    height: 180px;
  }
  .cd-header h1 {
    line-height: 180px;
  }
}

.cd-main-content {
    font-family: "Inter", Ariel !important;
  position: relative;
  min-height: 100vh;
     font-family: Inter, Arial;
    background: #f9f9f9;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.cd-main-content.is-fixed .cd-gallery {
  padding-top: 76px;
}
.cd-main-content.is-fixed .cd-filter {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}
.cd-main-content.is-fixed .cd-filter form {
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-content.is-fixed .cd-filter-trigger {
  position: fixed;
	font-family:"Inter", Ariel !important;
}
 .cd-filter-trigger a {
font-family:"Inter", Ariel !important;
}

a.filter {
	    float: right;
font-family:"Inter", Ariel !important;
	font-weight:400 !important;
	font-size:16px !important;
	border: 2px solid #004C66 !important;
    background-color: #f9f9f9 !important;
	border-radius: 10px !important;
	
}
filter a{
	font-family:"Inter", Ariel !important;
	
}
@media only screen and (min-width: 768px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 100px;
  }
}

/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  z-index: 1;
  
    background: #f3f3f3 !important; 
}
.cd-tab-filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 50px;
  width: 140px;
  margin: 0 auto;
  z-index: 1;
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: inset 0 -2px 0 #004c66; /* replace #41307c with #004c66 */
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter a {
  display: block;
  /* set same size of the .cd-tab-filter */
  height: 50px;
  width: 140px;
  line-height: 50px;
  padding-left: 14px;
  font-size: 14px;
}
.cd-tab-filter a:hover{
  text-decoration: none;
}
.cd-tab-filter .selected a {
  background: #004c66; /* replace #41307c with #004c66 */
  color: #ffffff;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #004c66, 0 2px 10px rgba(0, 0, 0, 0.2); /* replace #41307c with #004c66 */
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .4;
}
@media only screen and (min-width: 768px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
  }
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
    display: inline-block;
    padding: 0 1em;
    width: auto;
    color: #9a9a9a;
    text-transform: capitalize !important;
	  font-family:"Inter", Ariel !important;
    font-weight: 500;
    font-size: 16px;
  }
  .no-touch .cd-tab-filter a:hover {
    color: #004c66; /* replace #41307c with #004c66 */
  }
  .cd-tab-filter .selected a {
    background: transparent;
    color: #004c66; /* replace #41307c with #004c66 */
    /* create border bottom using box-shadow property */
    box-shadow: inset 0 -2px 0 #004c66; /* replace #41307c with #004c66 */
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery {
  padding: 26px 5%;
  width: 100%;
}
.cd-gallery ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-gallery li {
  margin-bottom: 1.6em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  min-height: 370px !important; /* added to fix the height of each box */
  width: 23% !important;
  display: inline-block;
  transition: all 0.50s ease 0s;
  -moz-transition: all 0.50s ease 0s;
  -webkit-transition: all 0.50s ease 0s;
  -ms-transition: all 0.50s ease 0s;
  -o-transition: all 0.50s ease 0s; 
  

  background-color: #ffffff !important;
}
.cd-gallery li.gap {
  /* used in combination with text-align: justify to align gallery elements */
  opacity: 0;
  height: 0;
  display: none;
}
.cd-gallery img {
  display: block;
  width: 100%;
}
.cd-gallery .cd-fail-message {
  display: none;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-gallery {
    padding: 40px 3%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li {
    width: 48%;
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-gallery {
    padding: 50px 2%;
    float: right;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery li {
    width: 23%;
  }
  .cd-gallery.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter {
 opacity:0;
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter::before {
  /* top colored bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #004c66; /* replace #41307c with #004c66 */
  z-index: 2;
}
.cd-filter form {
  padding: 70px 20px;
}
.cd-filter .cd-close {
 font-family: "Inter", Ariel !important;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  background: #00374a; /* replace #37296a with #00374a */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}
.no-touch .cd-filter .cd-close:hover {
  background: #00374a; /* replace #32255f with #00374a */
}
.cd-filter.filter-is-visible {
    opacity:1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}
.cd-filter.filter-is-visible .cd-close {
  opacity: 1;
}
@media only screen and (min-width: 1170px) {
  .cd-filter {
    font-family: "Inter", Ariel !important;
    width: 20%;
  }
  .cd-filter form {
    padding: 70px 10%;
  }
}

.cd-filter-trigger {
 padding: 5px !important;
cursor: pointer;
  margin-top: 15px !important;
    margin-right: 15px !important;
 
  width: 50px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  background: transparent url("http://www.ultatel.com/wp-content/uploads/2022/12/funnel_icon.svg") no-repeat center center;
  background-size: 20px 20px; /* scale image */
  z-index: 3;
}
.cd-filter-trigger.filter-is-visible {
  pointer-events: none;
}
@media only screen and (min-width: 1170px) {
  .cd-filter-trigger {
    width: auto;
    left: 2%;
    text-indent: 0;
    color: #9a9a9a;
    text-transform: capitalize important;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 24px;
    background-position: center center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }
  .no-touch .cd-filter-trigger:hover {
    color: #004c66; /* replace #41307c with #004c66 */
  }
  .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
    color: #ffffff;
  }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-block {
  margin-bottom: 1.6em;
}
.cd-filter-block h4 {
  /* filter block title */
  position: relative;
  margin-bottom: .2em;
  padding: 10px 0 10px 20px;
  color: #9a9a9a;
  text-transform: capitalize !important;
  font-weight: 700;
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.no-touch .cd-filter-block h4:hover {
  color: #004c66; /* replace #41307c with #004c66 */
}
.cd-filter-block h4::before {
  /* arrow */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-filter-block h4.closed::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-filter-block input, .cd-filter-block select,
.cd-filter-block .radio-label::before,
.cd-filter-block .checkbox-label::before {
  /* shared style for input elements */
  font-family: "Inter", sans-serif;
  border-radius: 0;
  background-color: #ffffff;
  border: 2px solid #e6e6e6;
}
.cd-filter-block input[type='search'],
.cd-filter-block input[type='text'],
.cd-filter-block select {
  width: 100%;
  padding: .8em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
}
.cd-filter-block input[type='search']:focus,
.cd-filter-block input[type='text']:focus,
.cd-filter-block select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #004c66; /* replace #41307c with #004c66 */
}
.cd-filter-block input[type='search'] {
  /* custom style for the search element */
  border-color: transparent;
  background-color: #e6e6e6;
  /* prevent jump - ios devices */
  font-size: 1.6rem !important;
}
.cd-filter-block input[type='search']::-webkit-search-cancel-button {
  display: none;
}
.cd-filter-block .cd-select {
  /* select element wrapper */
  position: relative;
}
.cd-filter-block .cd-select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-filter-block select {
  cursor: pointer;
  font-size: 1.4rem;
}
.cd-filter-block select::-ms-expand {
  display: none;
}
.cd-filter-block .list li {
  position: relative;
  margin-bottom: .8em;
}
.cd-filter-block .list li:last-of-type {
  margin-bottom: 0;
}
.cd-filter-block input[type=radio],
.cd-filter-block input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-filter-block .checkbox-label,
.cd-filter-block .radio-label {
  padding-left: 24px;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-filter-block .checkbox-label::before, .cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-filter-block .checkbox-label::before,
.cd-filter-block .radio-label::before {
  width: 16px;
  height: 16px;
  left: 0;
}
.cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::after {
  /* check mark - hidden */
  display: none;
}
.cd-filter-block .checkbox-label::after {
  /* check mark style for check boxes */
  width: 16px;
  height: 16px;
}
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  border-radius: 50%;
}
.site-main a:hover{
  text-decoration: none;
}
.cd-filter-block .radio-label::after {
  /* check mark style for radio buttons */
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  left: 5px;
}
.cd-filter-block ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-filter-block .selected input[type=radio] + label::before,
.cd-filter-block .selected input[type=checkbox] + label::before {
  border-color: #004c66; /* replace #41307c with #004c66 */
  background-color: #004c66; /* replace #41307c with #004c66 */
}
.cd-filter-block .selected input[type=radio] + label::after,
.cd-filter-block .selected input[type=checkbox] + label::after {
  display: block;
}

@-moz-document url-prefix() {
  /* hide custom arrow on Firefox - select element */
  .cd-filter-block .cd-select::after {
    display: none;
  }
}

/* Product Item */
.product{
  position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.item-image{
  display: block;
    height: 188px;
    border: none !important;
    padding-top: 10px;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
}

.item-image img {
  display: block;
    width: 100%;
}
.shop-offer{
    
  position: absolute;
  top: 5px !important;
  left: 5px !important;
  background: #e10025 !important;  /* replace #b32439 with #e64823 */
  color: #fcfcfc;
  display: inline-block;
  padding: 15px !important;
  border-radius: 100px !important;
  font-family: "Inter", Ariel !important;
  font-weight: 400;
	line-height:1;
}
.shop-offer strong {
	font-size:20px;
	
	
}
.item-discription{
   font-family: "Inter", Ariel !important;
  background-color: #fff;
    padding: 16px 16px 0px 16px;
    height: auto;
    align-items: center;
    text-align: center;
    line-height: normal;
}

.item-discription > h4{
 font-family: "Inter", Ariel !important;
  color: #004C66;
  margin-bottom: 8px;
}

.center{
    font-family: "Inter", Ariel !important;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  clear: both;
  text-align: center;
  color: #009ee2;
  transition: all 0.5s;
}

.center:hover{
  color: black;
}

.center:hover .product .item-image{
  border: 1px solid black;
}

.item-price{
    font-family: "Inter", Ariel !important;
  color: #009ee2;
  font-size: 18px;
    padding-top: 7px;
    display: inline-block;
    text-decoration: none;
}

.off-price{
  text-decoration: line-through;
    color: #009ee2;
    font-size: 16px;
    margin-right: 4px;
}

.see-details{
     font-family: "Inter", Ariel !important;
          color: white !important;
  background-color: #009ee2;
  padding: 10px 25px;
  margin: auto;
  transition: all 0.5s;
  border-radius: 50px !important;
}

.see-details:hover{
  background-color: #99E5FF  !important;
}

.items-btn{
  background-color: #fff;
    padding: 16px 16px 10px 16px;
    height: 43px;
    align-items: center;
    text-align: center;
}

.itemss-btn{
  background-color: #fff;
    padding: 16px 16px 10px 16px;
    height: 52px;
    align-items: center;
    text-align: center;
}

.order-now{
    display: none;
  color: white;
  background-color: #e9881d; /* replace #ffb845 with #e9881d */
  padding: 10px 25px;
  margin: auto;
  transition: all 0.5s;
  border-radius: 50px;
}

.order-now:hover{
  background-color: #000;
}

/* Recommended Button */
.product-sorting{
  padding: 10px 15px !important;
  cursor: pointer;
  float: right;
  margin-top: 15px !important;
  margin-right: 0px !important;
  border: 2px solid #004C66 !important;
  background-color: #f9f9f9  !important;
  border-radius: 10px !important;
  color: white;
  font-size: 13px !important;
  width: 240px;
  color: #004c66 !important;
  font-family: "Inter", Arial !important;
}
.show-on-mobile{
  display: none;
}
.dataTables_filter{
  margin-bottom: 30px;
}
.dataTables_wrapper .dataTables_filter input{
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cd-gallery ul{
    width: 100%;
  }
  .cd-gallery li{
    width: 100% !important;
    margin-top: 30px;
  }
  .show-on-mobile{
    display: block;
    border: 0;
    text-align: center;
  }
  .hide-on-mobile{
    display: none;
  }
  .cd-tab-filter::after{
    display: none;
  }
  select.category-filter{
    border-bottom: 2px solid #004c66; /* replace #41307c with #004c66 */
    padding: 10px 0;
  }
}
/* ------------------------ Single Device ------------------------ */
.single-device .section-title-2{
  margin-bottom: 10px;
  margin-top: 30px;
  padding: 0 0 5px;
  border-bottom: 2px solid #e1e1e1;
  position: relative;
  font-family: 'Inter',sans-serif !important;
  font-size: 35px;
  color: #606060;
  font-weight: 400;
  text-align: left;
  line-height: normal;
  float: left;
  width: 100%;
}
.single-device .section-title-2.first-title{
	margin-top: 0;
}
.section-title-2:after{
  width: 7%;
  height: 2px;
  display: block;
  content: '';
  background-color: #009FE3;
  position: absolute;
  bottom: -2px;
  left: 0%;
}
.single-device .sidebar .section-title-2{
  font-size: 23px;
  line-height: 23px;
}
.single-device .order-part-holder{
  float: left;
  width: 100%;
  margin-top: 15px;
}
.single-device .order-part-holder span{
  float: left;
  font-size: 22px;
  color: #777;
}
.single-device a.btn-main,
.single-device a.btn-main:active,
.single-device a.btn-main:focus,
.single-device a.btn-main:visited{
  float: right;
  background-color: #009FE3; /* replace #ffb845 with #e9881d */
  min-width: 136px;
  padding: 6px 16px;
  height: 38px;
  border: 3px double #00bfff; /* replace #dcb5a4 with #e9881d */
  border-radius: 9px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 20px;
}
.single-device a.btn-main:hover{
  background: #00bfff; /* replace #453951 with #00bfff */
  color: #fff;
}
.single-device .sidebar a.btn-main{
  width: 100%;
  color: #fff !important;
}
.single-device .featured-image-holder{
  margin-bottom: 30px;
  text-align: center;
}
.single-device .featured-image-holder img{
  width: 100%;
  max-width: 1280px;
}
.single-device .price-holder{
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 20px;
}
.single-device .shop-price-off {
    text-decoration: line-through;
    color: #adb7bd;
    font-size: 16px;
    margin-right: 4px;
}
.single-device .shop-price {
    color: #00bfff; /* replace #34aadc with #00bfff */
    font-size: 18px;
    padding-top: 7px;
    display: inline-block;
    text-decoration: none;
}
.single-device .im-tabs-holder{
  margin-top: 30px;
}
.single-device .im-tab{
  text-align: left;
}
.single-device .features-content{
  margin-top: 20px;
}
.single-device .im-tabcontent{
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-device .im-tabcontent h1,
.single-device .im-tabcontent h2,
.single-device .im-tabcontent h3,
.single-device .im-tabcontent h4,
.single-device .im-tabcontent h5,
.single-device .im-tabcontent h6{
  margin-top: 0;
}
.single-device .sidebar .sidebar-widget ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-device .sidebar .sidebar-widget a,
.single-device .sidebar .sidebar-widget a:active,
.single-device .sidebar .sidebar-widget a:visited,
.single-device .sidebar .sidebar-widget a:focus,
.single-device .sidebar .sidebar-widget a:hover{
  color: #777;
}
.im-container{
	width: 100%;
	max-width: 1170px;
	width: 1170px;
    margin: 0 auto;
    padding: 30px 15px;
}

.im-tablinks{
	color: white !important;
    background-color: #009ee2 !important;
	font-family:"Inter", Arial;
border:none !important;

}
.im-tablinks button{
	border:none !important;
}