/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}
.jc-start {
    justify-content: flex-start;
}
.jc-end {
    justify-content: flex-end;
}
.jc-between {
    justify-content: space-between;
}
.jc-center {
    justify-content: center;
}
.ai-start {
    align-items: flex-start;
}
.ai-end {
    align-items: flex-end;
}
.ai-center {
    align-items: center;
}
.gap {
    gap: 24px 24px;
}
.center {
    text-align: center;
}
.bold {
    font-weight: 600;
}
.upper {
    text-transform: uppercase;
}
.white-block * {
    color: #fff;
}
.white-block .h2,
.white-block .h3,
.white-block .h5 {
    color: #fff;
}
.obj {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.m-auto {
    margin-left: auto;
    margin-right: auto;
}

/* container */

.container {
    max-width: 1160px;
    margin: 0 auto;
    width: calc(100% - 30px);
}

/* bg */

.bg-white {
    background: var(--white);
}

/* Заголовоки */

.h1 {
    color: var(--A-light-theme-Black);
    font-family: "Unbounded", sans-serif;
    font-size: 39px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
.h2 {
    color: var(--A-light-theme-Black);
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 42px;
}
.h3 {
    color: var(--A-light-theme-Black);
    font-family: "Unbounded", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
.h4 {
    color: var(--A-light-theme-Black);
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* padding */

.p-24 {
    padding: 24px;
}
.p-60-t {
    padding-top: 60px;
}
.p-60-b {
    padding-bottom: 60px;
}

/* br */

.br-16 {
    border-radius: 16px;
}

/* border */


/* content */


/* form */

.default-form {
    gap: 24px;
}
.default-form-label {
    width: 100%;
}
.default-form-label.error {
    margin-bottom: -12px;
}
.default-form-label__name {
    display: block;
    width: 100%;
    color: var(--A-light-theme-Black);
    margin-bottom: 12px;
}
.default-form-label__input {
    width: 100%;
    border-radius: 6px;
    color: var(--A-light-theme-Grey);
    border: 1px solid rgba(110, 110, 110, 0.20);
    padding: 8px;
}
.default-form-label__input::placeholder {
    color: rgba(110, 110, 110, 0.30);
}
.default-form-label__input:hover {
    border: 1px solid #FFE9E0;
}
.default-form-label__input:focus {
    border: 1px solid #FF672B;
}
.error .default-form-label__input {
    color: #FC0D1C;
    border: 1px solid #FC0D1C;
    background: #FFE3E5;
}
.default-form-label__error {
    font-size: 12px;
    color: #FC0D1C;
    display: block;
    margin-top: 4px;
}
.default-form-button.button {
    width: 100%;
    margin: 8px 0 -12px 0;
    cursor: pointer;
}
.default-form-accept {
    width: 100%;
}
.default-form-accept input {
    display: none;
}
.default-form-accept__span {
    padding-left: 24px;
    position: relative;
    color: var(--A-light-theme-Grey);
    display: block;
    cursor: pointer;
    font-size: 12px;
}
.default-form-accept__span a {
    color: #FF672B;
}
.default-form-accept__span a:hover {
    text-decoration: underline;
}
.default-form-accept__span:before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/consult/checkbox.svg") no-repeat center center / 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .4s;
}
.default-form-accept__span:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/consult/checkbox-active.svg") no-repeat center center / 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .4s;
}
.default-form-accept input:checked + .default-form-accept__span:after {
    opacity: 1;
}
.default-form-accept input:checked + .default-form-accept__span:before {
    opacity: 0;
}

/* default-form + modal */

.gslide-inline {
    background: transparent;
}
.thanks-modal {
    max-width: 100%;
    width: 845px;
    padding: 47px;
    border-radius: 28px;
    background: #FFF;
    position: relative;
}
.modal-close {
    background: url(../img/consult/close.svg) no-repeat center center / 100%;
    top: 48px;
    right: 40px;
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
}
[data-modal] .ginlined-content {
    max-width: 100%;
    width: 545px;
    padding: 40px;
    border-radius: 16px;
    background: #FFF;
    position: relative;
}
.gslide-description {
    display: none;
}
[data-modal] .modal-close {
    top: 24px;
    right: 24px;
}
.glightbox-clean .gslide-media {
    box-shadow: none;
}

/* video */


/* button */

.button {
    border-radius: 12px;
    background: #FF672B;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 10px 32px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    line-height: 145%;
    border: none;
}
.button:hover {
    background: #F65108;
}

/* absolute-img */

.ab-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1 !important;
}

@media (max-width: 639px) {
    .h2 {
        font-size: 29px;
        line-height: 110%;
    }
}