@media screen and (max-width:1250px){
    .navigation{
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
        align-items: stretch;
    }
    
    .navigation-left,
    .navigation.right{
        width: 100%;
        text-align:center;
        padding: 0;
        margin: 0 auto 10px;
    }
    .navigation.right form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .form-input,  .btn  {
        width: 40%;
        overflow-x: auto;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .content {
        display: flex;
        flex-direction: column;
    }
    .content-right{
        width: 100%;
        text-align:justify;
        padding: 0;
        margin: 0 auto 10px;
    }
    .content-left{
        width: 100%;
        text-align:justify;
        margin-bottom: 10px;
    }

    .content-img{
        text-align: justify;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .row{
        flex-direction: column;
    }


 .tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    padding: 8px 12px;
  }
}


