.menu-container {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 500;
  height: auto;
  width: 100%;
  min-width: 150px;
  font-size: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Для Safari */
}

.menu-container:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  transition: background-color 0.2s;
  border-bottom: 1px solid #DEDEDE;
  text-align: left;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 20;
  width: 100%;
  min-width: 150px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #D74548 0.6%, #C83670 1.63%, #A93890 2.65%, #7F388C 3.68%, #523671 4.7%);
}

@font-face {
    font-family: "bebas-g";
    font-weight: normal;
    font-style: normal;
    src: url("fonts/BebasRegular/BebasRegular.eot");
    src: url("fonts/BebasRegular/BebasRegular.eot?#iefix") format("embedded-opentype"), url("fonts/BebasRegular/BebasRegular.woff") format("woff"), url("fonts/BebasRegular/BebasRegular.ttf") format("truetype");
}

.container {
    max-width: 1680px;
    margin: 0 auto;
}

.main-title {
    min-height: 100vh;
}

.main_screen .container {
    all: unset;
}

.main-title .container {
    background: url("/rabota/img/work_main.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
    min-height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    padding: unset;
    overflow: hidden;
}

.main-title .container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 206px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    rotate: 180deg;
}

.main-title .container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vh;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    rotate: 270deg;
}

.main-title h1 {
    font-family: "Cygre Medium-Medium";
    font-size: 132px;
    line-height: 0.6;
    color: #fff;
    position: absolute;
    bottom: 90px;
    margin: auto;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.header {
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    position: relative;
    z-index: 25;
}

.header .social {
    margin-top: 0;
    margin-left: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .social li {
    margin-right: 5px;
}

.header .social svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.header .social svg:hover {
    fill: red;
}

.logo-header {
    width: 132px;
}

.tel-header {
    color: #fff;
    font-family: inherit;
    font-size: 14px;

    text-decoration: none;
}

.tel-header span {
    /*color: #2b599a;*/
    font-family: inherit;
    font-size: 25px;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.vacancies {
    position: absolute;
    top: 30vh;
    right: 120px;
}

/* Стили для списка вакансий */
.vacancies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.vacancies-list-item {
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
}

.vacancies-list-name {
    font-family: "Cygre Medium-Medium";
    color: white;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
}

/* Стили для модального окна */
.vacancies-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1E1E1E80;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vacancies-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vacancies-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1114px;
    height: auto;
    max-height: 90vh;
    background: #1E1E1E;
    border: 1px solid #7F388C;
    border-radius: 12px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vacancies-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.vacancies-modal-content {
    font-family: "Cygre Medium-Medium";
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vacancies-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    z-index: 10000;
}

.vacancies-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vacancies-modal-title {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    padding-right: 40px;
}

.vacancies-modal-description {
    color: #E0E0E0;
    margin-bottom: 30px;
    flex: 1;
    column-count: 2;
    column-gap: 40px;
    column-width: auto;
}

.vacancies-modal-description h4 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
    break-inside: avoid-column;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.vacancies-modal-description ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 25px;
    break-inside: avoid-column;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.vacancies-modal-description li {
    margin-bottom: 5px;
    position: relative;
    break-inside: avoid-column;
}

.vacancies-modal-description li:before {
    content: "•";
    color: #7F388C;
    font-size: 20px;
    position: absolute;
    left: -15px;
}

.btn-write-us {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, rgba(215, 69, 72, 1) 0%, rgba(200, 54, 112, 1) 25%, rgba(169, 56, 144, 1) 50%, rgba(127, 56, 140, 1) 75%, rgba(82, 54, 113, 1) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #7F388C;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-write-us:hover {
    background: linear-gradient(135deg, #8F489C 0%, #6A3A73 100%);
    transform: translateY(-2px);
}

.reviews {
    font-family: "Cygre Medium-Medium";
}

.club {
    margin-bottom: -50px;
}

.reviews h2 {
    margin-top: 100px;
    font-size: 100px;
    color: white;
}

.reviews-list-item_wrap{
    position: relative;
    width: 408px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    background: 
    /* Верхний градиент (#1E1E1E с прозрачностью) */
    linear-gradient(
      to bottom,
      rgba(30, 30, 30, 1) 0%,        /* #1E1E1E непрозрачный */
      rgba(30, 30, 30, 0.8) 30%,     /* 20% высоты - 80% прозрачности */
      rgba(30, 30, 30, 0) 60%        /* 50% высоты - полностью прозрачно */
    ),
    /* Ваш цветной градиент */
    linear-gradient(
      90deg, 
      #D74548 0%, 
      #C83670 25%, 
      #A93890 50%, 
      #7F388C 75%, 
      #523671 100%
    );
}

.reviews-list-item img.rewiews_desc {
    position: absolute;
    top: 0;
    right: 0;
    left: unset;
    width: auto;
}

.title-descript {
    font-family: inherit;
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    color: #ef2525;

    margin: 0;
    margin-bottom: 25px;

    text-align: center;
}

.title-descript-text {
    font-size: 16px;
    line-height: 20px;
    font-family: inherit;
    color: #000000;

    width: 680px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 55px;
}

.honor h2 {
    font-family: "Cygre Medium-Medium";
    font-weight: 500;
    font-size: 100px;
    line-height: 132px;
    letter-spacing: -2px;
    color: white;
}

.honor ul {
    font-family: "Cygre Medium-Medium";
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    color: white;
    margin-top: 60px;
    margin-bottom: 50px;

}

.honor ul li {
    width: 30%;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.advantages .container {
    position: relative;
    overflow: hidden;
}

.advantages .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    background-image: 
        linear-gradient(
            90deg, 
            rgba(215, 69, 72, 0.8) 0%, 
            rgba(200, 54, 112, 0.8) 25%, 
            rgba(169, 56, 144, 0.8) 50%, 
            rgba(127, 56, 140, 0.8) 75%, 
            rgba(82, 54, 113, 0.8) 100%
        ),
        url("img/work_adv.webp");
}

.advantages ul {
    padding: 46px;
}

.advantages li {
    font-family: "Cygre Medium-Medium";
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
}

.club {
    font-size: 25px;
    font-family: inherit;
    text-align: left;
    position: relative;
    font-family: "Cygre Medium-Medium";
}

.club-text {
    margin-top: 80px;
    font-size: 24px;
    color: #FFFFFF80;
}

.club-text-ul {
    margin-top: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
}

.club-text-ul li {
    margin-bottom: 20px;
    position: relative;
}

/* Slider styles */
.gallery_slider__control {
    display: flex;
    justify-content: flex-end;
}
    

.slider_control__right,
.slider_control__left {
  cursor: pointer;
}

.gallery_slider {
    position: relative;
    max-width: 1680px;
    height: 561px;
    overflow: hidden;
}

.gallery_slider.single-slide .gallery_slide,
.gallery_slider.double-slide .gallery_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Для случая, когда меньше 3 слайдов */
.gallery_slide {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 50%;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    object-fit: contain;
}

.gallery_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Стандартные состояния для 3+ слайдов */
.gallery_slide.visible.active {
  transform: translateX(-50%) scale(1);
  filter: none;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.gallery_slide.visible.prev {
  transform: translateX(calc(-50% - 500px)) scale(0.634);
  filter: blur(5px);
  opacity: 0.7;
  z-index: 2;
  visibility: visible;
}

.gallery_slide.visible.next {
  transform: translateX(calc(-50% + 500px)) scale(0.634);
  filter: blur(5px);
  opacity: 0.7;
  z-index: 2;
  visibility: visible;
}

/* Для случая с 1-2 слайдами */
.gallery_slider.single-slide .gallery_slide,
.gallery_slider.double-slide .gallery_slide {
  position: relative;
  left: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 1024px) {
  .gallery_slider {
    height: 400px;
  }
  
  .gallery_slide {
    width: 600px;
  }
  
  .gallery_slide.visible.prev {
    transform: translateX(calc(-50% - 300px)) scale(0.634);
  }
  
  .gallery_slide.visible.next {
    transform: translateX(calc(-50% + 300px)) scale(0.634);
  }
}

@media (max-width: 768px) {
  
  .gallery_slide.visible.prev {
    transform: translateX(calc(-50% - 200px)) scale(0.634);
  }
  
  .gallery_slide.visible.next {
    transform: translateX(calc(-50% + 200px)) scale(0.634);
  }
  
  .gallery_slider__control {
    width: 140px;
    height: 60px;
  }
  
  .gallery_slider__control svg {
    width: 60px;
    height: 60px;
  }
}

/* /Slider styles */

.reviews h5 {
    margin: 0;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 32px;
    font-family: inherit;
    color: white;
}

.reviews p {
    font-size: 18px;
    line-height: 20px;
    font-family: inherit;
    font-weight: 300;
    margin: 0;
}

.reviews .reviews-h5-descript {
    font-size: 20px;
    line-height: 20px;
    font-family: inherit;
    font-weight: 300;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

.li-1 {
    padding-left: 275px;
    padding-right: 73px;
}

.li-2 {
    padding-right: 260px;
    padding-left: 45px;
}

.reviews li {
    position: relative;
    margin-top: 130px;
    margin-bottom: 160px;
}

.reviews .li-1::after {
    content: "";
    top: -41px;
    left: 161px;
    width: 90%;
    position: absolute;
    z-index: -1;
    height: 306px;
    background: url(img/bg-reviews-li-1700.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.reviews .li-2::after {
    content: "";
    top: -43px;
    left: 2px;
    width: 100%;
    position: absolute;
    z-index: -1;
    height: 316px;
    background: url(img/bg-reviews-li-2-1700.png);
    background-size: contain;
    background-repeat: no-repeat;
}


.reviews .li-1::before {
    content: "";
    top: -53px;
    left: 0;
    width: 142px;
    position: absolute;
    z-index: -1;
    height: 142px;
    background: url(img/reviews/photo-1.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.reviews .li-3::before {
    background: url(img/reviews/photo-3.png);
    background-size: 99%;
}

.reviews .li-2::before {
    content: "";
    top: -53px;
    right: -13px;
    width: 142px;
    position: absolute;
    z-index: -1;
    height: 142px;
    background: url(img/reviews/photo-2.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.reviews .li-3::after {
    content: "";
    top: -34px;
    left: 161px;
    width: 112%;
    position: absolute;
    z-index: -1;
    height: 288px;
    background: url(img/bg-reviews-li-1700.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.li-2 h5 {
    text-align: right;
}

.li-2 .reviews-h5-descript {
    text-align: right;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrapper {
    background-image: url("img/bg-footer.jpg");
    padding: 20px 0;

}

.footer .social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .social svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-right: 10px;
}

.footer .social svg:hover {
    fill: #2b599a;
}

.tel {
    color: #fff;
    text-decoration: none;
    font-size: 25px;

    font-family: inherit;
    text-align: center;
    display: block;

    position: relative;
}

.tel::after {
    content: "";

    top: 1px;
    left: -15px;
    background-size: 70%;

    position: absolute;

    width: 30px;
    height: 30px;

    background-image: url("img/phone.png");
    background-repeat: no-repeat;
}

.adress li {
    font-family: inherit;
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
}

.adress span {
    font-family: inherit;
    font-weight: 300;
}

.footer-PS {
    background-color: #3a4045;
    padding: 10px 0;
}

.footer-PS-descript {
    margin-right: 30px;
}

.footer-PS .container {
    display: flex;
    justify-content: space-between;
}

.footer-PS p {
    font-size: 10px;
    line-height: 1.2;
    font-family: inherit;
    color: #fff;

    margin: 0;
}

.aydentika a {
    text-decoration: none;
}

.aydentika span {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: inherit;
    font-size: 10px;
}

.form-container {
    width: 1046px;
    margin: 0 auto;
    color: #fff;
    font-family: "Cygre Medium-Medium";
}

fieldset {
    width: 960px;
    border: none;
    margin-top: 15px !important;

    padding: 0;
    padding-left: 20px !important;
}

legend {
    font-family: inherit;
    font-weight: bold;
    font-size: 19px;

    text-transform: uppercase;

}

label {
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}

input,
textarea {
    padding-left: 15px;
}

.file {
    font-family: inherit;
    font-weight: bold;
    font-size: 19px;
    margin-right: 20px;

    text-transform: uppercase;
}

.checkbox-indicator {
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #ff4e4e;
    width: 20px;
    height: 20px;

    position: relative;
    top: 5px;


}

/*.filter-2 {
    width: 553px;
}*/

.filter input[type="checkbox"]:hover+.checkbox-indicator {
    border: 2px solid #2b599a;
}

.filter input[type="checkbox"]:checked+.checkbox-indicator {

    background-size: 100%;


    background-image: url("img/icon-yes.svg");
    background-repeat: no-repeat;
    background-position: 0px 3px;
}

.filter li:nth-child(2) {
    margin-right: 13px;
}

.filter ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

    padding: 5px;
    padding-left: 0;
}

.personal {
    width: 100%;
    background-color: #333;
    padding-bottom: 10px;
}

.personal-container {
    width: 960px;
    /* margin: 0 auto;*/
}

.personal legend {
    background-color: inherit;

    padding: 20px 0px 10px 0px;

    width: 100%;
}

.personal-inputs {
    width: 960px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.personal-inputs label {
    display: block;
    width: 30%;
}

.personal input {
    width: 100%;
    display: block;
    height: 40px;
    box-sizing: border-box;

    border: none;

    margin-top: 4px;
    margin-bottom: 10px;
}

.personal .name {
    width: 330px;

}

.personal .uni {
    width: 610px;
}


.personal .date-of-birth {
    width: 140px;

}

.personal .phone {
    width: 210px;
}

.personal .e-mail {
    width: 210px;
}

.personal .social-form {
    width: 330px;
}

.work {
    width: 450px;
}

.learn {
    width: 470px;
}

.working {
    width: 995px;
}

.working-inputs {

    margin-top: 10px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.working-inputs input {
    display: block;
    height: 40px;
    width: 100%;

    margin-top: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

fieldset .inputfile {
    border: none;
}

select {
    display: block;
    resize: none;

    width: 250px;
    height: 40px;
    background-color: #fff;

    border-radius: 0;

    margin-top: 4px;
}

.coment {
    /* margin-top: 4px; */
    width: 700px;
    height: 40px;
    box-sizing: border-box;

    border-color: #cacaca;
}

.work-exper {
    width: 100%;
}

.work-exper-wrapper {
    /*margin-top: 20px;*/

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.coment input {
    display: block;
    height: 40px;
    width: 100%;

    margin-bottom: 10px;
    box-sizing: border-box;
}

.filter-last {
    width: 99%;
}

.send {
    margin-top: 35px;
    margin-bottom: 60px;
}

.send p,
.send a {
    margin: 0;
    font-family: inherit;
    font-size: 14px;
    text-transform: none;
}

.send a {
    color: #ff0000;
}

.send .info {
    font-family: inherit;
    font-size: 19px;
    text-transform: uppercase;
}

.send .btn {
    margin-top: 13px;
    margin-bottom: 10px;
    padding: 20px;
    font-family: "Cygre Medium-Medium";
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(215, 69, 72, 1) 0%, rgba(200, 54, 112, 1) 25%, rgba(169, 56, 144, 1) 50%, rgba(127, 56, 140, 1) 75%, rgba(82, 54, 113, 1) 100%);
}

.filter .why-work {
    justify-content: flex-start;
}

.why-work li:nth-child(1) {
    margin-right: 35px;
}

.why-work li:nth-child(2) {
    margin-right: 50px;
}

.why-work li:nth-child(4) {
    margin-right: 94px;
}

.why-work li:nth-child(5) {
    margin-right: 157px;
}


@keyframes bounce {
    0% {
        transform: translateY(-2000px);
    }

    70% {
        transform: translateY(30px);
    }

    90% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.write-us {
    display: none;

    height: 100%;
    width: 99%;
    background-color: rgba(0, 0, 0, 0.05);

    top: 0;
    left: 50%;

    margin-left: -600px;

    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
}


.modal {
    width: 1170px;
    position: fixed;
    background-color: #333;
    z-index: 15;
    z-index: 2;
    z-index: 9999;
}

.modal-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* custom */
    z-index: 461;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 9px;
    width: 22px;
    height: 22px;
    border: 0;
    font-size: 0;
    cursor: pointer;
    background-color: transparent;
    z-index: 20;
}

.modal-close::before,
.modal-close::after {
    content: "";

    position: absolute;
    top: 10px;
    left: 0;

    width: 27px;
    height: 4px;

    background-color: #ee3643;
}

.modal-close::before {
    transform: rotate(45deg);
}

.modal-close::after {
    transform: rotate(-45deg);
}

.modal-show {
    display: block;

    animation: bounce 0.6s;
}

.modal-error {
    animation: shake 0.6s;
}


.reviews-list {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 72px;
}

.reviews-list-item .content {
    color: white;
    flex: 1;
}

.reviews-list-item img {
    width: 142px;
}

.reviews-list-item {
    display: flex;
    column-gap: 60px;
    width: 1318px;
}


/* ----------------------------------- АДАПТИВ ----------------------------------------------- */


/* Адаптация для мобильных устройств */
@media (max-width: 1200px) {
    .vacancies-modal {
        width: 95%;
    }

    .vacancies-modal-content {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .vacancies-modal-description {
        column-count: 1;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .vacancies-modal {
        width: 95%;
        height: 95vh;
        max-height: none;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .vacancies-modal.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .vacancies-modal-content {
        padding: 25px 20px;
    }

    .vacancies-modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .vacancies-list-name {
        font-size: 16px;
    }

    .vacancies-list-item {
        padding: 15px;
    }

    .btn-write-us {
        width: 100%;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .vacancies-modal {
        width: 90%;
        height: auto;
        border-radius: 0;
        border: none;
        border-top: 1px solid #7F388C;
    }

    .vacancies-modal-content {
        padding: 20px 15px;
    }

    .vacancies-modal-close {
        top: 15px;
        right: 15px;
    }
}


@media (max-width: 1700px) {

    .container{
        max-width: 1250px;
    }

    h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .main-title h1 {
        font-size: 8vw;
    }

    .main-title small {
        font-size: 120px;
    }

    .title-descript {
        font-size: 42px;
        line-height: 1.1;
    }

    .h1-descript {
        /* top: -24px; */
        right: 450px;
    }

    .vacancies-item img {
        width: 50%;
    }

    .vacancies-descript {
        margin-left: 50px;
    }

    .vacancies-descript h3 {
        font-size: 31px;
        line-height: 1.2;
    }

    .advantages li {
        font-size: 18px;

        position: relative;
    }

    .advantages li::after {
        top: 6px;
    }

    .club {
        font-size: 18px;
    }

    .club-text-ul {
        width: 100%;
        box-sizing: border-box;
    }

    .li-1 h5 {
        padding-top: 13px;
    }

    .li-1 {
        padding-left: 275px;
    }

    .li-2 {
        padding-right: 260px;
    }


}

@media (max-width: 1250px) {

    .img-1 {
        width: 230px;
    }

    .img-2 {
        width: 464px;
    }

    .h1-descript {
        right: 0;
    }

    .main-title h1 {
        padding-left: 0;
    }

}


@media (max-width: 1100px) {
    .write-us {
        left: 0;
        margin: 0;
    }

    .form-container {
        width: 90%;
    }

    fieldset {
        width: 90%;
    }

    .personal-container {
        width: 100%;
        margin: 0;
    }

    .personal-inputs {
        width: 90%;
    }

    .personal-inputs label {
        flex-grow: 1;
        margin-right: 10px;
    }

    .working {
        width: 90%;
    }

    .working-inputs {
        flex-wrap: wrap;
    }

    .working-inputs label {
        flex-grow: 1;
        margin-right: 10px;
    }

    .working-inputs input {
        width: 100%;
    }

    .why-work li:nth-child(1) {
        margin-right: 20px;
    }

    .why-work li:nth-child(2) {
        margin-right: 20px;
    }

    .why-work li:nth-child(4) {
        margin-right: 20px;
    }

    .why-work li:nth-child(5) {
        margin-right: 20px;
    }

    .why-work li {
        margin-right: 20px;
    }

    .modal {
        width: 100%;
    }

    .coment {
        width: 300px;
        flex-grow: 1;
    }

    .work-exper-wrapper label {
        margin-right: 10px;
    }
}

@media (max-width: 960px) {

    .reviews .container {
        max-width: 734px;
    }

    .reviews h2 {
        font-size: 60px;
    }

    .reviews-list {
        margin-top: 60px;
    }

    .reviews p {
        font-size: 12px;
    }

    .reviews-list-item {
        position: relative;
        width: auto;
        column-gap: 16px;
    }

    .reviews-list-item_wrap {
        width: 234px;
        height: 203px;
    }

    .reviews-list-item img {
        width: 80px;
    }
    .reviews h5 {
        font-size: 24px;
    }

    .reviews .reviews-h5-descript {
        font-size: 16px;
    }

    .main-title .container::after {
        right: -50%;
    }

    .honor h2 {
        font-size: 60px;
    }

    .honor .container {
        max-width: 734px;
    }

    .main-title {
        top: 200px;
    }

    .main-title h1 {
        font-size: 72px;
    }

    .logo-header {
        width: 100px;
    }

    .title-descript {
        font-size: 33px;
    }

    .title-descript-text {
        font-size: 15px;
        width: 85%;
    }

    .vacancies-list-item {
        padding: unset;
    }

    .vacancies-list-name {
        font-size: 16px;
    }

    .vacancies-item {
        flex-wrap: wrap;
    }

    .vacancies-item img {
        width: 100%;
    }

    .vacancies-descript h3 {
        font-size: 25px;
    }

    .vacancies-descript h4 {
        font-size: 18px;
    }

    .vacancies-descript li {
        font-size: 15px;
    }

    .honor ul li {
        font-size: 15px;
    }

    .advantages ul {
        max-width: 734px;
        margin: auto;
        padding: 46px 0;
    }

    .advantages li {
        font-size: 18px;
    }

    .club {
        font-size: 18px;
    }

    .club .container {
        max-width: 734px;
    }

    .club-text {
        padding: 0;
        font-size: 20px;
    }

    .club-text-ul {
        font-size: 16px;
    }

    .gallery_slider__control {
        max-width: 734px;
        margin: 20px auto;
    }

    .slider_control__right svg, .slider_control__left svg {
        height: 40px;
    }

    .img-1 {
        width: 305px;
    }

    .img-2 {
        width: 100%;
    }

    .logo {
        width: 123px;
    }

    .social {
        margin-top: 10px;
    }

    .adress li {
        font-size: 17px;
    }

    .li-1 {
        padding-left: 162px;
        padding-right: 30px;
    }

    .li-2 {
        padding-right: 160px;
        padding-left: 30px;
    }

    .reviews .li-2::after {
        content: "";
        left: -1px;
        width: 577px;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 450px;
        background-image: none;
        background-color: #f7f7f7;
        box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.5);
    }

    .reviews .li-1::after {
        content: "";
        top: -19px;
        left: 39px;
        width: 577px;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 385px;
        background-image: none;
        background-color: #f7f7f7;
        box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.5);
    }

    .reviews .li-3::after {
        content: "";
        top: -34px;
        left: 39px;
        width: 577px;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 290px;
        background-image: none;
        background-color: #f7f7f7;
    }

    .advantages h2::before {
        content: "";

        position: absolute;

        top: -14px;
        right: -1px;

        width: 136px;
        height: 126px;

        background-image: url("img/alb.svg");
        background-repeat: no-repeat;
    }

    .header .social {
        margin-left: 150px;
    }

}

@media (max-width: 734px) {

    .main-title {
        height: calc(70vh - 90px);
        min-height: unset;
    }

    .main-title h1 {
        font-size: 60px;
        letter-spacing: -1px;
    }

    .main-title .container {
        height: 70vh;
        min-height: unset;
    }

    .main-title .container::after {
        display: none;
    }

    .vacancies {
        position: relative;
        right: unset;
        top: unset;
    }

    .vacancies::before, .vacancies::after {
        display: block;
        content: '';
        background: linear-gradient(90deg, #D74548 0%, #C83670 25%, #A93890 50%, #7F388C 75%, #523671 100%);
        height: 12px;
        width: 100%;
    }

    .vacancies-list {
        padding: 16px;
    }

    .honor .container, .advantages .container, .club .container, .reviews .container {
        max-width: 350px;
    }

    .honor .container {
        margin-top: 70px;
    }

    .honor h2 {
        font-size: 58px;
        line-height: normal;
        max-width: 345px;
    }

    .honor ul li {
        font-size: 12px;
        max-width: 250px;
    }

    .gallery_slider__control {
        max-width: 734px;
        margin: unset;
        justify-content: space-between;
        width: 100%;
    }

    .reviews h2 {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .reviews-list-item {
        flex-direction: column;
        row-gap: 16px;
    }

    .reviews-list-item_wrap {
        width: 100%;
    }

    .personal-inputs label {
        width: 45%;
    }

    .personal {
        width: 100%;
    }

    .filter-2 {
        width: 100%;
    }

    .personal .name {
        width: 100%;
    }

    .personal .uni {
        width: 100%;
    }

    .personal .e-mail {
        width: 100%;
    }

    .personal .social-form {
        width: 100%;
    }

    .working-inputs label {
        width: 100%;
    }

    .working-inputs label {
        width: 100%;
    }

    .work-exper-wrapper {
        flex-wrap: wrap;
    }

    .work-exper-wrapper select {
        margin-top: 4px;
        margin-bottom: 10px;
    }

    .work-exper-wrapper input {
        margin-top: 4px;
        margin-bottom: 10px;
    }

    fieldset {
        margin-top: 35px;
    }
}

@media (max-width: 660px) {

    .reviews-h5-descript::after {
        left: auto;
        right: 0;
    }

    .advantages h2::before {
        width: 121px;
    }

    .h1-descript {
        top: -50px;
        font-size: 25px;
    }

    h2 {
        font-size: 30px;
    }

    .title-descript {
        font-size: 30px;
    }

    .vacancies-descript {
        margin-left: 25px;
        margin-right: 3px;
    }

    .vacancies-item {
        margin-bottom: 60px;
    }

    .honor ul {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .honor ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .advantages ul {
        width: 100%;
        box-sizing: border-box;
        padding-left: 50px;
    }

    .advantages li {
        font-size: 17px;
    }

    .club {
        font-size: 17px;
    }

    .club-text-ul {
        font-size: 12px;
    }

    .img-1 {
        width: 176px;
    }

    .footer {

        justify-content: space-around;
        flex-wrap: wrap;
    }

    .adress {
        margin-top: 23px;
    }

    .footer-PS .container {
        flex-direction: column;
    }

    .footer-PS-descript {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .reviews p {
        font-size: 14px;
    }

    .reviews h5 {
        text-align: right;
    }

    .reviews .reviews-h5-descript {
        text-align: right;
    }

    .reviews .li-1 {
        padding: 0 30px;
        margin-top: 180px;
    }

    .reviews .li-2 {
        padding: 0 30px;
        margin-top: 185px;
    }

    .reviews .li-1::before {
        top: -130px;
    }

    .reviews .li-3::before {
        top: -90px;
    }

    .reviews .li-2::before {
        top: -100px;
    }

    .li-2 h5 {
        text-align: left;
    }

    .li-2 .reviews-h5-descript {
        text-align: left;
    }

    .li-2 .reviews-h5-descript::after {
        right: none;
        left: 0;
    }


    .reviews .li-2::after {
        content: "";
        left: -1px;
        width: 100%;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 490px;
        background-image: none;
        background-color: #f7f7f7;
        box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.5);
    }

    .reviews .li-1::after {
        content: "";
        top: -70px;
        left: 0;
        width: 100%;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 450px;
        background-image: none;
        background-color: #f7f7f7;
        box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.5);
    }

    .reviews .li-3::after {
        content: "";
        top: -34px;
        left: 0;
        width: 100%;
        border-radius: 30px;
        position: absolute;
        z-index: -3;
        height: 300px;
        background-image: none;
        background-color: #f7f7f7;
    }
}

@media (max-width: 660px) {


    .advantages ul {
        padding: 17px;
    }

    .header .social-desct {
        display: none;
    }

    .main-title h1 {
        text-align: left;
        line-height: normal;
    }

    .social-mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 200px;
        margin: 0;
        margin-bottom: 30px;
    }

    .social-mob svg {
        fill: #ffffff;
        width: 30px;
        height: 30px;
    }

    .social-mob svg:hover {
        fill: red;
    }

    .mob-ver {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0px 15px;

    }

    .h1-descript {
        top: -24px;
        font-size: 20px;
    }

    .personal-inputs label {
        width: 100%;
    }
}

@media (max-width: 370px) {

    .h1-descript {
        font-size: 15px;
    }

    h2,
    .title-descript {
        font-size: 25px;
    }

    .vacancies-items {
        margin: 0;
    }

    .advantages li {
        font-size: 14px;
    }

    .club {
        font-size: 15px;
    }

    .img-1 {
        width: 135px;
    }

    .reviews .li-1::after {
        height: 655px;
    }

    .reviews .li-2::after {
        height: 685px;
    }

    .li-1 h5 {
        padding-top: 30px;
    }

    .li-2 h5 {
        padding-top: 50px;
    }

    .li-3 h5 {
        padding-top: 70px;
    }

    .reviews .li-3::after {
        height: 445px;
    }
}