.meniu-container {
  margin: 12px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
#line-1 {
  width: 184px;
  border: 1px solid #c89963;
  height: 0;
  margin-right: 24px;
}
#line-2 {
  width: 184px;
  border: 1px solid #c89963;
  height: 0;
  margin-left: 24px;
}
.column-one {
  width: 245px;
}
.column-two {
  width: 245px;
  margin-left: 25px;
}
.chapter {
  font-family: "Optima";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 134.3%;
  letter-spacing: 0.02em;
  margin-right: 12px;
  color: #c89963;
}
.content {
  display: flex;
  column-gap: 20px;
}
.block-items {
  display: block;
}
.liniar {
  display: flex;
  width: 245px;
}
.title-text {
  font-family: "Mazzard";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #151b36;
}
.title-text>span{
  font-weight: 400;
}
.description {
  font-family: "Mazzard";
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  color: #151b36;
  letter-spacing: 0.02em;
  line-height: 13.5px;
}
.pret {
  font-family: "Mazzard";
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  text-transform: capitalize;
  margin-left: auto;
  color: #151b36;
}
.first-margin-sm {
  margin-top: -11px;
}
.margin-sm {
  margin-top: -14px;
}
.margin-description-sm {
  margin-top: -2px;
}
.margin-more-line{
  margin-top: -18px;
}
.align{
  margin-top: 38px;
}
.line-3 {
  width: 514px;
  height: 0px;
  border: 1px solid #c89963;
  margin-top: 35px;
  margin-bottom: 29px;
}
.subsol {
  font-family: "Mazzard";
  font-style: normal;
  font-weight: normal;
  font-size: 7px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #a3a3a3;
  margin-top: -20px;
}
.language {
  margin-top: 40px;
  border-bottom: 2px solid #c89963;
  padding: 0px 20px 3px 0px;
}
.left-spacing{
  padding-right: 0 !important;
  padding-left: 50px;
}
.button-menu-section{
  display: none;
  height: 25px;
  width: 70px;
  margin-top: -50px;
  padding-right: 50px;
}
.button-section {
  width: 100px;
  height: 30px;
}
.select {
  width: 100%;
  height: 100%;
  background-color: #151b36;
  border-style: none;
  color: #c89963;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 0px;
  overflow: hidden;
  transition: all 0.5s;
}
.btn-2 {
  background-color: #c89963;
  color: #151b36;
}
.select span {
  position: absolute;
  display: block;
}
.select span:nth-child(1) {
  height: 2px;
  width: 100px;
  top: 0px;
  left: -100px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #ffffff);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes span1 {
  0% {
    left: -100px;
  }
  100% {
    left: 100px;
  }
}
.select span:nth-child(2) {
  height: 70px;
  width: 2px;
  top: -70px;
  right: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #f6e58d);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}
@keyframes span2 {
  0% {
    top: -70px;
  }
  100% {
    top: 70px;
  }
}
.select span:nth-child(3) {
  height: 2px;
  width: 100px;
  right: -100px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #f6e58d);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}
@keyframes span3 {
  0% {
    right: -100px;
  }
  100% {
    right: 100px;
  }
}

.select span:nth-child(4) {
  height: 70px;
  width: 2px;
  bottom: -70px;
  left: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #f6e58d);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}
@keyframes span4 {
  0% {
    bottom: -70px;
  }
  100% {
    bottom: 70px;
  }
}
.mobile-only{
  display: none;
}
@media only screen and (max-width: 600px) {
  #line-1 {
    display: none;
  }
  #line-2 {
    display: none;
  }
  .content {
    display: block;
  }
  .column-one {
    margin-left: auto;
    margin-right: auto;
  }
  .column-two {
    margin-left: auto;
    margin-right: auto;
  }
  .line-3 {
    width: 245px;
    margin-left: auto;
    margin-right: auto;
  }
  .button-menu-section{
    display: block;
  }
  .button-section{
    margin-top: 20px;
    width: 245px;
    height: 40px;
  }
  .btn-2 {
    margin-left: 0px;
  }
  .desktop-only{
    display: none;
  }
  .mobile-only{
    display: block;
  }
}
