

.model_wrapper{
  max-width: 1520px;
  margin: 50px auto;
}
.model_title_wrapper{
    width: 100%;
    background: url(../../icons/pattern_girl.png) no-repeat #2b2b2b;
    margin: 0 auto 50px;
    border-radius: 50px;
}
.h1_model{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--white);
    margin: 0 auto;
    padding: 30px 0 20px 0;
}

.model_content_wrapper{
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}




.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: max-content;
  align-self: flex-end;
}

.custom-select {
  position: relative;
  background: var(--black);
  color: white;
  border-radius: 14px;
  padding: 15px 20px;
  cursor: pointer;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-select__img-wrapper{
  transition: transform 0.3s ease;
}

.custom-select.open .custom-select__img-wrapper{
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.custom-select_triger{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.custom-options {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  background: var(--black);
  border-radius: 14px 0 0 14px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.custom-options::-webkit-scrollbar {
  width: 4px; 
  height: 4px; 
  
}

.custom-options::-webkit-scrollbar-track {
  background: inherit; 
  border-radius: 0 14px 14px 0;
}

.custom-options::-webkit-scrollbar-track-piece {
  border-radius: 0 14px 14px 0;
  background-clip: padding-box;
}
.custom-options::-webkit-scrollbar-corner {
  background: transparent;
}
.custom-options::-webkit-scrollbar-thumb {
  background-color: var(--grey);
  border-radius: 4px;
}

.custom-option {
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-option:hover {
  background: #444;
}

.custom-option.selected {
  background: #333;
}




.girls{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.additional_text_wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 40px 30px;
  line-height: 20px;
}
.additional_text_wrapper blockquote {
  position: relative; 
  padding-left: 10px; 
}
.additional_text_wrapper ul {
  padding-left: 10px; 
  display: flex;
  flex-direction: column;
  gap:5px;
}
.additional_text_wrapper .faq-answer {
  padding: 5px 0 5px 20px; 
}
.additional_text_wrapper h3,
.additional_text_wrapper strong {
  font-weight: 500;
  font-size: 17px;
}

.additional_text_wrapper blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: red;
  display: block;
}

@media (max-width: 1024px) {
  .model_wrapper{
    max-width: 1024px;
    margin: 30px auto;
  }
  .model_title_wrapper{
    margin: 0 auto 30px;
    border-radius: 0px;
  }

  .h1_model {
    font-weight: 400;
    font-size: 54px;
    line-height: 154%;
    text-align: center;
    padding: 20px 0 10px 0;
  }
  .model_content_wrapper {
    gap: 20px;
  }
  .girls {
    gap: 20px;
  }
  .custom-select-wrapper{
    margin-right: 20px;
  }

}
@media (max-width: 768px) {
  .model_wrapper{
    max-width: 768px;
    margin: 20px auto;
  }
  .model_title_wrapper{
    margin: 0 auto 20px;
  }

  .h1_model {
    font-size: 44px;
    line-height: 166%;
    text-align: center;
    padding: 20px 0 10px 0;
  }
  .model_content_wrapper {
    gap: 20px;
  }
  

}
@media (max-width: 468px) {
  .model_wrapper{
    max-width: 320px;
    margin: 15px auto;
  }
  .model_title_wrapper{
    margin: 0 auto 15px;
  }

  .h1_model {
    font-size: 34px;
    line-height: 112%;
    padding: 15px 0 10px 0;
  }
  .model_content_wrapper {
    gap: 15px;
  }

  .custom-select-wrapper {
    margin-right: 0;
    margin: 0 auto;
  }
  .girls {
    gap: 15px;
  }
  

}