.mainNavContainer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 10%;
  max-width: 2200px !important;
}
@media only screen and (max-width: 1300px) {
  .mainNavContainer {
    padding: 0 2%;
  }
}

.NavContainer {
  margin: auto;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iconSection {
  width: 156px;
  height: 100px;
  display: flex;
  align-items: center;
}
.iconSection img {
  width: 100% !important;
}
/* .tabsSection {

} */

.tabsList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tabsList .tab {
  list-style-type: none;
}
.tabsList .tab a {
  text-decoration: none;
  color: white;
  cursor: pointer;
  font-family: "Saira", sans-serif;
  font-weight: 500;
  line-height: 90px;
  color: var(--linksColor);
}

.tabsList .tab a:hover {
  color: var(--textHover);
}

.closeBtn {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .closeBtn {
    display: block;
  }
}
