.tabs {
  padding-top: 83px; 
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  width: 1240px;
  margin: auto;
}

.tabs__btn {
  text-decoration: none;
  color: black;
  text-align: center;
  flex-shrink: 0;
  flex-grow: 1;
  border: 0px solid transparent;
  cursor: pointer;
  width: 310px;
  border-bottom: 2px solid #bb8e62;
  font-family: mr;
  font-size: 16px;
  color: #2c2c2c;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.2s;
}

.tabs__btn_active {
  cursor: default;
  background-color: #bb8e62;
  color: white;
  transition: 0.2s;
  border-bottom: 2px solid #9d7753;
  font-family: mm;
}

.tabs__btn:not(.tabs__btn_active):hover,
.tabs__btn:not(.tabs__btn_active):focus {
  background-color: #dbd5cf;
  transition: 0.2s;
}

.tabs__content {

}

.tabs__pane {
  display: none;
}

.tabs__pane_show {
  display: block;
  padding-top: 28px;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {
  .tabs {
    padding-top: 50px; 
  }

  .tabs__nav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    width:100%;
    margin: auto;
  }
  .tabs__btn {
    text-decoration: none;
    color: black;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 1;
    border: 0px solid transparent;
    cursor: pointer;
    width: 310px;
    border-bottom: 2px solid #bb8e62;
    font-family: mr;
    font-size: 16px;
    color: #2c2c2c;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: 0.2s;
  }
  
  .tabs__btn_active {
    cursor: default;
    background-color: #bb8e62;
    color: white;
    transition: 0.2s;
    border-bottom: 2px solid #9d7753;
    font-family: mm;
  }
  
  .tabs__btn:not(.tabs__btn_active):hover,
  .tabs__btn:not(.tabs__btn_active):focus {
    transition: 0.2s;
    background-color: #dbd5cf;
  }
  
  .tabs__content {
  
  }
  
  .tabs__pane {
    display: none;
  }
  
  .tabs__pane_show {
    display: block;
    padding-top: 28px;
  }
  
}