body{
    overflow-x: hidden;
}
.g-main-home-form{
    position: relative;
    max-width: 1140px;
    width: calc(100% - 360px);
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #28314E 0%, #1A1C33 134.81%), #FFFFFF;
    border-radius: 20px;
    margin: 60px auto;
    z-index: 9999999;
}
.g-main-contact-form{
    max-width: 946px;
}
.g-modal{
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99999999;
}
/*.contact-wrapper-main {*/
/*    overflow-x:hidden;*/
/*}*/
.g-modal:before{
    content: '';
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .5);
}
.g-responce-modal{
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99999999;
   background: rgba(0, 0, 0, 0.72);
}
/*.contact-wrapper-main {*/
/*    overflow-x:hidden;*/
/*}*/
.g--responce-modal:before{
    content: '';
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .5);
}
.g-modal-inner{
    max-width: 945px;
    width: 100%;
    height: 683px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99999999;
    overflow-y: auto;
    background: linear-gradient(180deg, #28314E 0%, #1A1C33 134.81%), #FFFFFF;
    border-radius: 20px;
}


.g-modal-inner > div{
    height: 100%;
    box-sizing: border-box;
}
.g-modal-inner > div > div{
    height: 100%;
}
.g-modal-inner::-webkit-scrollbar {
    display: none;
}
.g-modal-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.g-modal-close{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9999999999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.g-modal-close img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.g-form{
    width: 100%;
    max-width: 590px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /*background: linear-gradient(180deg, #28314E 0%, #1A1C33 134.81%), #FFFFFF;*/
}
.g-form div{
    box-sizing: border-box;
}
.g-form-block-title{
    margin-bottom: 25px;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 0.03em;
}
.g-form form{
    width: 100%;
}
.g-form-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.g-main-mode{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.g-career-mode{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.double-field{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.g-error {
    border-color: unset!important;
    border: 1px solid #C32A25!important;
}
.double-field > div{
    width: calc(50% - 10px);
}
.single-field{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.single-field > div{
    width: 100%;
}
.g-field{
    display: flex;
    flex-direction: column;
}
.g-text-field{
    width: 100%;
    height: 55px;
    background: #0D1022;
    border-radius: 10px;
    padding: 15px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: white;
    box-sizing: border-box;
}
.g-text-field.phone{
    width: 100%;
}
#phoneDown{
    width: 100%;
}
.g-text-field::placeholder{
    color: #868D9F;
}
.g-border-gradient{
    border-color: transparent;
}
.g-border-gradient:focus,.g-border-gradient:focus-visible{
    outline: none;
    border-style: solid;
    border-image-source: linear-gradient(175deg, rgba(1,166,243,1) 0%, rgba(117,61,150,1) 92%);
    border-width: 1px;
    border-image-slice: 1;
}
.g-dropdown-field{
    position: relative;
    width: 100%;
}
.g-dropdown-value{
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #3B4568;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    padding: 15px 20px;
    cursor: pointer;
}
.g-dropdown-value:before{
    content: '\f107';
    font-family: FontAwesome;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 3;
}
.g-dropdown-value.clicked:before{
    content: '\f106';
}
.g-dropdown-options{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: #3B4568;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    margin-top: -15px;
    z-index: 2;
}
.g-dropdown-option{
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 15px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}
.g-textarea-field{
    width: 100%;
    height: 175px;
    background: #0D1022;
    border-radius: 10px;
    padding: 15px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: white;
    resize: none;
    box-sizing: border-box;
}
.remove-file-textarea {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}
label.custom-file-upload::after {
    position: absolute;
    content: "";
    bottom: 40px !important;
    width: 11px;
    height: 22px;
    right: 20px;
    background: url(/img/form/delete.svg) no-repeat;
    background-size: cover;
    cursor: pointer;
}
.g-field{
    position: relative;
}
.textarea-file {
    justify-content: flex-end;
    margin-top: 15px;
    display: none;
}
.attachment {
    display: none;
}
.form-registration {
    background: linear-gradient(226.23deg, #01A6F3 7.57%, #753D96 103.27%);
    box-shadow: 0px 10px 17px rgba(11, 49, 183, 0.15);
    border-radius: 20px;
    width: 268px;
    height: 53px;
    margin: 30px auto;
    border: none;
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;

    color: #FFFFFF;

}

.error_area {
    display: flex;
    align-items: center;
    background: #C32A25;
    border-radius: 8px;
    padding: 10px 15px;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.error-field {
    margin-top: 15px;
    padding: 0 60px 0 15px;
}
.error-icon {
    display: flex;
    justify-content: center;
    color: red;
    background: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.server-error {
    padding-left: 8px;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin: 0;
    color: #FFFFFF;
}
.modal-subcontent{
    position: relative;
}
#hideTextScroll{
    position: absolute;
    top: -1px;
    left: 0;
    height: 20px;
    width: 100%;
    z-index: 20;
    background: rgb(13 16 34 / 92%);
}
.carier-form {
    width: calc(50% - 20px);
    margin-left: 20px;
}
.langbar{
    position: relative;
    width: 70px;
}
.choosen-lang{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    cursor: pointer;
    text-transform: uppercase;
}
.choosen-lang img{
    width: 28px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}
.choosen-lang:before{
    content: '\f107';
    font-family: FontAwesome;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 3;
}
.choosen-lang.clicked:before{
    content: '\f106';
}
.languages-options{
    position: absolute;
    top: 45px;
    right: -20px;
    display: none;
    flex-direction: column;
    background: #3B4568;
    border-radius: 10px;
    padding: 20px 30px;
    margin-top: -15px;
    z-index: 2;
}
.language-option-item{
    width: 100%;
}
.language-option-item a,.language-option-item a:hover{
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 15px;
}
.language-option-item:last-child a{
    margin-bottom: 0;
}
.language-option-item a img{
    width: 28px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}
@media (max-width: 1024px) {
    /*.g-main-contact-form{*/
    /*    padding: 20px;*/
    /*}*/
    .g-main-home-form{
        width: 100%;
    }
    .g-modal-close{
        top: 20px;
        right: 20px;
    }

    .g-vacancy {
        position: sticky;
        top: 0;
        z-index: 9999999999;
        cursor: pointer;
        display: block;
        text-align: right;
        padding: 25px 0px;
        background: #262E4A;
        margin-right: -35px;
    }
    #modalContent {
        padding-top: 0 !important;
        background: #262E4A;
    }
    .g-modal-close img{
        width: 30px;
        height: 30px;
    }
    .carier-form {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 600px) {
    .g-form-block-title{
        padding: 0 20px;
        font-size: 21px;
    }
    .double-field{
        flex-direction: column;
        margin-bottom: 0;
    }
    .double-field > div{
        width: 100%;
        margin-bottom: 20px;
    }
    .g-form-inner{
        padding: 0 20px;
    }
    #phoneDown {
        width: 100%;
    }
    .g-modal-close img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }
    .form-registration {
        width: 185px;
    }
    .form-registration:hover {
        width: 185px;
    }
}
