@font-face {
    font-family: 'DIN Pro';
    src: url('../font/DINPro.woff2') format('woff2'),
        url('../font/DINPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DIN Pro';
}
.logo img
{
    width: 230px;
}
input:focus,
select:focus,
textarea:focus {
    outline: 0;
}

.content-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px;
}

.left {
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.right {
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    align-items: flex-end;
}

.title {
    color: #4ABECD;
    font-size: 35px;
    line-height: 35px;
    margin: 30px 0;
}

.langs a {
    margin-right: 10px;
}

.langs a img {
    width: 45px;
}

.doc-icon {
    margin-top: 50px;
}

.doc-icon img {
    width: 35px;
    margin-bottom: 10px;
}

.doc-icon a {
    display: block;
}

.adress {
    margin-top: 30px;
    font-size: 14px;
}

.adress b {
    display: block;
    font-weight: bold;
    position: relative;
}

.adress b::before {
    position: absolute;
    content: '';
    left: 0;
    top: -3px;
    width: 60px;
    height: 1px;
    background: #4ABECD;
}

.content-wrap-form {
    background: url('../img/bg-form.jpg') no-repeat;
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
}

.form {
    width: 50%;
    background: #fff;
    box-shadow: 0px 5px 8px #00000029;
    border-radius: 25px;
    margin: 100px auto 100px auto;
    padding: 100px 50px 50px 50px;
}

.form input[type="text"] {
    display: block;
    width: 100%;
    height: 36px;
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border-radius: 8px;
    border: 0;
    padding: 0 10px;
    font-size: 13px;
}

.form select {
    display: block;
    width: 100%;
    height: 36px;
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border-radius: 8px;
    border: 0;
    padding: 0 10px;
    font-size: 13px;
}

.form label {
    color: #707070;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.form textarea {
    width: 100%;
    height: 140px;
    border: 0;
    /* UI Properties */
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
}

.form button {
    width: 100px;
    color: #fff;
    height: 35px;
    /* UI Properties */
    background: #4ABECD 0% 0% no-repeat padding-box;
    border-radius: 8px;
    border: 0;
}

.form-title {
    text-align: left;
    font: normal normal bold 20px/26px DINPro;
    letter-spacing: 0px;
    color: #707070;
    position: relative;
    margin-bottom: 40px;
}
.form-title::after
{
    content: '';
    position: absolute;
    left: 0;
    width: 62px;
    height: 1px;
    background: #4ABECD;
    bottom: -10px;
}
label img
{
    width: 50px;
    margin-right: 15px;
}
.swal2-popup .swal2-actions,
.swal2-popup .swal2-styled.swal2-confirm
{
    width: 100%;
}
.swal2-popup .swal2-styled.swal2-confirm
{
    background-color: #4ABECD;
}
.swal2-popup .swal2-styled.swal2-confirm:focus
{
    box-shadow: none;
}
@media (max-width:1024px)
{
    .left {
        width: 100%;
        float: left;
        display: block;
        flex-direction: column;
        justify-content: space-between;
        height: fit-content;
        align-items: center;
        text-align: center;
    }
    .content-wrap {
        position: absolute;
        left: 0;
        width: 100%;
        height: fit-content;
        background: url(../img/bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        padding: 50px;
        background-attachment: fixed;
    }
    .right {
        width: 100%;
        float: left;
        display: block;
        flex-direction: column;
        justify-content: normal;
        height: fit-content;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .form {
        width: 90%;
    }
    .d-flex
    {
        flex-direction: column;
    }
    .d-flex label
    {
        margin-bottom: 15px;
    }
    .form button {
        width: 100%;
    }
}