:root {
    --color_main: hsl(265, 37%, 51%);
    --color_main_dark: hsl(265, 37%, 41%);
    --color_main_light: hsl(265, 37%, 61%);
    --color_main_transparent_half: rgba(123, 84, 177, .5);
    --color_main_transparent_quite: rgba(123, 84, 177, .25);
    --color_main_transparent_slight: rgba(123, 84, 177, .8);
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
         box-sizing: inherit;
}

html {
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    height: inherit;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: inherit;
    color: #2e2e2e;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

label[for] {
    cursor: pointer;
}

input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
input[type='password'],
input[type='url'],
select,
textarea {
    display: block;
    width: 100%;
    height: 3.21429em;
    max-width: 100%;
    padding: 0.71429em 0.92857em;
    font-size: 14px;
    line-height: 1;
    background: #fff;
    border: 1px solid #d5cad9;
    outline: none;
    -webkit-border-radius: 0.21429em;
            border-radius: 0.21429em;
}
textarea {
    min-height: 100px;
    resize: vertical;
}
input[type='text']:hover,
input[type='number']:hover,
input[type='tel']:hover,
input[type='email']:hover,
input[type='password']:hover,
input[type='url']:hover,
select:hover,
textarea:hover {
    border-color: #bdb2c1;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='url']:focus,
select:focus,
textarea:focus {
    border-color: var(--color_main, #7b54b1);
}
input[type='text']:disabled,
input[type='number']:disabled,
input[type='tel']:disabled,
input[type='email']:disabled,
input[type='password']:disabled,
input[type='url']:disabled,
select:disabled,
textarea:disabled {
    opacity: 0.3;
    pointer-events: none;
}
input::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
input::-moz-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
input:-moz-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
input:-ms-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    opacity: 0;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

.button,
input[type='reset'],
input[type='submit'],
button[type='submit'] {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    height: 3.75em;
    padding: 1.1875em 3.5em;
    font-size: 1.14286em;
    font-weight: 700;
    text-align: center;
    color: #DCA93C;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    background: var(--color_main, #7b54b1);
    outline: none;
    border: none;
    -webkit-border-radius: 1.875em;
            border-radius: 1.875em;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 13px var(--color_main_transparent_quite, rgba(123, 84, 177, .25));
            box-shadow: 0 5px 13px var(--color_main_transparent_quite, rgba(123, 84, 177, .25));
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.button:hover,
input[type='reset']:hover,
input[type='submit']:hover,
button[type='submit']:hover {
    color: #fff;
    background: var(--color_main_light, #8d68bf);
}
.button:focus,
input[type='reset']:focus,
input[type='submit']:focus,
button[type='submit']:focus {
    color: #fff;
    background: var(--color_main_dark, #6c4a9c);
    outline: none;
}
.button:disabled,
input[type='reset']:disabled,
input[type='submit']:disabled,
button[type='submit']:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.button.button_outline {
    color: var(--color_main, #7b54b1);
    background: transparent;
    border: 1px solid #d4d4d2;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.button.button_outline:hover {
    border-color: var(--color_main, #7b54b1);
}
.button.button_outline:focus {
    background: #d4d4d2;
    border-color: #d4d4d2;
}

.button-up {
    display: none;
    width: 0;
    height: 0;
    position: fixed;
    bottom: 50px;
    right: 50px;
    text-indent: -9999px;
    overflow: hidden;
    border: 25px solid transparent;
    border-bottom-color: currentColor;
    z-index: 101;
}

.scrollbar::-webkit-scrollbar {
    width: 4px;
    background: #d8d8d8;
    -webkit-border-radius: 3px;
            border-radius: 3px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: var(--color_main, #7b54b1);
    -webkit-border-radius: 3px;
            border-radius: 3px;
}

.page-header .scrollbar::-webkit-scrollbar-thumb {
    background: var(--color_main_dark, #6c4a9c);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Cormorant', serif;
    display: block;
    margin-bottom: 1em;
    line-height: inherit;
    font-weight: 700;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}

h1, .h1 {
    font-size: 1.42857em;
}

@media (min-width: 922px) {

    h1, .h1 {
        font-size: 2.85714em;
    }
}

h2, .h2 {
    font-size: 1.14286em;
}

@media (min-width: 922px) {

    h2, .h2 {
        font-size: 2.14286em;
    }
}

h3, .h3 {
    font-size: 1em;
}

@media (min-width: 922px) {

    h3, .h3 {
        font-size: 1.42857em;
    }
}

h4, h5, h6,
.h4, .h5, .h6 {
    font-size: 0.92857em;
}

@media (min-width: 922px) {

    h4, h5, h6,
    .h4, .h5, .h6 {
        font-size: 1.14286em;
    }
}

a {
    text-decoration: none;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    color: inherit;
    outline: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

a:hover {
    color: var(--color_main, #7b54b1);
}

a:active {
    color: var(--color_main_dark, #6c4a9c);
}

a:focus {
    color: var(--color_main_light, #8d68bf);
    outline: none;
}

p {
    margin: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text {
    /* word-break: break-all; */
    word-wrap: break-word;
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto
}

.text a:link {
    color: var(--color_main, #7b54b1);
}

.text a:not(.button):visited {
    color: #9b9b9b;
}

.text a:hover {
    color: var(--color_main_dark, #6c4a9c);
}

.text a:not(.button):active {
    color: #9b9b9b;
}

.text p,
.text table {
    margin-bottom: 1em;
}

.text ul,
.text ol {
    margin-bottom: 1em;
}

.text ul {
    padding-left: 0.71429em;
    line-height: 2.21429em;
}

.text ul li {
    position: relative;
}

.text ul li:before {
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 1em;
    left: -0.71429em;
    content: '';
    background: currentColor;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    z-index: 2;
}

.text ul ul {
    margin-left: 1em;
}

.text ol {
    line-height: 2.21429em;
    counter-reset: counter;
}

.text ol li:before {
    counter-increment: counter;
    content: counters(counter, '.') '. ';
}

.text ol ol {
    margin-left: 1em;
}

.text table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.text table th,
.text table thead {
    font-weight: 700;
}

.text table th,
.text table td {
    padding: 0.35714em;
    vertical-align: top;
    border: 1px solid;
}

.text .images {
    margin-top: 0.71429em;
}

@media (min-width: 576px) {

    .text .images {
        margin-top: 2.14286em;
    }
}

.images img {
    display: block;
    height: auto;
    margin-bottom: 0.71429em;
    -webkit-border-radius: 0.35714em;
            border-radius: 0.35714em;
}

@media (min-width: 576px) {

    .images img {
        margin-bottom: 2.14286em;
    }
}

.container,
.container-fluid {
    padding-right: 1.07143em;
    padding-left: 1.07143em;
}

.container-fluid {
    max-width: 1200px;
}

.row {
    margin-left: -1.07143em;
    margin-right: -1.07143em;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    padding-right: 1.07143em;
    padding-left: 1.07143em;
}

.card-deck .card {
    margin-bottom: 1.07143em;
}
@media (min-width: 576px) {
    .card-deck {
        margin-right: -1.07143em;;
        margin-left: -1.07143em;
    }
    .card-deck .card {
        margin-right: 1.07143em;
        margin-left: 1.07143em;
    }
}
.card-group > .card {
    margin-bottom: -1.07143em;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.page {
    overflow: hidden;
    overflow-y: auto;
}

.page-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: inherit;
}
.page-top {
    position: relative;
}
.page-top,
.page-bottom {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.page-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-top: 2.14286em;
    padding-bottom: 2.14286em;
}
@media (min-width: 922px) {

    .page-body {
        padding-top: 2.85714em;
        padding-bottom: 2.85714em;
    }
}

.form .control {
    margin-bottom: 1.78571em;
}

.form .roll {
    overflow: hidden;
    overflow-y: auto;
}

.form .control-group .control {
    margin-bottom: 1.07143em;
}

.form .control-group .control:last-child {
    margin-bottom: 0;
}

.form .control-group__label {
    margin-bottom: 1.07143em;
}

.form .control__text {
    margin-top: 0.41667em;
    font-size: 0.85714em;
}

.form .label,
.form .control-group__label {
    display: block;
    max-width: 100%;
    margin-bottom: 0.71429em;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}

.form .input {
    margin-bottom: 0.35714em;
}

.form .error_input,
.form .error_input:focus {
    border-color: red;
}

.form .form__footer {
    text-align: center;
}

.control input[type='radio'],
.control input[type='checkbox'] {
    width: 0;
    height: 0;
    position: absolute;
    clip: rect(0,0,0,0);
    opacity: 0;
}

.control input[type='checkbox'] + label,
.control input[type='radio'] + label {
    padding-left: 2em;
    position: relative;
}

.control input[type='radio'] + label:before,
.control input[type='checkbox'] + label:before {
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 2px;
    left: 0;
    content: '';
    background: #fff no-repeat center center;
    border: 1px solid #d5cad9;
    z-index: 2;
}

.control input[type='checkbox'] + label:before {
    -webkit-border-radius: 0.21429em;
            border-radius: 0.21429em;
}

.control input[type='radio'] + label:before {
    -webkit-border-radius: 50%;
            border-radius: 50%;
}

.control input[type='radio']:checked + label:before,
.control input[type='checkbox']:checked + label:before {
    color: var(--color_main, #7b54b1);
    border-color: currentColor;
    background-color: currentColor;
}

.control input[type='checkbox']:checked + label:before {
    background-image: url('../img/check.svg');
    -webkit-background-size: 19px 14.17px;
            background-size: 19px 14.17px;
}

.control input[type='radio']:checked + label:after {
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 6px;
    left: 4px;
    content: '';
    background: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    z-index: 2;
}

.infofield {
    margin-bottom: 0.71429em;
}

.error,
.errors,
.privacy,
.privacy_field,
.required,
.required_field {
    margin-top: 0.55556em;
    font-size: 0.64286em;
    color: #9b9b9b;
}

.error,
.errors {
    padding: 0;
    position: static;
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: none;
	opacity: 1;
    color: red;
}

.box-success {
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    height: inherit;
    text-align: center;
    background-color: #fff
}

.box-success .box-success__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
       -moz-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
    font-size: 1.42857em;
    font-weight: 700;
}

.box-success i {
    display: block;
    margin-bottom: 2em;
    color: var(--color_main, #7b54b1);
}

.box-success i svg {
    display: inline-block;
    width: 98px;
    height: auto;
    fill: currentColor;
}
.is-success .box-success {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 100%;
    font-size: 0.85714em
}

.breadcrumbs li {
    margin-right: 0.35714em;
    margin-bottom: 0.21429em;
}

.paginat {
    margin: 1.07143em 0;
    font-size: 1.14286em;
    text-align: center;
    font-weight: 700;
    line-height: 1
}

.paginat li {
    display: inline-block;
    vertical-align: middle;
}

.paginat a,
    .paginat .current span {
    display: block;
    margin: 0.3125em !important;
    margin-top: 0 !important;
    padding: 0.5em 0.75em;
}

.paginat a:hover,
.paginat a:focus,
.paginat a:active,
.paginat .current span {
    color: #fff;
    -webkit-border-radius: 0.3125em;
            border-radius: 0.3125em;
    -webkit-box-shadow: 0 5px 13px var(--color_main_transparent_quite, rgba(123, 84, 177, .25));
            box-shadow: 0 5px 13px var(--color_main_transparent_quite, rgba(123, 84, 177, .25));
}

.paginat a:hover {
    background-color: var(--color_main_light, #8d68bf);
}

.paginat a:focus,
.paginat a:active {
    background-color: var(--color_main_dark, #6c4a9c);
}

.paginat .current span {
    background-color: var(--color_main, #7b54b1);
}

.box-solid {
    background-color: #fff;
    -webkit-border-radius: 0.35714em;
            border-radius: 0.35714em;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.dark-block {
    color: #DCA93C;
    background-color: var(--color_main, #7b54b1)
}

.dark-block a,
    .dark-block .error,
    .dark-block .errors,
    .dark-block .privacy,
    .dark-block .privacy_field,
    .dark-block .required,
    .dark-block .required_field {
    color: inherit;
}

.soc {
    vertical-align: middle
}

.soc a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 3.42857em;
    height: 3.42857em;
    margin-right: 0.71429em;
    margin-bottom: 0.71429em;
    text-align: center;
    color: var(--color_main, #7b54b1);
    background: #f9f9f9;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}

.soc a:last-child {
    margin-right: 0;
}

.soc a:hover,
.soc a:focus,
.soc a:active {
    color: #fff;
    background: var(--color_main, #7b54b1);
}

.soc i {
    font-size: 1.57143em;
}

.nav_ a,
.nav_ li {
    position: relative;
}

.nav_ a {
    display: block;
}

.nav_ .drop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.nav_ .current > a,
.nav_ .active:not(.nav__item_parent) > a {
    color: var(--color_main, #7b54b1);
}

.nav_ .current > a:active,
.nav_ .active:not(.nav__item_parent) > a:active {
    color: #9b9b9b;
}

.nav__item-name {
    display: block;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
}

.nav_vertical {
    padding: 2.14286em;
    line-height: 1.64286em
}

.nav_vertical a {
    padding-top: 0.85714em;
    padding-bottom: 0.85714em;
}

.nav_vertical .drop {
    width: 3.57143em;
}

.nav_vertical .nav__item_parent > a {
    padding-right: 3.57143em;
}

.nav_vertical .nav__item:hover > a {
    color: var(--color_main, #7b54b1);
}

.nav_vertical .nav__item:not(:last-child) {
    border-bottom: 1px solid #d6cbda;
}

.nav_vertical .nav__list_child {
    display: none;
    border-left: 1px solid #d6cbda;
}

.nav_vertical .nav__list_child .nav__item {
    border-bottom: none;
}

.nav_vertical .nav__list_child a {
    padding-left: 0.85714em;
}

.nav_vertical .nav__list_child .nav__list_child {
    margin-left: 0.85714em;
    margin-bottom: 0.85714em;
}

.nav_vertical .nav__item_main > .nav__list_child {
    margin-bottom: 0.85714em;
}

.nav_vertical .active > a i {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.nav_vertical .active > .nav__list_child {
    display: block;
}

.nav_horizontal .nav__list_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 100%;
}

.nav_horizontal .nav__list_child {
    max-width: 400px;
    min-width: 260px;
    position: absolute;
    top: 100%;
    left: -2.14286em;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    z-index: 22;
}

.nav_horizontal .nav__list_child .nav__list_child {
    top: 0;
    left: 100%;
}

.nav_horizontal .nav__item_parent:hover  > .nav__list_child {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

.nav_horizontal .nav__item_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
}

.nav_horizontal .nav__item_main > a {
    text-transform: uppercase;
    font-weight: 700;
}

.nav_horizontal .nav__item_main > a .drop {
    width: 0.71429em;
    padding-top: 0.14286em;
}

.nav_horizontal .nav__item_main:last-child {
    padding-right: 0;
}

.nav_horizontal .nav__item_main.nav__item_parent > a {
    padding-right: 1.07143em;
}

.nav_horizontal .nav__item_main.nav__item_parent:hover > a i {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.nav_horizontal .nav_vertical .nav__list_child {
    display: block;
    border-left: none;
}

.nav_horizontal .nav_vertical .nav__list_child .nav__item:not(:last-child) {
    border-bottom: 1px solid #d6cbda;
}

.nav_horizontal .nav_vertical .nav__list_child a {
    padding-left: 0;
}

.nav_horizontal .nav_vertical .nav__list_child .nav__list_child {
    margin-left: 0;
    margin-bottom: 0;
}

.gallery {
    position: relative
}

.gallery .slides {
    margin-left: -1.07143em;
    margin-right: -1.07143em;
}

.gallery .slide,
    .gallery .slide__box,
    .gallery .slide__image,
    .gallery .slide__content,
    .gallery .slide__name,
    .gallery .slide__text {
    display: block;
}

.gallery .slide {
    margin-bottom: 6.42857em;
    padding-left: 1.07143em;
    padding-right: 1.07143em;
}

@media (min-width: 576px) {

    .gallery .slide {
        margin-bottom: 2.5em;
    }
}

@media (min-width: 922px) {

    .gallery .slide {
        margin-bottom: 3.57143em;
    }
}

.gallery .slide__image {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
            background-size: cover;
}

.gallery .slide__name {
    margin-bottom: 0.35714em;
    font-size: 1.14286em;
    font-weight: 700;
}

.gallery .slide__text {
    color: #9b9b9b;
}
.gallery__button {
    width: 1.76em;
    height: 1.76em;
    position: absolute;
    bottom: 0.88em;
    font-size: 1.78571em;
    line-height: 1.76em;
    text-align: center;
    color: var(--color_main, #7b54b1);
    background: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, .1)
}
.gallery__button:hover,
.gallery__button:focus {
    color: #fff;
    background: var(--color_main, #7b54b1);
}
@media (min-width: 576px) {

    .gallery__button {
        bottom: -2.08em;
    }
}
@media (min-width: 1400px) {

    .gallery__button {
        margin-top: -0.88em;
        top: 50%;
        bottom: auto;
    }
}
.gallery__button_prev {
    margin-left: -2.36em;
    left: 50%;
}
@media (min-width: 576px) {

    .gallery__button_prev {
        margin-left: -7em;
    }
}
@media (min-width: 1400px) {

    .gallery__button_prev {
        margin-left: 0;
        left: -2.96em;
    }
}
.gallery__button_next {
    margin-right: -2.36em;
    right: 50%;
}
@media (min-width: 576px) {

    .gallery__button_next {
        margin-right: -7em;
    }
}
@media (min-width: 1400px) {

    .gallery__button_next {
        margin-right: 0;
        right: -2.96em;
    }
}

.burger {
    display: block;
    width: 70px;
    margin: 0;
    padding: 2.14286em 1.07143em 2.14286em;
    background: none;
    border: none;
    outline: none;
    cursor: pointer
}

.burger:hover,
.burger:focus,
.burger:active {
    outline: none;
}

.burger:before,
.burger span,
.burger:after {
    display: block;
    height: 5px;
    background: #DCA93C;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.burger:before,
.burger:after {
    content: '';
    -webkit-transform-origin: 38px;
        -ms-transform-origin: 38px;
            transform-origin: 38px;
}

.burger span {
    margin: 8px 0;
}

.contacter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.28571em;
    font-weight: 700
}

.contacter svg {
    display: inline-block;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-flex-basis: 1.66667;
        -ms-flex-preferred-size: 1.66667;
            flex-basis: 1.66667;
    width: 1.66667em;
    height: 1.66667em;
    fill: currentColor;
    cursor: pointer;
}

@media (min-width: 576px) {

    .contacter svg {
        margin-right: 0.55556em;
        cursor: auto;
    }
}
.contacter__content {
    display: none;
    max-width: 100%;
}
@media (min-width: 576px) {

    .contacter__content {
        display: block;
    }
}
.contacter__tooltip {
    display: block;
    min-width: 11.11111em;
    max-width: 72vw;
    margin-top: 1.11111em;
    padding: 0.83333em;
    position: absolute;
    top: 100%;
    right: -0.83333em;
    color: var(--color_main, #7b54b1);
    background: #fff;
    -webkit-border-radius: 0.27778em;
            border-radius: 0.27778em;
    -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
    z-index: 2
}
.contacter__tooltip:after {
    display: block;
    width: 1.11111em;
    height: 1.11111em;
    position: absolute;
    top: -0.55556em;
    right: 1.11111em;
    content: '';
    background: inherit;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.contacter__phones {
    overflow: hidden
}
.contacter__phones  a {
    display: block;
}

.page-curtain {
    display: none;
    width: 100%;
    height: 100%;
    background: var(--color_main, #7b54b1);
    background: var(--color_main_transparent_half, rgba(123, 84, 177, .5));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.page-header {
    background: var(--color_main, #7b54b1);
    position: relative;
    top: 0;
    color: #DCA93C;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    will-change: top;
    z-index: 4
}

.page-header a:hover,
    .page-header a:active,
    .page-header a:focus {
    color: inherit;
}
.page_home:not(.isPageHeaderFixed):not(.isNavMobileOpened) .signboard .page-header {
    background: none;
}
.page-header__row {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
@media (min-width: 576px) {

    .page-header__row {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
}

.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    font-size: 1.57143em;
    font-weight: 700;
    line-height: 1
}

.logo i,
.logo img  {
    margin-right: 8px;
}

.logo i {
    display: inline-block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    font-style: normal;
    text-align: center;
    color: var(--color_main, #7b54b1);
    line-height: 45px;
    background: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    overflow: hidden;
}

.logo img {
    max-width: 200px;
    max-height: 90px;
}

.logo > .useradmin_contener,
.logo p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
}

.page-header__logo,
.page-header__contacter {
    max-width: 21.42857em;
    margin-top: 2.14286em;
    margin-bottom: 2.14286em;
}

.page-header__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.page-header__contacter {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 575px) {

    .page-header__contacter {
        padding: 0;
    }
}

.page-header__burger {
    padding: 0;
}

@media (min-width: 576px) {

    .page-header__burger {
        margin-left: 5em;
    }
}

@media (min-width: 1024px) {

    .page-header__burger {
        display: none;
    }
}

.page-header__nav {
    max-width: 320px;
    height: -webkit-calc(100% - 105px);
    height: calc(100% - 105px);
    position: fixed;
    top: 105px;
    left: -100%;
    bottom: 0;
    visibility: hidden;
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
    will-change: left;
    z-index: -1;
}

@media (min-width: 1024px) {

    .page-header__nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-self: stretch;
            -ms-flex-item-align: stretch;
                align-self: stretch;
        max-width: 100%;
        height: auto;
        margin-top: 2.14286em;
        position: static;
        visibility: visible;
        z-index: auto;
        z-index: initial;
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav__item_main {
        padding-right: 2.14286em;
        padding-bottom: 2.14286em;
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav__item_main > a {
        padding: 0.71429em 0 0.57143em;
        border-bottom: 2px solid transparent;
    }
}

.page-header__nav .nav__item_main:hover > a,
.page-header__nav .nav__item_main.active > a,
.page-header__nav .nav__item_main.current > a {
    color: inherit;
}

@media (min-width: 1024px) {

    .page-header__nav .nav__item_main:hover > a,
    .page-header__nav .nav__item_main.active > a,
    .page-header__nav .nav__item_main.current > a {
        border-color: currentColor;
    }
}

@media (max-width: 1023px) {

    .page-header__nav .nav__item_main.nav__item_parent > a {
        padding-right: 3.57143em;
    }
}

@media (max-width: 1023px) {

    .page-header__nav .nav__item_main.nav__item_parent > a .drop {
        width: 3.57143em;
        padding-top: 0;
    }
}

@media (max-width: 1023px) {

    .page-header__nav .nav__item_main.nav__item_parent > a i {
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
    }
}

@media (max-width: 1023px) {

    .page-header__nav .nav__item_main.nav__item_parent:hover > a i {
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
    }
}

@media (max-width: 1023px) {

    .page-header__nav .nav__item_main.nav__item_parent.active > a i {
        -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
                transform: rotate(-180deg);
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav_vertical {
        padding-top: 0.71429em;
        padding-bottom: 0.71429em;
        color: #2e2e2e;
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav_vertical a:hover {
        color: var(--color_main, #7b54b1);
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav_vertical a:focus,
    .page-header__nav .nav_vertical a:active {
        color: var(--color_main_dark, #6c4a9c);
    }
}

@media (min-width: 1024px) {

    .page-header__nav .nav_vertical .active > a i {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}

.isNavMobileOpened {
    overflow: hidden
}

.isNavMobileOpened .page-header {
    background: var(--color_main, #7b54b1);
}

.isNavMobileOpened .page-header__container,
.isNavMobileOpened .page-header__row {
    background: inherit;
}

.isNavMobileOpened .page-header__nav {
    background: inherit;
    left: 0;
    visibility: visible;
    overflow: hidden;
    overflow-y: auto !important;
    z-index: 2;
}

.isNavMobileOpened .page-header__nav a {
    padding-top: 1.07143em;
    padding-bottom: 1.07143em;
    text-transform: uppercase;
    font-weight: 700;
}

.isNavMobileOpened .page-header__nav .nav__list_main,
.isNavMobileOpened .page-header__nav .nav__item_main {
    display: block;
}

.isNavMobileOpened .page-header__nav .nav__item_main:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.isNavMobileOpened .page-header__nav .nav__list_child,
.isNavMobileOpened .page-header__nav .nav__item_parent:not(.active):hover > .nav__list_child {
    display: none;
}

.isNavMobileOpened .page-header__nav .nav__item_main > .nav__list_child {
    margin-bottom: 1.07143em;
}

.isNavMobileOpened .page-header__nav .nav__list_child {
    position: static;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.isNavMobileOpened .page-header__nav .nav__list_child a {
    padding-left: 1.07143em;
    font-size: 0.85714em;
    color: inherit;
}

.isNavMobileOpened .page-header__nav .nav__list_child .nav__item {
    border-bottom: none !important;
}

.isNavMobileOpened .page-header__nav .nav__list_child .nav__list_child {
    margin-left: 1.07143em;
}

.isNavMobileOpened .page-header__nav .active > .nav__list_child {
    display: block;
}

.isNavMobileOpened .page-header__nav .nav_vertical {
    padding: 0;
}

.isNavMobileOpened .burger span {
    opacity: 0;
}

.isNavMobileOpened .burger:before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.isNavMobileOpened .burger:after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.isNavMobileOpened .page-curtain {
    display: block;
}

.signboard {
    padding-top: 105px;
    background: var(--color_main, #7b54b1) no-repeat center center;
    -webkit-background-size: cover;
            background-size: cover
}

.signboard.bg-default {
    background-image: url(../img/signboard.jpg);
}

@media (min-width: 768px) {

    .signboard {
        margin-bottom: 1.42857em;
    }
}

.signboard:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: var(--color_main_transparent_slight, rgba(123, 84, 177, .8));
    z-index: 2;
}

.signboard .page-header {
    width: 100%;
    position: absolute;
    left: 0;
}
.signboard__container {
    padding-top: 0.71429em;
    padding-bottom: 2.14286em;
    position: relative;
    z-index: 3;
}
@media (min-width: 768px) {

    .signboard__container {
        padding-bottom: 4.28571em;
    }
}
.signboard__row {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (min-width: 768px) {

    .signboard__row {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
}
@media (min-width: 768px) {

    .signboard__form {
        margin-right: 0.71429em;
    }
}
@media (min-width: 922px) {

    .signboard__form {
        margin-right: 7.85714em;
    }
}
.signboard__form .form {
    max-width: 100%;
    padding-top: 2.14286em;
    -webkit-border-radius: 0.35714em;
            border-radius: 0.35714em;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
            box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}
@media (min-width: 576px) {

    .signboard__form .form {
        width: 25.71429em;
    }
}
.signboard__form .form .button {
    margin-bottom: 0.71429em;
}
.signboard__form .form.is-success {
    padding-top: 0;
}
.signboard__form .form__title {
    font-size: 1.42857em;
}
.signboard__form .form__header,
    .signboard__form .form__body,
    .signboard__form .form__footer {
    padding-left: 0.71429em;
    padding-right: 0.71429em;
}
@media (min-width: 768px) {

    .signboard__form .form__header,
    .signboard__form .form__body,
    .signboard__form .form__footer {
        padding-left: 2.14286em;
        padding-right: 2.14286em;
    }
}
.signboard__form .form__body {
    margin-bottom: 1.07143em;
}
.signboard__form .form__body .control:last-child {
    margin-bottom: 0;
}
.signboard__form .scrollbar {
    max-height: 300px;
    margin-right: 0.71429em;
    padding-right: 0;
    overflow: hidden;
    overflow-y: auto;
}
.signboard__form .scrollbar.scrollbar_vertical {
    padding-right: 0.71429em;
}
@media (min-width: 768px) {

    .signboard__form .scrollbar,
    .signboard__form .scrollbar_vertical {
        padding-right: 1.42857em;
    }
}
.signboard__form .form__footer {
    padding-top: 1.42857em;
    padding-bottom: 0.71429em;
    border-top: 1px solid #d5cad9;
}
.signboard__content {
    margin-bottom: 2.14286em;
}
@media (min-width: 768px) {

    .signboard__content {
        margin-bottom: 0;
    }
}
.signboard__text {
    font-size: 1.28571em;
    font-weight: 700;
    color: #DCA93C;
}
@media (min-width: 768px) {

    .signboard__text {
        font-size: 2.57143em;
    }
}
@media (min-width: 922px) {

    .signboard__text {
        font-size: 3.57143em;
    }
}

.isPageHeaderFixed .page-header {
    width: 100%;
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation: fixedPageHeader 0.5s;
            animation: fixedPageHeader 0.5s;
    z-index: 5;
}

@-webkit-keyframes fixedPageHeader {
    0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); opacity: 0.1; }
    100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

@keyframes fixedPageHeader {
    0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); opacity: 0.1; }
    100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

.page-section {
    margin-bottom: 2.85714em;
}

@media (min-width: 922px) {

    .page-section {
        margin-bottom: 4.28571em;
    }
}
.page-section__title,
.page-section__jumper {
    text-align: center;
}

@media (min-width: 922px) {

    .page-section_services {
        margin-bottom: 5.71429em;
    }
}
.gallery_services .slide__image {
    position: relative;
    overflow: hidden;
}
.gallery_services .slide__image:before {
    display: block;
    width: 0;
    height: 0;
    padding-bottom: 51.8%;
    content: '';
}
.gallery_services .slide__image:after {
    display: block;
    width: 101%;
    height: 0;
    padding-bottom: 8%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: #fff;
    -webkit-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
            transform: rotate(4deg);
    -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
            transform-origin: top left;
}
.gallery_services .slide__content {
    padding: 1.42857em 0.71429em 2.14286em;
}
@media (min-width: 922px) {

    .gallery_services .slide__content {
        padding-left: 2.14286em;
        padding-right: 2.14286em;
    }
}
.gallery_services .slide__text {
    font-size: 0.85714em;
}
@media (min-width: 922px) {

    .gallery_services .slide__text {
        font-size: inherit;
    }
}

.page-section_about h1,
.page-section_about .h1 {
    margin-bottom: 0.5em;
}

.page-section_about .text {
    padding: 2.14286em 0.71429em;
}

@media (min-width: 922px) {

    .page-section_about .text {
        padding: 3.57143em;
    }
}

@media (min-width: 922px) {

    .page-section_team {
        margin-bottom: 0;
    }
}
.gallery_team {
    text-align: center;
}
@media (min-width: 576px) {

    .gallery_team {
        margin-bottom: 8.92857em;
    }
}
@media (min-width: 1400px) {

    .gallery_team {
        margin-bottom: 0;
    }
}
.gallery_team .slide__image {
    width: 11.85714em;
    height: 11.85714em;
    margin: 0 auto;
    margin-bottom: 1.42857em;
    background: no-repeat center center;
    -webkit-background-size: cover;
            background-size: cover;
    overflow: hidden;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
@media (min-width: 576px) {

    .gallery_team .gallery__button_prev {
        margin-left: -2.36em;
    }
}
@media (min-width: 1400px) {

    .gallery_team .gallery__button_prev {
        margin-left: 0;
    }
}
@media (min-width: 576px) {

    .gallery_team .gallery__button_next {
        margin-right: -2.36em;
    }
}
@media (min-width: 1400px) {

    .gallery_team .gallery__button_next {
        margin-right: 0;
    }
}

.page-section_feedback {
    padding-top: 2.14286em;
    padding-bottom: 3.21429em;
    position: relative;
    background: no-repeat center center;
    -webkit-background-size: cover;
            background-size: cover
}

.page-section_feedback.bg-default {
    background-image: url(../img/feedback.jpg);
}

.page-section_feedback:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: var(--color_main_transparent_slight, rgba(123, 84, 177, .8));
    z-index: 2;
}

.page-section_feedback .page-section__container {
    position: relative;
    z-index: 3;
}

.page-section_feedback .page-section__title {
    font-size: 2.57143em;
}

@media (min-width: 922px) {

    .page-section_feedback .page-section__title {
        font-size: 2.85714em;
    }
}

.page-section_feedback .page-section__text {
    font-size: 1.28571em;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 922px) {

    .page-section_feedback .page-section__text {
        font-size: 2.14286em;
    }
}

@media (min-width: 768px) {

    .page-section_feedback .form {
        padding-left: 2.5em;
        padding-right: 2.5em;
    }
}

@media (min-width: 922px) {

    .page-section_feedback .form {
        padding-left: 0;
        padding-right: 0;
    }
}

.page-section_feedback .form .form__submit {
    text-align: center;
}

.page-section_feedback .form .form__submit .label {
    display: none;
}

@media (min-width: 576px) {

    .page-section_feedback .form .form__submit .label {
        display: block;
    }
}

@media (min-width: 576px) {

    .page-section_feedback .form .form__submit .button {
        margin-top: -0.5625em;
    }
}

.page-section_feedback .form__footer {
    color: inherit;
}

.page-section_clauses {
    margin-bottom: 2.85714em;
}
.gallery_clauses .slide__content {
    padding: 2.14286em 0.71429em;
}
@media (min-width: 922px) {

    .gallery_clauses .slide__content {
        padding-left: 1.42857em;
        padding-right: 1.42857em;
    }
}

.page-footer {
    padding: 2.14286em 0 3.57143em;
    background: #fff;
}

.page-footer__nav {
    margin-bottom: 2.5em
}

@media (max-width: 575px) {

    .page-footer__nav .nav__list_main {
        display: block;
    }
}

@media (min-width: 576px) {

    .page-footer__nav .nav__item_main {
        padding-right: 3.21429em;
    }
}

.page-footer__nav a {
    padding: 0.35714em 0;
    font-size: 0.85714em;
}

.page-footer__soc {
    -webkit-flex-basis: 5.71429em;
        -ms-flex-preferred-size: 5.71429em;
            flex-basis: 5.71429em;
    max-width: 5.71429em;
    margin-bottom: 2.14286em;
}

@media (min-width: 576px) {

    .page-footer__soc {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {

    .page-footer__soc {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
        max-width: none;
        margin-bottom: 0;
    }
}

.copyright {
    color: #9b9b9b;
}

.page-aside {
    margin-top: 2.14286em;
}

@media (min-width: 922px) {

    .page-aside {
        margin-top: 0;
    }
}

.aside-block {
    margin-bottom: 2.14286em;
    padding: 2.14286em;
}
.aside-block:last-child {
    margin-bottom: 0;
}

.page-aside__subscription {
    position: relative;
    background: no-repeat center center;
    -webkit-background-size: cover;
            background-size: cover
}

.page-aside__subscription.bg-default {
    background-image: url(../img/subscription.jpg);
}

.page-aside__subscription:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: var(--color_main_transparent_slight, rgba(123, 84, 177, .8));
    z-index: 2;
}

.page-aside__subscription .subscription-block__box {
    position: relative;
    z-index: 3;
}

.page-aside__subscription .subscription-block__text {
    margin-bottom: 0.71429em;
}

.category-intro {
    margin-bottom: 0.71429em;
    overflow: hidden;
}
.category-intro__image {
    display: block;
    margin-bottom: 1.42857em;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
            background-size: cover;
    -webkit-border-radius: 0.35714em;
            border-radius: 0.35714em;
}
@media (min-width: 480px) {

    .category-intro__image {
        width: -webkit-calc(33.33333% - 20px);
        width: calc(33.33333% - 20px);
        margin-right: 1.42857em;
        float: left;
    }
}
.category-intro__image:after {
    display: block;
    width: 0;
    height: 0;
    padding-bottom: 38.46154%;
    content: '';
}
.category-intro__content {
    margin-bottom: 0.71429em;
}
@media (min-width: 480px) {

    .category-intro__content {
        margin-bottom:  1.42857em;
    }
}

.comments-block {
    margin-top: 1.42857em;
}

@media (min-width: 480px) {

    .comments-block {
        margin-top:  2.85714em;
    }
}

.blog-item-category {
    margin-bottom: 0.71429em;
}

@media (min-width: 480px) {

    .blog-item-category {
        margin-bottom:  2.14286em;
    }
}
.blog-item-post {
    margin-bottom: 0.71429em;
    padding: 1.42857em;
    padding-bottom: 0;
    overflow: hidden;
}
@media (min-width: 480px) {

    .blog-item-post {
        margin-bottom:  2.14286em;
    }
}
.blog-item-post__image {
    display: block;
    margin: 0 auto 1.42857em;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
            background-size: cover;
    -webkit-border-radius: 0.35714em;
            border-radius: 0.35714em;
}
@media (min-width: 480px) {

    .blog-item-post__image {
        width: 10.71429em;
        height: 10.71429em;
        margin-right: 1.42857em;
        float: left;
    }
}
.blog-item-post__image:after {
    display: block;
    width: 0;
    height: 0;
    padding-bottom: 100%;
    content: '';
}
.blog-item-post__content {
    margin-bottom: 1.42857em;
}
.blog-post__date,
.blog-item-post__date {
    margin-bottom: 0.35714em;
    font-size: 0.85714em;
    color: #9b9b9b;
}
.block__footer .socnets-d a {
    font-size: 1.66667rem;
    text-align: center;
    display: inline-block;
    margin-right: .83334rem;
    margin-bottom: .83334rem;
    line-height: 1;
    vertical-align: middle;
}

.block__footer .socnets-d .fa-viber:before {

    content: "";

    display: inline-block; /* или block, в зависимости от задачи */

    width: 24px;  /* задайте нужный размер */

    height: 24px;

    background-image: url(../custom/my/img/socnets/max.svg);

    background-repeat: no-repeat;

    background-size: contain; /* чтобы SVG масштабировался */

}

/* Родительский блок на всю ширину */
.full-width-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;        /* Перенос на новую строку */
    gap: 2%;               /* Отступы между блоками (оставшиеся 4% делятся на 2) */
    box-sizing: border-box;
    padding: 0 10px;       /* Небольшие отступы по краям (опционально) */
}

/* Каждый маленький блок — ссылка */
.grid-item {
    width: 48%;            /* Почти половина ширины родителя */
    box-sizing: border-box;
    /* Внутренние отступы и оформление — по вашему вкусу */
    padding: 20px;
    background: #494323;
    border-radius: 8px;
    text-decoration: none;
    color: #DCA93C;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 20px;   /* Отступ снизу для переноса */
}
.grid-item h4{
   font-size: 32px;
			font-family: "Cormorant", sans-serif;
			font-weight: 500;
			line-height: 1.2; 
    color: #DCA93C;
    
}
/* Эффект при наведении (опционально) */
.grid-item:hover {
    background: #494323cc;
    transform: scale(1.02);
}

/* ===== АДАПТАЦИЯ ДЛЯ МАЛЕНЬКИХ ЭКРАНОВ ===== */
@media (max-width: 767px) {
    .grid-item {
        width: 100%;       /* Каждый блок на всю ширину экрана */
        margin-bottom: 15px;
    }
    
    .full-width-grid {
        gap: 0;            /* Убираем gap, т.к. блоки теперь по одному в строке */
    }
}
/* ====================================================
   БЛОК С КАРТОЙ (30% текст / 70% карта)
   Адаптив: до 767px — текст сверху, карта снизу
   ==================================================== */

/* --- Общий контейнер --- */
.map-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    max-width: 1200px !important;
    margin: 50px auto !important;
    padding: 0 15px !important;
    gap: 0 !important;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* --- Левая часть (текст, 30%) --- */
.map-info {
    width: 30% !important;
    padding: 30px 25px !important;
    background: #f8f9fa;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.map-info-title {
    font-family: 'Nunito Sans', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    color: #1a1a1a !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.3 !important;
}

.map-info-text {
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #444444 !important;
    margin: 0 0 10px 0 !important;
}

.map-info-text:last-child {
    margin-bottom: 0 !important;
}

.map-info-text strong {
    color: #0056b3 !important;
}

/* --- Правая часть (карта, 70%) --- */
.map-container {
    width: 70% !important;
    min-height: 350px !important;
    background: #e9ecef;
    box-sizing: border-box !important;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 350px !important;
    border: none !important;
    display: block !important;
}

/* --- Дополнительно: если карта через div с id --- */
#map {
    width: 100% !important;
    height: 100% !important;
    min-height: 350px !important;
}

/* ====================================================
   АДАПТИВНОСТЬ (до 767px)
   ==================================================== */
@media (max-width: 767px) {
    .map-wrapper {
        flex-direction: column !important;
        border-radius: 8px;
        margin: 0 10px;
    }
    
    .map-info {
        width: 100% !important;
        padding: 20px 18px !important;
        order: 1 !important; /* Текст сверху */
    }
    
    .map-container {
        width: 100% !important;
        min-height: 280px !important;
        order: 2 !important; /* Карта снизу */
    }
    
    .map-container iframe {
        min-height: 280px !important;
    }
    
    #map {
        min-height: 280px !important;
    }
    
    .map-info-title {
        font-size: 20px !important;
    }
    
    .map-info-text {
        font-size: 15px !important;
    }
}