.banner-page {
    background: url(../images/banner-blog.png);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    height: 380px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
}
.banner-page .box-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.banner-page .box-title h1 {
    font-size: var(--size-h1);
    line-height: var();
    font-weight: 700;
}

.box__content h3 {
    font-size: var(--size-main-title);
    font-weight: 700;
    line-height: 52px;
    position: relative;
    margin-bottom: 70px;
    padding-bottom: 25px;
}
.box__content h3::before {
    position: absolute;
    content: "";
    height: 5px;
    background-color: var(--third);
    width: 150px;
    line-height: 37.5px;
    bottom: 0;
    border-radius: 5px;
}
.right .box__content h3 {
    margin-bottom: 10px;
    padding-bottom: 0;
}
.right .box__content h3::before {
    display: none;
}

.btn-default {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white);
}
.btn-default:hover {
    background: var(--third);
    border: 1px solid var(--third);
} 
.btn-primary {
    background: var(--third);
    border: 1px solid var(--third);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}
.gr-input .input-group  {
    width: 100%;
}
.gr-input .input-group input {
    border-radius: .25rem !important;
    border: 1px solid #ced4da;
    background-color: var(--white);
}
.form-check input {
   margin-top: 0 !important;
}
.form-check label {
    cursor: pointer;
    font-weight: 400;
}
input[type="radio"]:checked::before {
    background: var(--white);
}