.main-nav .nav-head{
  background: #F2F2F2;
  height: 28px;
}

.container-layout{
  padding: 0 2%;
  width: 100%;
}
.nav-action img{
  width: 17px;
  height: 17px;
  color: #70757A;
}
.hot-line {
  color: #70757A;
  font-size: 16px;
}
.nav-content {
  color: #70757A;
  font-weight: 300;
  font-size: 16px;
}
.row-1{
  height: 40px;
  align-items: center;
  background-color: #f2f2f2;
}
.row-2{
  column-gap: 10px;
  justify-content: end;
}
.nav-foot .nav-controls .nav-control{
  padding: 0 
}
.footer {
  background-color: #f2f2f2;
  font-size: 14px;
}
.footer a {
  margin: 0 10px;
  color: #6c757d;
  text-decoration: none;
}
.line-bottom{
  border-bottom: 1px solid #DADCE0
}
.footer a:hover {
  color: #0d6efd;
}
.copyright {
  background-color: #f2f2f2;
  padding: 10px 0;
  color: #70757A;
  font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --nav-color: #0080e9;
  --defaul-text-color: #000;
  --disabled-color: #bababa;
  --text-intro-plain: #616161;
  --hover-bg-default: #ebebeb;
}

html {
  scroll-behavior: unset !important;
}

.text-black{
  color: black 
}

.nav-foot {
  position: sticky;
  top: 0;
  z-index: 4;
}
.nav-foot.filter-drop {
  background-color: #fff;
  box-shadow: 0 1px 29px -24px grey;
}
.nav-foot .logo {
  margin: 5px 0;
}
.nav-foot .nav-controls {
  display: flex;
  align-items: center;
}
.nav-foot .nav-controls .nav-control {
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px 18px;
  font-weight: 500;
  height: 40px;
  position: relative;
  color: var(--defaul-text-color);
}
.nav-foot .nav-controls .nav-control .nav-content,
.nav-foot .nav-controls .nav-control .nav-more-ic {
  transition: 0.25s;
}
.nav-foot .nav-controls .nav-control:hover .nav-content {
  color: var(--nav-color);
}
.nav-foot .nav-controls .nav-control:hover .nav-more-ic {
  fill: var(--nav-color);
}
.nav-foot .nav-controls .nav-control:hover .sub-control-list,
.nav-foot .nav-controls .nav-control:hover .sub-control-list-short {
  display: block;
}
.nav-foot .nav-controls .nav-control:last-child .sub-control-list {
  right: 0;
}
.nav-foot .nav-controls .nav-control:first-child .sub-control-list {
  left: 0;
}
.nav-foot .nav-controls .nav-control .sub-control-list {

  position: absolute;
  display: none;
  top: 100%;
}
.sub-control-list.many-item{
  width: max-content;
  padding-top: 4px;
  padding-bottom: 4px;
}
.sub-control-list.many-item div {
  background-color: #f4f4f4;
  margin-top: 10px;
}
.nav-foot .nav-controls .nav-control .sub-control-list .sub-item,
.nav-foot .nav-controls .nav-control .sub-control-list-short .sub-item {
  padding: 17px 16px 13px 2px;
  width: fit-content;
  transition: 0.25s;
  text-indent: 26px;
  position: relative;
  color: #000000;
}
.nav-foot .nav-controls .nav-control .sub-control-list .sub-item:before,
.nav-foot .nav-controls .nav-control .sub-control-list-short .sub-item:before {
  display: inline-block;
  transition: 0.25s;
  border-radius: 3px;
  background-color: var(--disabled-color);
  position: absolute;
  top: 50%;
  left: 34px;
  transform: translateY(-50%);
}
.nav-foot .nav-controls .nav-control .sub-control-list .sub-item:hover,
.nav-foot .nav-controls .nav-control .sub-control-list-short .sub-item:hover {
  color: var(--nav-color);
}
.nav-foot .nav-controls .nav-control .sub-control-list .sub-item:hover:before,
.nav-foot .nav-controls .nav-control .sub-control-list-short .sub-item:hover:before {
  background-color: var(--nav-color);
}

.nav-foot .nav-controls .nav-control .sub-control-list-short {
  position: absolute;
  top: 100%;
  left: -50%;
}
.nav-foot .nav-controls .nav-control .sub-control-list-short .sub-item {
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 30px;
}
.nav-foot .nav-more-ic {
  margin-left: 8px;
  width: 8px;
  height: 6px;
  fill: var(--defaul-text-color);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.295);
  z-index: 10;
}

.learn-btn {
  width: 176px;
  margin-top: 41px;
}

.text-mt {
  margin-top: 41px;
  line-height: 36px;
}

.w-95 {
  width: 95%;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .footer a{
    font-size: 11px;
  }
  .copyright {
    font-size: 11px
  }
}
@media screen and (max-width: 768px) {
  .row-1{
    justify-content: end;
    column-gap: 10px;
  }
  .row-2{
    column-gap: 5px;
    margin-top: 16px;
    justify-content: end;
    flex-wrap: wrap
  }
  .footer a{
    padding-left: 0;
    padding-right: 0;
  
  }
  .copyright {
    text-align: center;
    padding: 5px 10px
  }
  .text-muted{
    text-align: center;
  }
  .copyright {
    text-align: center;
  }
  .copyright .row{
    margin-right: 0 !important;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    padding-bottom: 6px
  }
 
}
@media screen and (max-width: 576px) {

  .copyright {
    padding-top: 0
  }
  .footer a{
    margin: 0;
  }
  .row-2{
    row-gap: 8px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap
  }
  .row-1{
    justify-content: center !important;
    column-gap: 8px;
  }
  .row-2 a {
    width: fit-content;
  }
}