



.Brief-bg {
    background: var(--gradient2);
    padding: 4px 0 84px 0;
    margin-top: 84px;
}

.Brief-Button-Wrapper {
    margin-top: 24px;
}


.empty-field {
    background: var(--color7) !important;
    transition-duration: 500ms;
    /* border: 1px solid var(--color2); */
}

.empty-field::placeholder {
    color: var(--color1) !important;
}

.Brief-textarea,
.Brief-checkbox-tile span {
    font-size: medium;
    font-weight: 300;
}

.Brief-checkbox-tile, .Brief-textarea {
    background: var(--color0);
    /* backdrop-filter: blur(4px); */
}

.Brief-textarea::placeholder {
    color: var(--color6);
}

.Brief-textarea {
    display: block;
    padding: 1rem;
    border: none;
    outline: none;
    line-height: 1.4;
    font-family: "Onest", sans-serif;
}

.Brief-checkbox-tile {
    padding: 1rem;
    justify-content: space-between;

}

.Brief-checkbox-tile span {
    align-items: center;
    align-self: center;

}

.check {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
    align-items: flex-start;
}

.check:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.check svg {
    min-width: 18px;
    padding-left: 8px;
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--color3);
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
}

.check svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

.check svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}

.check:hover:before {
    opacity: 1;
}

.check:hover svg {
    stroke: var(--color3);
    transition: all 0.3s linear;
}

.Brief-checkbox:checked+.check svg {
    stroke: var(--color5);
    transition: all 0.3s linear;
}

.Brief-checkbox:checked+.check svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
}

.Brief-checkbox:checked+.check svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}


.Brief-success-send {
    display: none;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 480px;
    font-size: xx-large;
}




/*----------- DESCTOP ---------------------------------------------------*/
@media screen and (min-width: 769px) {

    .BriefPage-wrapper {
        background: var(--gradient2);
        padding: 98px 0 120px 0;
        position: relative;
        margin-top: -120px;
    }

    .Brief-bg {
        min-height: 480px;
    }

    .Brief-wrapper {
        width: 78%;
    }

    .Brief-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
        padding-top: 24px;
    }

    #Brief-reference {
        grid-column: 1 / 3;
        grid-row: 3;
    }



}


/*----------- MOBILE ----------------------------------------------------*/
@media screen and (max-width: 768px) {

    /*--------- CONTENT ----------------------------*/

    .BriefPage-wrapper {
        background: var(--gradient2);
        padding: 174px 0 180px 0;
        position: relative;
        margin-top: -184px;
    }

    .Brief-form {
        padding-top: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    #Brief-reference {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    #Brief-contacts {
        grid-column: 1 / 3;
        grid-row: 5;
    }




}