#contacts {
    background: no-repeat center;
    background-size: 100% auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

#contacts .container {
    padding: 50px 15px;
}

.contacts__title {
    width: 100%;
    text-transform: uppercase;
    line-height: 120%;
    font-family: "Gilroy-Regular";
    font-size: calc(32px + (54 - 32) * ((100vw - 320px) / (1460 - 320)));
}

.contacts__title p:first-child {
    text-align: left;
}

.contacts__title p:last-child {
    text-align: right;
}

.contacts__star {
    position: absolute;
    top: 22%;
    left: 12%;
    z-index: -1;
}

/* .contacts__banner {
    position: absolute;
    top: 4%;
    left: 0;
    width: 100%;
    height: 20px;
    background: #8A39E1;
    transform: rotate(2deg);
    overflow: hidden;
}

.contacts__banner>div {
    width: 200%;
    height: 100%;
    display: flex;
    animation: marquee-infinite 50s linear infinite;
}

.contacts__banner-img {
    width: auto;
    height: 100%;
}

@keyframes marquee-infinite {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
} */


.contact__form-block {
    display: flex;
    flex-direction: column;
}

.contact__form {
    padding-top: 50px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 30px;
}

.contact__input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 25px 0;
    outline: none;
    transition: .5s all;
    /* max-width: 500px; */
}

.contact__input:hover {
    border-bottom: 1px solid #9474b6;
}

.contact__input:focus {
    border-bottom: 1px solid #8A39E1;
}

#contacts .row {
    padding-top: 50px;
    gap: 50px;
    align-items: flex-end;
}

#contacts .row .column:first-child {
    gap: 45px;
}



.contact__btn-block {
    padding-top: 15px;
}

.contact__btn {
    width: 100%;
    max-width: 240px;
    height: 60px;
    outline: none;
    border: none;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: "Gilroy-SemiBold";
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 7px;
    background: #8A39E1;
}



.contact__input::placeholder {
    font-family: 'Gilroy-Light';
}


.contacts__vacancy {
    padding: 50px 0;
    font-size: 36px;
    /* font-size: calc(16px + (36 - 16) * ((100vw - 320px) / (1460 - 320))); */
}

.vacan-arbitra {
    width: 100%;
}

.vacan-arbitra {
    list-style: none;
}

.vacan-arbitra li {
    list-style: none;
    font-size: 30px;
    /* font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1460 - 320))); */
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 33px;
    /* margin-bottom: 33px; */
    padding-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: .3s all;
    margin-bottom: 25px;
}

.vacan-arbitra li:hover {
    /* color: rgb(138, 57, 225); */
    border-bottom: 1px solid rgb(138, 57, 225);
}

.svg-color path {
    transition: .3s all;
}

.vacan-arbitra li:hover .svg-color path {
    stroke: rgb(138, 57, 225);
}

.svg-color {
    width: 50px;
    height: 50px;
}



.modal table {
    border-collapse: collapse;
    width: 100%;
}

.modal td,
.modal th {
    border: 1px solid #fff;
    padding: 10px 20px;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background: url(../images/bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 40px;
    top: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 25px;
    margin: 0 auto;
    width: 80%;
  }
  
  .close {
    color: #aaa;
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: #8A39E1;
  }
  .contact__modal-window-table .capation {
    padding: 40px 0 50px;
}
  

.send-mes {
    position: fixed;
    bottom: 5px;
    right: -50%;
    transition: .3s all ease;
    display: flex;
    opacity: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 139, 34, 0.507);
    width: 100%;
    max-width: 250px;
    height: 80px;
}
.send-mes.active {
    z-index: 1000;
    opacity: 1;
    right: 5px;
}