/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    /** SPECIFIC **/
    --color-accent: #f07c00;
    --gray: #868786;

}

body {
    color: #000;
    font-family: 'Lato', sans-serif;
}

/**
 * BASIC
 */

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

.btn,
button,
a {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

a:hover,
a:focus {
    color: inherit;
}

.text a {
    color: var(--color-accent);
}

.text a:hover {
    text-decoration: underline;
    color: var(--color-accent);
}

a:hover, a:focus {
    text-decoration: none;
}

.text a[href^="tel"]:before {
    content: '\f095';
    font-family: 'FontAwesome';
    display: inline-block;
    margin-right: 8px;
}

.text a[href^="mailto"]:before {
    content: '\f0e0';
    font-family: 'FontAwesome';
    display: inline-block;
    margin-right: 8px;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1670px;
    width: 100%;
}

.container-small {
    max-width: 1354px;
}

/** BIG **/
.marg-lg,
.marg-lg-top {
    margin-top: var(--space-60);
}

.marg-lg,
.marg-lg-bottom {
    margin-bottom: var(--space-60);
}

.pad-lg,
.pad-lg-top {
    padding-top: var(--space-60);
}

.pad-lg,
.pad-lg-bottom {
    padding-bottom: var(--space-60);
}

/** md **/
.marg-md,
.marg-md-top {
    margin-top: var(--space-50);
}

.marg-md,
.marg-md-bottom {
    margin-bottom: var(--space-50);
}

.pad-md,
.pad-md-top {
    padding-top: var(--space-50);
}

.pad-md,
.pad-md-bottom {
    padding-bottom: var(--space-50);
}

/** sm **/
.marg-sm,
.marg-sm-top {
    margin-top: var(--space-40);
}

.marg-sm,
.marg-sm-bottom {
    margin-bottom: var(--space-40);
}

.pad-sm,
.pad-sm-top {
    padding-top: var(--space-40);
}

.pad-sm,
.pad-sm-bottom {
    padding-bottom: var(--space-40);
}

/** xs **/
.marg-xs,
.marg-xs-top {
    margin-top: var(--space-25);
}

.marg-xs,
.marg-xs-bottom {
    margin-bottom: var(--space-25);
}

.pad-xs,
.pad-xs-top {
    padding-top: var(--space-25);
}

.pad-xs,
.pad-xs-bottom {
    padding-bottom: var(--space-25);
}

/**
 * TEXT
 */

.text {
    overflow: visible;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ol > li,
.text ul > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "•";
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    font-family: sans-serif;
    position: relative;
    font-weight: 900;
    font-size: 16px;
    color: var(--color-accent);
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(odd) {
    /*background: rgba(0, 0, 0, 0.05);*/
    background: #fff;
}

.text table tr:nth-child(even) {
    /*background: rgba(0, 0, 0, 0.05);*/
    background: #f2f2f2;
}

.text table td {
    padding: 8px 12px;
    border: 1px solid #f2f2f2;
}

.text table tr:first-child td,
.text table tr:first-child th {
    border-top: none;
}

.text table tr:last-child td,
.text table tr:last-child th {
    border-bottom: none;
}

.text table th:first-child,
.text table td:first-child {
    border-left: none;
}

.text table th:last-child,
.text table td:last-child {
    border-right: none;
}

/**
 * HEADER
 */
header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

header .container {
    text-align: center;
}

.langs-menu {
    padding-top: 47px;
    padding-bottom: 35px;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    float: left;
}

#page #main-menu > ul > .active > a {
    color: var(--color-accent);
}

#main-menu a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    padding: 58px 14px;
    text-transform: uppercase;
    display: block;
}

#main-menu ul {
    font-size: 0;
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

.value-btn-wrapper:not(:last-child) {
    margin-bottom: 10px;
}

#container-page #page #main-menu li > ul > li.active > a {
    background: var(--color-accent);
    color: #fff;
}

.subpage #page #main-menu li > ul > li a,
#page #main-menu li > ul > li a {
    padding: 12px 40px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: block;
}

.subpage #page #main-menu li > ul > li li a {
    background: #f7f7f7;
}

.subpage #page #main-menu li > ul > li a,
#page .sticky #main-menu li > ul > li a {
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    display: block;
}

.sticky #main-menu li > ul > li:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
}

.subpage #main-menu li > ul > li:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
}

#main-menu li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#main-menu .sticky li > ul {
    background: #fff;
}

#main-menu li > ul > li {
    border-bottom: 1px solid #d8d8d8;
    display: block;
    width: 100%;
    text-align: left;
}

#main-menu li > ul.hovered {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

#main-menu li > ul {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: calc(100% + 20px);
    width: 334px;
    left: -26px;
}

.sticky #main-menu li > ul {
    top: calc(100% - 8px);
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu > ul > li:nth-last-child(1) > ul > li > ul,
#main-menu > ul > li:nth-last-child(2) > ul > li > ul,
#main-menu > ul > li:nth-last-child(3) > ul > li > ul {
    left: auto;
    right: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

/**
 * FOOTER
 */
footer {
    padding-top: 2px;
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #f4f4f4;
    background-color: var(--gray);
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

.footer-bar-links {
    font-size: 0;
    text-transform: uppercase;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

.footer-bar-links a {
    color: inherit;
    text-decoration: underline;
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form .form-control {
    /* font-size: 14px; */
}

/* TEXTAREA */
.form textarea.form-control {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

/* ZAOKRĄGLENIA INPUTÓW */
.form .form-control {
    /* border-radius: 0; */
}

.form button.captcha-refresh {
    /* border-top-right-radius: 0; */
    /* border-bottom-right-radius: 0; */
}

.form .form-control {
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.05em;
    color: #000;
}

.form button.captcha-refresh,
.form .form-control {
    border-color: rgba(0, 0, 0, 0.1);
}

.form .form-control:focus {
    border-color: var(--color-accent);
}

.form .before-consent-row,
.form .after-consent-row,
.form .checkboxradio-container label {
    color: #767676;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.form .before-consent-row, .form .after-consent-row {
    font-size: 12px;
}

.form button.captcha-refresh,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 0;
}

.form .form-group-lg button.captcha-refresh {
    color: var(--color-accent);
    border-width: 1px;
}

.form .form-group-lg button.captcha-refresh:hover {
    color: #fff;
    background-color: var(--color-accent);
}

.form .form-element-name {
    color: var(--color-accent);
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/icheck.png);
}

.contact-form .row {
    margin-left: -8px;
    margin-right: -8px;
}

.contact-form .col-lg-1, .contact-form .col-lg-10, .contact-form .col-lg-11, .contact-form .col-lg-12, .contact-form .col-lg-2, .contact-form .col-lg-3, .contact-form .col-lg-4, .contact-form .col-lg-5, .contact-form .col-lg-6, .contact-form .col-lg-7, .contact-form .col-lg-8, .contact-form .col-lg-9, .contact-form .col-md-1, .contact-form .col-md-10, .contact-form .col-md-11, .contact-form .col-md-12, .contact-form .col-md-2, .contact-form .col-md-3, .contact-form .col-md-4, .contact-form .col-md-5, .contact-form .col-md-6, .contact-form .col-md-7, .contact-form .col-md-8, .contact-form .col-md-9, .contact-form .col-sm-1, .contact-form .col-sm-10, .contact-form .col-sm-11, .contact-form .col-sm-12, .contact-form .col-sm-2, .contact-form .col-sm-3, .contact-form .col-sm-4, .contact-form .col-sm-5, .contact-form .col-sm-6, .contact-form .col-sm-7, .contact-form .col-sm-8, .contact-form .col-sm-9, .contact-form .col-xs-1, .contact-form .col-xs-10, .contact-form .col-xs-11, .contact-form .col-xs-12, .contact-form .col-xs-2, .contact-form .col-xs-3, .contact-form .col-xs-4, .contact-form .col-xs-5, .contact-form .col-xs-6, .contact-form .col-xs-7, .contact-form .col-xs-8, .contact-form .col-xs-9 {
    padding-left: 8px;
    padding-right: 8px;
}

.contact-form .form button.captcha-refresh {
    right: 8px;
}

.form .checkboxradio-container {
    line-height: normal;
}

/**
 * SELECT2
 */

.form-element-select .form-control-feedback {
    display: none;
}

/* Base */
.select2-container--default .select2-selection--single {
    height: 34px;
    border-radius: 0;
    border-color: #e5e5e5;
}

.select2-container--default .select2-selection--single.form-control {
    padding: 0;
}

.form-group-lg .select2-container--default .select2-selection--single {
    height: 46px;
}

.form-group-md .select2-container--default .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
}

.form-group-lg .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
}

.form-group-md .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

/* Opened */
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #000;
}

/* Selected option / inside */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
    padding-right: 50px;
    font-size: 14px;
    color: #000;
}

.form-group-lg .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 18px;
    padding-right: 50px;
}

.form-group-md .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 16px;
    padding-right: 50px;
    letter-spacing: 0.05em;
}

.form-group-md .select2-results__option,
.form-group-md .select2-container .select2-selection--single .select2-selection__rendered {
    letter-spacing: 0.05em;
}

/* Arrow box */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0 !important;
    height: 34px;
    line-height: 32px;
    width: 34px;
    text-align: center;
    font-size: 12px;
    color: #7b7b7b;
}

.form-group-lg .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    line-height: 44px;
    width: 44px;
}

.form-group-md .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
    line-height: 38px;
    width: 38px;
}

/* Arrow icon */
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "\f107";
    display: inline-block;
    vertical-align: middle;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

/* Dropdown */
.select2-dropdown {
    border-color: var(--color-accent);
}

.select2-dropdown.select2-dropdown {
    border-radius: 0;
}

/*.select2-container--open .select2-dropdown--above {*/
/*border-bottom-left-radius: 0;*/
/*border-bottom-right-radius: 0;*/
/*}*/
/*.select2-container--open .select2-dropdown--below {*/
/*border-top-left-radius: 0;*/
/*border-top-right-radius: 0;*/
/*}*/

.select2-results__option {
    padding: 10px 16px;
}

.form-group-lg .select2-results__option {
    padding: 13px 18px;
}

.form-group-sm .select2-results__option {
    font-size: 11px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-accent);
}

@media screen and (min-width: 1140px) {
    .select2-container--default .select2-selection--single:hover {
        border-color: var(--color-accent);
    }
}

/**
 * MAP POINTS
 */
.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}

/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 0;
}

.social-icon > * {
    vertical-align: middle;
}

.social-icon .fa {
    font-size: 20px;
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu li {
    display: inline-block;
    vertical-align: top;
    font-size: initial;
    padding: 3px 5px;
}

.langs-menu ul {
    display: block !important;
    height: auto !important;
    font-size: 0;
    margin: 0 -5px;
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.lang .langs-menu-short {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.langs-menu a {
    font-size: 14px;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    line-height: 32px;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#page .langs-menu .active a {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    padding: 5px 15px;
    font-size: 0;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    position: relative;
    cursor: pointer;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: all 0.4s;
    font-size: 20px;
    line-height: 12px;
}

.langs-menu.active .lang-button .arrow {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.langs-menu-icon img {
    max-width: 100%;
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
    padding-top: 10px;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
.
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 47%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 40px;
}

.article-text table {
    text-align: left;
}

/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/

/**
 * GALLERY
 */

.gallery-list {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    background: url("../images/galPlus.png") no-repeat center center rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.main-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgba(0, 0, 0, 0.6);
}

.main-slide {
    height: 100vh;
    min-height: 500px;
    max-height: 1000px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.main-slide .h2 {
    padding-bottom: 6%;
}

.h1 {
    font-size: 120px;
    line-height: 140px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--color-accent);
}

.h2 {
    color: var(--color-accent);
    padding: 2px 0;
    font-size: 60px;
    letter-spacing: 0;
    font-weight: 700;
}

.h3 {
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0;
    font-weight: 900;
    color: #000;
    text-align: center;
}

.text {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 300;
    color: #000;
}

.text.base-text {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0;
    color: #000;
}

.main-about-text-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 710px;
    padding: 0 30px;
}

.main-slide-small {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 300;
    color: #fff;
}

.main-slide-text-wrapper {
    float: right;
    padding: 9.8% 6.4%;
    max-width: 50%;
}

.main-slide-text-wrapper .btn {
    margin-top: 20px;
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.main-slide-texts {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.arrow-icon {
    width: 100%;
    position: relative;
    z-index: 100;
    height: 100%;
    background: url("../images/icons/arrow.svg") no-repeat center center /contain;
}

section:not(:first-child) .go-down:before {
    background: #000;
}

.go-down:before {
    content: '';
    display: block;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background: var(--gray);
}

.go-down {
    float: left;
    pointer-events: auto;
    width: 110px;
    height: 110px;
    padding: 34px;
    cursor: pointer;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.go-down-wrapper {
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    z-index: 800;
    bottom: 0;
}

.go-down-inside {
    display: flex;
    align-items: flex-end;
    padding-bottom: 4%;
}

.page-top .go-down-inside {
    padding-bottom: 2%;
}

.page-top .go-down-inside,
.main-slider-section .go-down-inside {
    width: 50%;
}

.main-slider-section .go-down-inside {
    padding-bottom: 9.8%;
}

.types {
    position: relative;
    background: url("../images/typesBg.jpg") no-repeat top center /100% #f6f6f6;
}

.types-texts {
    float: left;
    width: 33.3333%;
    padding-top: 9.4%;
}

.types-buy-texts .text,
.types-texts .text {
    padding-top: 16px;
}

.type-circle {
    width: 90%;
    display: inline-block;
    max-width: 420px;
}

.type-circle-inside:before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

.type-circle-inside img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.type-circle-inside {
    z-index: 100;
    width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    position: relative;
}

.type-circle-shadow {
    padding: 30px;
    position: relative;
    z-index: 100;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
}

.types-list {
    overflow: hidden;
    margin-top: -66px;
    padding-top: 66px;
    pointer-events: none;
}

.types-list li:nth-child(odd) {
    text-align: right;
    margin-top: -66px;
}

.types-list li:nth-child(even) {
    text-align: left;
    margin-top: 84px;
}

.types-list li {
    position: relative;
    pointer-events: all;
    float: right;
    width: 50%;
}

.type-circle-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 36px;
    color: #000;
    padding-top: 40px;
}

.type-buy-box {
    display: block;
    font-size: 0;
    text-align: left;
}

.types-list-buy .type-circle-title {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    width: calc(100% - 364px);
    padding: 0 6.4%;
}

.types-list-buy .type-circle-shadow {
    max-width: 364px;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.types-list-buy {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}

.types-buy-texts {
    display: inline-block;
    width: 50%;
    text-align: left;
    vertical-align: middle;
    padding-bottom: 60px;
    padding-left: 20.3%;

}

.types-list-buy li:not(:last-child) {
    margin-bottom: 62px;
}

.types-buy {
    text-align: center;
    font-size: 0;
    padding: 78px 0 83px;
    position: relative;
    background: url("../images/typesBuyBg.jpg") no-repeat center center transparent;
}

.types-buy-img img {
    display: block;
    max-width: 100%;
    -webkit-animation: fishF1 3s ease-in-out infinite;
    animation: fishF1 3s ease-in-out infinite;
}

.types-buy-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    max-width: 544px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

@-webkit-keyframes fishF1 {
    from {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(-3px, 15px);
    }
    to {
        transform: translate(0, -0px);
    }
}

@keyframes fishF1 {
    from {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(-3px, 15px);
    }
    to {
        transform: translate(0, -0px);
    }
}

@media screen and (min-width: 1140px) {
    .type-buy-box[href]:hover .type-circle-shadow,
    .type-circle[href]:hover .type-circle-shadow {
        background-color: var(--color-accent);
    }
}

.numbers .container {
    position: relative;
    z-index: 10;
}

.numbers:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    background: url("../images/numbersApla.jpg") no-repeat center center /contain #000;
    opacity: 0.7;
}

.numbers {
    position: relative;
    padding: 130px 0 57px;
    background-attachment: fixed;
    background-size: cover;
}

.number-list {
    display: flex;
    flex-wrap: wrap;
}

.number-box:nth-child(even) {
    text-align: right;
}

.number-box {
    width: 50%;
    margin-bottom: 88px;
}

.number-big {
    margin-bottom: 10px;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 900;
}

.number-box-wrapper {
    display: inline-block;
    text-align: left;
    width: 280px;
}

.number-small {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 300;
    color: #fff;
}

.numbers-paths .paths-left > div {
    width: 60px;
    position: absolute;
    right: 2px;
    height: 3px;
    background: url("../images/path.png") bottom left transparent;
}

.numbers-paths .paths-left .path-middle {
    top: 50%;
    margin-top: -1px;
}

.numbers-paths .paths-left .path-bottom {
    bottom: 0;
}

.numbers-paths .paths-left .path-top {
    top: 0;
}

.numbers-paths .paths-left {
    position: absolute;
    left: 474px;
    top: 35px;
    bottom: 106px;
    width: 3px;
    background: url("../images/path.png") bottom left transparent;
}

.numbers-paths .paths-right > div {
    width: 60px;
    position: absolute;
    left: 2px;
    height: 3px;
    background: url("../images/path.png") bottom left transparent;
}

.numbers-paths .paths-right .path-middle {
    top: 50%;
    margin-top: -1px;
}

.numbers-paths .paths-right .path-bottom {
    bottom: 0;
}

.numbers-paths .paths-right .path-top {
    top: 0;
}

.numbers-paths .paths-right {
    position: absolute;
    right: 474px;
    top: 35px;
    bottom: 106px;
    width: 3px;
    background: url("../images/path.png") bottom left transparent;
}

.numbers .numbers-paths .path-to-right,
.numbers .numbers-paths .path-to-left {
    width: 88px;
    top: 50%;
    margin-top: -1px;
    background: url("../images/path.png") bottom left transparent;
}

.numbers-paths {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.numbers-paths .paths-left .path-to-right {
    left: 1px;
    right: auto;
}

.numbers-paths .paths-right .path-to-left {
    right: 1px;
    left: auto;
}

.numbers-img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    width: 45%;
    max-width: 560px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.numbers-img img {
    display: block;
    width: 100%;
}

.about-us {
    display: flex;
    position: relative;
}

.main-about-texts,
.main-about-images {
    width: 50%;
}

.main-about-texts {
    padding: 240px 0;
    text-align: center;
}

.main-about-texts .text {
    padding-top: 16px;
}

.main-about-texts .base-text {
    padding-bottom: 38px;
}

.btn {
    display: inline-block;
    padding: 8px 45px;
    border: 2px solid var(--gray);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    text-transform: uppercase;
}

.btn-base {
    background: #fff;
    border-color: var(--gray);
    color: #000;
}

.btn-back {
    margin-bottom: 30px;
}

header,
header .container {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.subpage header .container {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.subpage .sticky .container {
    margin-top: -10px;
    margin-bottom: -10px;
}

.subpage header,
.sticky {
    background: #fff;
}

.sticky .logo {
    margin: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    float: left;
    width: 200px;
}

.logo {
    margin: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    float: left;
    width: 300px;
}

.langs-menu,
.logo {
    /*padding-top: 37px;*/
    /*padding-bottom: 25px;*/
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#page #main-menu ul ul a {
    padding: 15px 15px;
}

#main-menu a {
    padding: 48px 14px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.sticky #main-menu a {
    padding: 28px 14px 33px;
}

.sticky .langs-menu {
    padding-top: 17px;
    padding-bottom: 10px;
}

.subpage #main-menu a {
    padding: 38px 14px 43px;
}

.subpage .langs-menu {
    padding-top: 27px;
    padding-bottom: 10px;
}

.subpage #main-menu a,
.sticky #main-menu a {
    color: #000;
}

.subpage .langs-menu a,
.sticky .langs-menu a {
    color: var(--gray);
    border-color: var(--gray);
}

.subpage .logo .st0,
.sticky .logo .st0 {
    fill: var(--gray) !important;
}

@media screen and (max-width: 1139px) {
    #main-menu a {
        color: #000;
    }

    .langs-menu a {
        color: var(--gray);
        border-color: var(--gray);
    }

    .logo .logo-change-color {
        fill: var(--gray);
    }
}

header.sticky {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.numbers .path {
    left: 50%;
    width: 3px;
    margin-left: -1px;
    height: 25%;
}

.numbers .path.ver-top {
    top: 0;
}

.numbers .path.ver-bottom {
    bottom: 0;
}

.types-buy .path {
    left: 50%;
    width: 3px;
    margin-left: -1px;
    height: 25%;
}

.types-list li:nth-child(odd) .dot {
    left: 0;
    top: 1px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.types-list li:nth-child(even) .dot {
    top: 1px;
    right: -1px;
    -webkit-transform: translate3d(50%, -50%, 0);
    -moz-transform: translate3d(50%, -50%, 0);
    -ms-transform: translate3d(50%, -50%, 0);
    -o-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}

.types-list li:nth-child(odd) .path {
    left: 1px;
    right: auto;
}

.types-list li:nth-child(even) .path {
    right: 0;
    left: auto;
}

.types-list .path {
    position: absolute;
    top: 210px;
    height: 3px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: -1px;
    width: calc(100% - 360px);
}

.dot-bottom {
    bottom: 0;
    left: 75%;
    -webkit-transform: translate3d(-50%, 50%, 0);
    -moz-transform: translate3d(-50%, 50%, 0);
    -ms-transform: translate3d(-50%, 50%, 0);
    -o-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0);
}

.dot-top {
    top: 0;
    left: 75%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.dot-left {
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.dot-right {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    -moz-transform: translate3d(50%, -50%, 0);
    -ms-transform: translate3d(50%, -50%, 0);
    -o-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}

.dot {
    width: 12px;
    height: 12px;
    background: #f29400;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.path {
    position: absolute;
    z-index: 100;
    pointer-events: none;
}

.path:before {
    position: absolute;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    background: url("../images/path.png") bottom left 1px transparent;
}

.main-slider-section .path {
    bottom: 0;
    top: 70%;
    left: 50%;
    width: 3px;
    margin-left: -1px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#page:not(.line-animations) .main-slider-section .path:before,
.main-slider-section .path.seen:before {
    height: 100%;
}

#page:not(.line-animations) .main-slider-section .path .dot-top,
.main-slider-section .path.seen .dot-top {
    opacity: 1;
}

#page:not(.line-animations) .main-slider-section .path .dot-bottom,
.main-slider-section .path.seen .dot-bottom {
    opacity: 1;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -ms-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.types .path.bottom {
    bottom: 0;
}

.types .path.top {
    top: -2px;
}

.types .path.hor {
    width: 266px;
    height: 3px;
}

.types .path.ver {
    top: 0;
    bottom: 0;
    width: 3px;
    margin-left: 15.8%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.types .path {
    left: 50%;
}

.types .container {
    position: relative;
    padding-bottom: 54px;
}

.main-about-big-circle {
    position: absolute;
    top: -119px;
    right: -107px;
    padding: 35px;
    background: rgba(0, 0, 0, 0.07);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 610px;
}

.main-about-small-circle {
    padding: 35px;
    background: rgba(0, 0, 0, 0.07);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 380px;
    top: 116px;
    left: 30%;
}

.main-about-circle-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.main-about-circle-img {
    width: 100%;
    position: relative;
    height: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    padding-top: 100%;
}

.main-about-images {
    position: relative;
    background-size: cover;
    background-position: bottom center;
}

.about-us .path {
    position: absolute;
    top: 372px;
    bottom: 0;
    width: 3px;
    left: 50%;
    z-index: 200;
    margin-left: -2px;
}

.quality:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: url("../images/qualityApla.jpg") no-repeat center center /contain #000;
    opacity: 0.6;
}

.quality-center {
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    z-index: 100;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.quality .text {
    padding-top: 10px;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0;
    font-weight: 300;
    color: #fff;
}

.quality {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    height: calc(100vh - 20px);
}

.certyficates {
    background: #f6f6f6;
    padding: 92px 0;
    position: relative;
}

.certyficates .path {
    position: absolute;
    width: 3px;
    margin-left: -1px;
    top: 0;
    left: 50%;
    height: 92px;
}

.certs-list {
    margin: -15px;
    font-size: 0;
}

.certs-list li {
    padding: 15px;
    width: 33.3333%;
    display: inline-block;
    font-size: initial;
}

.cert-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    max-width: 80%;
    max-height: 80%;
}

.cert-box:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 69%;
}

.cert-box {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.cert-inside {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
}

.cert-box iframe {
    width: 100%;
    height: auto;
    margin: 10px -5px;
}

.footer-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
    padding: 0 8%;
    overflow: hidden;
}

.footer-container img {
    max-width: 100%;
    display: block;
}

.footer-box {
    display: inline-block;
    width: 19.8%;
    vertical-align: top;
}

.footer-box.big-box .text {
    float: left;
    width: 50%;
}

.footer-box.big-box {
    width: 40%;
}

.footer-logos {
    width: 39%;
    max-width: 470px;
    float: right;
}

.footer-logo a {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 13px 0;
}

.footer-logo img {
    display: block;
    max-width: 100%;
}

.footer-downloads {
    padding-top: 24px;
}

.footer-download-box {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    overflow: hidden;
}

.footer-down-icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    display: block;
    content: '';
    height: 46px;
    background: url("../images/icons/pdf-white.svg") no-repeat center center /contain;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.footer-down-arrow:before {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    font-size: 18px;
    padding-left: 3px;
    height: 34px;
    text-align: center;
    content: '\f105';
    line-height: 34px;
    font-family: FontAwesome;
    color: #fff;
    background: var(--gray);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.footer-down-icon {
    float: left;
    position: relative;
    width: 40px;
    height: 40px;
}

.footer-down-arrow {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
}

.footer-down-text {
    overflow: hidden;
}

.down-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0;
    padding: 6px 10px 7px 20px;
    font-weight: 900;
    color: var(--color-accent);
}

.footer-mid .container {
    position: relative;
    z-index: 100;
}

.footer-mid:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #000;
    opacity: 0.7;
}

.footer-mid {
    background: url("../images/footerBg.jpg") no-repeat center center /cover;
    background-attachment: fixed;
    position: relative;
    padding: 57px 0;
}

.footer-title {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 22px;
    letter-spacing: 0;
    font-weight: 900;
    color: var(--color-accent);
}

.footer-toggle .text,
.footer-toggle a {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0;
    color: #fff;
}

.page-top:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, 0.6);
    display: block;
}

.page-top {
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: calc(80vh - 50px);
}

.subpage #content {
    padding-top: 111px;
}

.page-top-vertical .text {
    color: #fff;
    padding-top: 16px;
}

.page-top-horizonatal {
    padding-bottom: 30px;
}

.page-top-vertical {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    text-align: center;
    z-index: 100;
}

.about-text {
    direction: ltr;
}

.about-section:nth-child(2n+1) {
    direction: rtl;
}

.about-section .path {
    position: absolute;
    top: 0;
    /*bottom: 0;*/
    left: 50%;
    margin-left: -1px;
    width: 3px;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.about-section {
    position: relative;
    display: flex;
}

.about-img img {
    display: block;
    width: 100%;
}

.about-img .video-box {
    width: 100%;
    display: block;
}

.video-box video {
    max-width: 100%;
}

.about-img {
    display: block;
    width: 50%;
}

.about-text {
    display: block;
    width: 50%;
    position: relative;
}

.about-text-wrapper .title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 900;
    color: #000;
    padding-bottom: 30px;
}

.about-text-wrapper .text {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 10px;
}

.about-text-wrapper {
    position: absolute;
    overflow: auto;
    top: 50%;
    left: 0;
    right: 0;
    max-height: 100%;
    padding: 15px 25px;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.about-text-center {
    width: 100%;
    max-width: 630px;
    text-align: justify;
    margin: auto;
}

.items-circle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgba(255, 255, 255, 0.8);
    display: block;
}

.items-circle .container {
    position: relative;
    z-index: 10;
}

.items-circle {
    position: relative;
    z-index: 100;
    text-align: center;
    padding: 63px 0 15px;

    background: url("../images/circlesBg.jpg") no-repeat center center /cover;
}

#page:not(.line-animations) .circle-elements .path,
.circle-elements.seen .path {
    height: 94px;
}

.circle-elements .path {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 3px;
    /*height: 100px;*/
    margin-top: -63px;
    height: 1px;
}

.circle-elements li:nth-child(5) {
    bottom: -153px;
}

.circle-elements li:nth-child(2) {
    top: -81px;
}

.circle-elements li {
    position: relative;
    width: 33.3333%;
    float: left;
    padding-bottom: 43px;
    text-align: center;
}

.circle-elements {
    padding: 93px 0 130px 0;
    width: 730px;
    /*overflow: hidden;*/
    display: inline-block;
}

.items-texts {
    position: absolute;
    top: 50%;
    text-align: left;
    max-width: 30%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.cicle-elem-image img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: block;
    width: 100%;
}

.cicle-elem-image {
    position: relative;
    width: 100%;
    padding: 13px;
    background: rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.circle-elem-box .path {
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all 0.45s;
    -moz-transition: all 0.45s;
    -ms-transition: all 0.45s;
    -o-transition: all 0.45s;
    transition: all 0.45s;
}

.cicle-elem-image {
    perspective: 300px;
    perspective-origin: center center;
}

.cicle-elem-image img {
    transition: all 0.5s ease;
}

@media screen and (min-width: 1140px) {
    .cicle-elem-image:hover img {
        filter: grayscale(1);
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
    }
}

li:nth-child(1) .circle-elem-box .path {
    right: auto;
    left: 100%;
    height: 0;
    top: 0;
    margin: 33px -59px;
    -webkit-transform: rotate(60deg) translate3d(0, -100%, 0);
    -moz-transform: rotate(60deg) translate3d(0, -100%, 0);
    -ms-transform: rotate(60deg) translate3d(0, -100%, 0);
    -o-transform: rotate(60deg) translate3d(0, -100%, 0);
    transform: rotate(60deg) translate3d(0, -100%, 0);
}

li:nth-child(2) .circle-elem-box .path {
    right: 0;
    left: auto;
    height: 0;
    top: 57%;
    /*top: 65%;*/
    margin: -12px 11px;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

li:nth-child(3) .circle-elem-box .path {
    left: 50%;
    height: 0;
    top: 100%;
    margin: -13px -1px;
}

li:nth-child(4) .circle-elem-box .path {
    left: 50%;
    height: 0;
    bottom: 100%;
    margin: 17px -2px;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

li:nth-child(5) .circle-elem-box .path {
    right: 100%;
    left: auto;
    height: 0;
    top: 0;
    margin: 66px -29px;
    -webkit-transform: rotate(-60deg) translate3d(0, -100%, 0);
    -moz-transform: rotate(-60deg) translate3d(0, -100%, 0);
    -ms-transform: rotate(-60deg) translate3d(0, -100%, 0);
    -o-transform: rotate(-60deg) translate3d(0, -100%, 0);
    transform: rotate(-60deg) translate3d(0, -100%, 0);
}

li:nth-child(6) .circle-elem-box .path {
    right: 100%;
    left: auto;
    height: 0;
    top: 100%;
    margin: -51px -33px;
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
}

#page:not(.line-animations) li:nth-child(1) .circle-elem-box .path,
#page:not(.line-animations) li:nth-child(2) .circle-elem-box .path,
li:nth-child(1).seen .circle-elem-box .path,
li:nth-child(2).seen .circle-elem-box .path {
    height: 106px;
}

#page:not(.line-animations) li:nth-child(3) .circle-elem-box .path,
#page:not(.line-animations) li:nth-child(4) .circle-elem-box .path,
li:nth-child(3).seen .circle-elem-box .path,
li:nth-child(4).seen .circle-elem-box .path {
    height: 76px;
}

#page:not(.line-animations) li:nth-child(5) .circle-elem-box .path,
#page:not(.line-animations) li:nth-child(6) .circle-elem-box .path,
li:nth-child(5).seen .circle-elem-box .path,
li:nth-child(6).seen .circle-elem-box .path {
    height: 94px;
}

.circle-elem-box {
    position: relative;
    display: inline-block;
    width: 220px;
}

.circle-elem-text {
    /*position: absolute;*/
    display: flex;
    justify-content: center;
    padding: 13px 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
    letter-spacing: 0;
}

/*.element-circle > .circle-elem-text {*/
/*    bottom: 100%;*/
/*}*/
/*.circle-elem-box > .circle-elem-text {*/
/*    top: 100%;*/
/*}*/
.circle-elem-text > span {
    display: flex;
    height: 22px;
    justify-content: center;
}

.circle-elements li:nth-child(1) .circle-elem-text > span,
.circle-elements li:nth-child(3) .circle-elem-text > span {
    align-items: flex-end;
}

.circle-elem-image .tooltip-inner {
    max-width: 220px;
    padding: 12px 15px;
}

.contact-dropdowns .path,
.downloads .path {
    position: absolute;
    top: 0;
    width: 3px;
    height: 300px;
    margin-top: -150px;
}

.downloads .path {
    right: 7%;
}

.contact-dropdowns .path {
    right: 4%;
}

.contact-dropdowns {
    position: relative;
}

.downloads {
    position: relative;
    padding: 26px 0;
    background: #f6f6f6;
}

.download-bar-type svg {
    fill: #fff;
}

.download-bar-type {
    width: 46px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    float: left;
}

.download-btn-icon {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin: -1px 10px 1px -10px;
}

.download-bar {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.download-list {
    padding: 35px 0 15px;
}

.download-bar-btn svg * {
    fill: inherit;
}

.download-bar-btn {
    fill: var(--gray);
    width: 186px;
    padding: 4px 15px;
    float: left;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    color: var(--gray);
    border: 2px solid var(--gray);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 42px;
    margin-right: 10px;
}

.download-btn-caption {
    display: inline-block;
    vertical-align: middle;
}

.download-bar-type-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    background: var(--color-accent);
    border-radius: 50%;
    margin-left: 10px;
    font-size: 0;
}

.download-bar-btn-texts {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.download-bar-text {
    word-break: break-word;
    float: left;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: #000;
    padding: 12px 200px 12px 76px;
    width: 100%;
}

.download-bar-text span {
    display: block;
    font-weight: 700;
}

.download-list li {
    padding-bottom: 20px;
}

.gallery-section .path {
    position: absolute;
    top: 0;
    left: 7%;
    width: 3px;
    height: 300px;
    margin-top: -150px;
}

.container.no-clear {
    overflow: visible;
    clear: none;
}

.gallery-section {
    padding: 24px 0 57px;
    position: relative;
}

.gallery-section .gallery {
    padding-top: 46px;
    max-width: 1270px;
    margin: auto;
}

#page:not(.line-animations) .page-top .path {
    height: 30%;
}

.page-top .path {
    position: absolute;
    top: 70%;
    margin-left: -1px;
    width: 3px;
    left: 50%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.article-wrapper {
    padding-top: 34px;
}

.article-date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.1em;
    padding: 10px 0 26px;
}

.article-subtitle {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: bold;
    color: #000;
}

.article-text {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    letter-spacing: 0;
    color: #000;
}

.value-box {
    font-size: 0;
    position: relative;
}

.value-img-border:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
    height: 0;
}

.value-img-center img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.value-img-center {
    position: absolute;
    top: 35px;
    left: 35px;
    bottom: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    right: 35px;
}

.value-texts {
    width: calc(100% - 388px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 4.2%;
}

.value-img-border {
    display: inline-block;
    vertical-align: middle;
    width: 388px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.07);
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.value-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
    padding-bottom: 30px;
    color: #000;
}

.value-list {
    padding: 48px 2.5% 58px 8%;
    position: relative;
}

/*#page:not(.line-animations) .value-list .path-hor,*/
.value-list .path-hor.seen {
    width: 50.7%;
}

.value-list .path-hor {
    position: absolute;
    height: 3px;
    top: -1px;
    right: 50%;
    width: 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/*#page:not(.line-animations) .value-list .path-ver {*/
/*    height: 100%;*/
/*}*/
.value-list .path-ver {
    position: absolute;
    top: 0;
    height: 1px;
    left: -1%;
    width: 3px;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.value-list ul {
    margin: -24px;
}

.value-list .text ul {
    margin: 0;
}

.value-list li {
    padding: 24px;
}

/*#page:not(.line-animations) .value-path,*/
.value-path.seen {
    width: 10%;
}

.value-path {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 0;
    height: 3px;
}

.page-folder,
.page-text,
.page-chart,
.staff-article,
.value-list-section {
    background: url("../images/valueBg.jpg") no-repeat top center /100%;
}

.page-text .text table {
    background-color: #fff;
}

.value--rwd {
    display: none !important;
}

.value-btn .download-btn-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 46px;
    margin: 0;
    height: auto;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    background: var(--color-accent);
    fill: #fff;
}

.value-btn {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6px 0;
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--color-accent);
    position: relative;
    color: #000;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.value-btn-text {
    padding-left: 60px;
    font-size: 13px;
    line-height: 14px;
    color: inherit;
    letter-spacing: 0;
    display: block;
    width: 100%;
    vertical-align: middle;
}

.staff-nav {
    font-size: 0;
    padding: 15px 0;
    text-align: center;
}

.staff-nav li {
    font-size: initial;
    display: inline-block;
    padding: 15px;
    vertical-align: top;
}

.staff-nav-a {
    font-size: 15px;
    line-height: 24px;
    min-width: 350px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    padding: 10px 15px 12px;
    display: block;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    border: 2px solid var(--gray);
}

.staff-nav-a.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.staff-title {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0;
    color: #000;
    font-weight: 900;
}

.staff-sections {
    padding-top: 11px;
}

.staff-list {
    padding: 43px 0;
    /*display: none; */
}

.contact-dropdowns .staff-list {
    display: none;
}

/*
.staff-list:not(:first-child)[data-contact] {
    display: none;
}
*/
.staff-list.active {
    display: block;
}

.staff-list li {
    padding-bottom: 20px;
}

.person-box {
    background: #fff;
    overflow: hidden;
    padding: 29px 48px 29px 29px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.person-box .download-list {
    padding: 15px 0 5px;
}

.person-box .h3 {
    font-size: 28px;
    line-height: 40px;
    margin: 0;
}

.person-box .downloads {
    margin-top: 20px;
    position: relative;
    padding: 15px 0;
}

.person-box .path {
    display: none;
}

.person-img {
    position: relative;
    display: block;
    float: left;
    width: 256px;
    margin-right: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.person-img::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.person-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
}

.person-texts {
    padding-top: 10px;
    overflow: hidden;
}

.person-name {
    padding-right: 200px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900;
    color: #000;
}

.person-title {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    letter-spacing: 0;
    font-weight: bold;
    color: var(--color-accent);
}

.person-box .person-text .text p:last-child:after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 200px;
}

table p:last-child:after {
    display: none !important;
}

.person-img ~ .person-texts .person-name {
    padding-right: 0;
}

.person-box table th {
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    padding: 5px;
}

.person-box table td {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    padding: 5px;
}

.person-text .text {
    padding: 10px 0;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    letter-spacing: 0;
}

.person-btn-hide {
    display: none;
}

.person-text-toggle {
    display: none;
}

.person-text-toggle {
    padding-bottom: 30px;
}

.person-toggle-btn.active .person-btn-show {
    display: none;
}

.person-toggle-btn.active .person-btn-hide {
    display: block;
}

.person-toggle-btn.active .person-btn-arrow svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.person-toggle-btn {
    overflow: hidden;
    position: relative;
    width: 176px;
    float: right;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.person-btn-arrow svg {
    fill: inherit;
}

.person-btn-arrow {
    fill: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 12px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    right: -1px;
    width: 46px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #e5e5e5;
}

.person-btn-texts {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 10px 60px 10px 28px;
}

.person-footer {
    padding-top: 0;
}

.person-footer {
    margin-top: -38px;
}

.active .person-footer {
    margin-top: 0;
}

.person-text ~ .person-text-toggle ~ .person-footer {
    margin-top: 0;
}

.news-box {
    display: flex;
}

.news-img:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 63.125%;
}

.news-img svg,
.news-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.news-img,
.news-texts {
    position: relative;
    width: 50%;
    direction: ltr;
}

.news-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-list li:nth-child(2n+1) {
    direction: rtl;
}

.news-list li:nth-child(2n+1) .news-box-footer {
    text-align: right;
}

.news-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.news-texts-cell {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.news-texts-table {
    text-align: center;
    width: 100%;
    display: table;
    height: 100%;
}

.news-texts-center {
    display: block;
    max-width: 690px;
    margin: auto;
    text-align: justify;
    width: 100%;
    padding: 15px 25px;
}

.news-box-date {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #000;
    padding-bottom: 30px;
    font-weight: 900;
}

.news-box-title {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    color: #000;
    padding-bottom: 30px;
    font-weight: bold;
}

.news-box-text {
    padding-bottom: 44px;
}

.news-box-text .text {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #000;
}

.news-box,
.news-list {
    position: relative;
}

.news-box .path {
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 3px;
}

.news-list > .dot {
    top: 0;
    left: 50%;
    bottom: auto;
}

.pagination-wrapper {
    max-width: 100%;
    margin: auto;
    padding: 60px 0;
    width: 510px;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.pagination-wrapper ul li.active a {
    color: var(--color-accent);
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #000;
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    padding: 0;
}

.pagination-wrapper ul li .pagination-arrow {
    width: 100%;
    height: 100%;
    padding: 0;
}

.pagination-wrapper ul li.next .pagination-arrow {
    font-size: 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.pagination-wrapper ul li.prev .pagination-arrow {
    font-size: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pagination-arrow svg {
    fill: #000;
}

.history-sections {
    padding-top: 50px;
    position: relative;
    background: no-repeat top center /100%;
}

.history-sections-noLines .history-big,
.history-sections-noLines .path {
    display: none !important;
}

.history-text-wrapper {
    padding-bottom: 30px;
}

.hist-img-wrapper img {
    max-width: 100%;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.hist-date-wrapper {
    padding-left: 30px;
}

.hist-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.07);
    padding: 12px;
    transition: all 0.4s;
}

.hist-img-wrapper.no-background {
    background: none;
}

.hist-img-wrapper .text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 170px;
    width: 170px;
}

.hist-img-text {
    position: relative;
    width: 170px;
    max-width: 100%;
}

.hist-img-text::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.hist-img-text .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hist-smalls {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
}

.hist-smalls.to-right {
    direction: rtl;
}

.history-box {
    direction: ltr;
}

.history-big .hist-text {
    max-width: 400px;
}

.history-big .hist-texts {
    text-align: left;
    padding: 4px;
}

.history-big .hist-img-wrapper {
    padding: 35px;
}

.history-list {
    max-width: 1430px;
    margin: auto;
}

.history-sections-noLines .history-list {
    max-width: 1270px;
}

.history-sections-noLines .history-list .hist-smalls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .history-sections-noLines .history-list .hist-smalls .history-box {
        width: 25%;
    }

    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(6),
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(6) ~ .history-box,
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(5),
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(5) ~ .history-box,
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(3),
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(3) ~ .history-box,
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(2),
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(2) ~ .history-box,
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(1),
    .history-sections-noLines .history-list .hist-smalls .history-box:first-child:nth-last-child(1) ~ .history-box {
        width: 33.33333%;
    }
}

.history-box {
    display: block;
    width: 310px;
    text-align: center;
    padding-bottom: 102px;
}

.history-big > div {
    width: 33.3333%;
}

.history-big {
    width: 100%;
    align-items: center;
    display: flex;
}

.hist-title {
    padding-top: 28px;
    padding-bottom: 20px;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0;
    font-weight: 900;
    color: var(--color-accent);
}

.history-big .hist-text .text {
    font-size: 18px;
    line-height: 30px;
}

.hist-text .text {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: #000;
}

.hist-date-center {
    display: table-cell;
    vertical-align: middle;
}

.history-big .hist-date {
    font-size: 50px;
    color: #fff;
    letter-spacing: 0;
    font-weight: 900;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-accent);
    display: table;
    margin: auto;
}

.history-big .hist-title,
.hist-date {
    display: none;
}

.hist-top-path {
    width: 3px;
    margin-left: -1px;
    position: absolute;
    top: 0;
    left: 50%;
    height: 85px;
}

.path-hist-vertical {
    height: 3px;
    width: calc(100% - 300px);
    position: relative;
    margin: auto;
    top: -60px;
}

.path-hist-small-one {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -1px;
    width: 3px;
    height: 60px;
}

.path-hist-big-one {
    position: absolute;
    bottom: 100%;
    margin-bottom: -35px;
    left: 50%;
    margin-left: -1px;
    width: 3px;
    height: 84px;
}

.history-box:not(:first-child) .path-hist-big-one {
    height: 0;
}

.history-box.seen:not(:first-child) .path-hist-big-one {
    height: 96px;
}

.path-up {
    position: absolute;
    bottom: 100%;
    width: 3px;
    height: 80px;
}

.path-on-left {
    left: 3px;
}

.path-on-right {
    right: 3px;
}

.path-with-to-up {
    margin-top: 78px;
}

.path-hist-big-two {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -35px;
    margin-left: -1px;
    width: 3px;
    height: 80px;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover .pagination-arrow svg {
        fill: #fff;
    }

    .pagination-wrapper ul li.prev a:hover,
    .pagination-wrapper ul li.next a:hover {
        background: #000;
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-accent);
    }

    .person-toggle-btn:hover .person-btn-arrow {
        fill: #fff;
        border-color: var(--color-accent);
        background: var(--color-accent);
    }

    .person-toggle-btn:hover {
        border-color: var(--color-accent);
    }

    .staff-nav-a:hover {
        color: #fff;
        background: var(--color-accent);
        border-color: var(--color-accent);
    }

    .value-btn:hover {
        background: var(--color-accent);
        color: #fff;
    }

    a:hover .download-bar-btn {
        color: #fff;
        fill: #fff;
        background-color: var(--color-accent);
        border-color: var(--color-accent);
    }

    #page #main-menu li > ul > li a:hover {
        color: var(--color-accent);
    }

    .footer-bar-links a:hover {
        color: var(--color-accent);
    }

    .footer-download-box:hover .footer-down-arrow:before {
        background: var(--color-accent);
    }

    .footer-download-box:hover {
        border-color: var(--color-accent);
    }

    .footer-toggle a:hover {
        color: var(--color-accent);
    }

    .btn-base:hover {
        background: var(--color-accent);
        border-color: var(--color-accent);
        color: #fff;
    }

    .go-down:hover:before {
        width: 90px;
        height: 90px;
    }

    #main-menu a:hover {
        color: var(--color-accent);
    }

    .langs-menu a:hover {
        color: var(--color-accent);
        border-color: var(--color-accent);
    }

    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }

    .hist-img-wrapper:hover {
        background-color: #bcbcbc;
    }
}

/** Draw main lines */
.path {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.types-buy .path,
.types .path.ver {
    height: 0;
}

.types-list li:nth-child(even) .path {
    right: 200px;
}

.types-list li:nth-child(odd) .path {
    left: 200px;
}

.types .path.hor {
    width: 0;
}

.types .path.hor.active {
    width: 15.9281%;
}

.types .path.hor.bottom {
    left: 65.8%;
}

.types .path.hor.bottom.active {
    left: 50%;
}

.main-slider-section .path {
    bottom: 30%;
}

.main-slider-section .path.active {
    bottom: 0;
}

.types-buy .path.ver-top {
    top: 0;
}

.types-buy .path.ver-bottom {
    top: 75%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.numbers .path.ver-bottom {
    top: 75%;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    height: 0;
}

.about-us .path,
.numbers .path.ver-top {
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    height: 0;
}

.types-buy .path.ver-top {
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

/** history draw lines **/
.dot {
    -webkit-transition: opacity 0.1s;
    -moz-transition: opacity 0.1s;
    -ms-transition: opacity 0.1s;
    -o-transition: opacity 0.1s;
    transition: opacity 0.1s;
}

.hist-smalls.to-left .history-box:nth-child(4).seen .path-hist-small-one,
.hist-smalls.to-right .history-box:nth-child(4).seen .path-hist-small-one {
    transition-delay: 1.1s;
}

.hist-smalls.to-left .history-box:nth-child(3).seen .path-hist-small-one,
.hist-smalls.to-right .history-box:nth-child(3).seen .path-hist-small-one {
    transition-delay: 0.8s;
}

.hist-smalls.to-left .history-box:nth-child(2).seen .path-hist-small-one,
.hist-smalls.to-right .history-box:nth-child(2).seen .path-hist-small-one {
    transition-delay: 0.5s;
}

.hist-smalls.to-left .history-box:nth-child(1).seen .path-hist-small-one,
.hist-smalls.to-right .history-box:nth-child(1).seen .path-hist-small-one {
    transition-delay: 0.2s;
}

.path.path-hist-vertical {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

@media screen and (min-width: 1140px) {
    #page:not(.line-animations) .path-hist-big-one,
    .seen .path-hist-big-one {
        height: 84px;
    }

    #page:not(.line-animations) .history-box:not(:first-child) .path-hist-big-one,
    .history-box.seen:not(:first-child) .path-hist-big-one {
        height: 96px;
    }

    .path-hist-big-one {
        height: 0;
        margin-top: -84px;
    }

    #page:not(.line-animations) .path-hist-small-one,
    .seen .path-hist-small-one {
        height: 60px;
    }

    .path-hist-small-one {
        height: 0;
        margin-top: -60px;
    }

    #page:not(.line-animations) .path-hist-big-two,
    .seen .path-hist-big-two {
        height: 80px;
    }

    .path-hist-big-two {
        height: 0;
    }

    .path-hist-vertical {
        width: 1px;
    }

    .path-hist-vertical.to-up-right {
        margin-left: calc(100% - 150px);
        width: 1px;
    }

    #page:not(.line-animations) .path-hist-vertical.to-up-right,
    .path-hist-vertical.seen.to-up-right {
        margin-left: 150px;
        width: calc(100% - 300px);
    }

    #page:not(.line-animations) .path-hist-vertical,
    .path-hist-vertical.seen {
        width: calc(100% - 300px);
    }

    .path-hist-vertical.to-up-left {
        margin-right: calc(100% - 150px);
        width: 1px;
    }

    #page:not(.line-animations) .path-hist-vertical.to-up-left,
    .path-hist-vertical.seen.to-up-left {
        margin-right: 150px;
        width: calc(100% - 300px);
    }

    #page:not(.line-animations) .path-hist-vertical.path-next-big.to-up-right,
    .path-hist-vertical.seen.path-next-big.to-up-right {
        width: 50%;
        margin-left: auto;
        margin-right: 0;
    }

    #page:not(.line-animations) .path-hist-vertical.path-next-big.to-up-left,
    .path-hist-vertical.seen.path-next-big.to-up-left {
        width: 50%;
        margin-left: 0;
        margin-right: auto;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.path-remaining-1,
    .path-hist-vertical.seen.path-remaining-1.path-remaining-1 {
        width: 1px;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.path-remaining-2,
    .path-hist-vertical.seen.path-remaining-2.path-remaining-2 {
        width: calc(50% - 150px);
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-right,
    .path-hist-vertical.path-remaining-1.to-up-right,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-right,
    .path-hist-vertical.path-remaining-2.to-up-right {
        margin-left: auto;
        margin-right: 150px;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-left,
    .path-hist-vertical.path-remaining-1.to-up-left,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-left,
    .path-hist-vertical.path-remaining-2.to-up-left {
        margin-left: 150px;
        margin-right: auto;
    }

    #page:not(.line-animations) .path-up,
    .seen .path-up {
        height: 80px;
    }

    .path-up {
        top: -80px;
        height: 0;
    }
}

@media screen and (max-width: 1440px) {

    div.path-hist-vertical {
        width: 1px;
    }

    .path-hist-vertical.seen {
        width: calc(100% - 250px);
    }

    .path-hist-vertical.to-up-left {
        margin-right: calc(100% - 125px);
        width: 1px;
    }

    .path-hist-vertical.seen.to-up-left {
        margin-right: 125px;
        width: calc(100% - 250px);
    }

    .path-hist-vertical.to-up-right {
        margin-left: calc(100% - 125px);
        width: 1px;
    }

    .path-hist-vertical.seen.to-up-right {
        margin-left: 125px;
        width: calc(100% - 250px);
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.path-remaining-1,
    .path-hist-vertical.seen.path-remaining-1.path-remaining-1 {
        width: 1px;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.path-remaining-2,
    .path-hist-vertical.seen.path-remaining-2.path-remaining-2 {
        width: calc(50% - 125px);
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-right,
    .path-hist-vertical.path-remaining-1.to-up-right,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-right,
    .path-hist-vertical.path-remaining-2.to-up-right {
        margin-left: auto;
        margin-right: 125px;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-left,
    .path-hist-vertical.path-remaining-1.to-up-left,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-left,
    .path-hist-vertical.path-remaining-2.to-up-left {
        margin-left: 125px;
        margin-right: auto;
    }
}

@media screen and (max-width: 1139px) {
    .history-box:not(:first-child) .path-hist-big-one.path-hist-big-one {
        height: 60px;
    }

    .path-on-right {
        right: 0;
    }

    .path-on-left {
        left: 0;
    }

    div.path-hist-vertical,
    .path-hist-vertical.seen {
        width: 75.2%;
    }

    .path-hist-vertical.to-up-left,
    .path-hist-vertical.seen.to-up-left {
        margin-right: 12%;
        width: 75.5%;
    }

    .path-hist-vertical.to-up-right,
    .path-hist-vertical.seen.to-up-right {
        margin-left: 12.5%;
        width: 75.2%;
    }

    .path-hist-vertical.path-next-big.to-up-right,
    .path-hist-vertical.seen.path-next-big.to-up-right {
        width: 37.5%;
        margin-left: auto;
        margin-right: 12.5%;
    }

    .path-hist-vertical.path-next-big.to-up-left,
    .path-hist-vertical.seen.path-next-big.to-up-left {
        width: 37.5%;
        margin-right: auto;
        margin-left: 12%;
    }


    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.path-remaining-1,
    .path-hist-vertical.path-remaining-1.path-remaining-1 {
        width: 1px;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.path-remaining-2,
    .path-hist-vertical.path-remaining-2.path-remaining-2.path-remaining-2 {
        width: 37.5%;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-right,
    .path-hist-vertical.path-remaining-1.to-up-right,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-right,
    .path-hist-vertical.path-remaining-2.to-up-right {
        margin-left: auto;
        margin-right: 12.3%;
    }

    #page:not(.line-animations) .path-hist-vertical.path-remaining-1.to-up-left,
    .path-hist-vertical.path-remaining-1.to-up-left,
    #page:not(.line-animations) .path-hist-vertical.path-remaining-2.to-up-left,
    .path-hist-vertical.path-remaining-2.to-up-left {
        margin-left: 12%;
        margin-right: auto;
    }
}

/** dots removal */
#page:not(.line-animations) .path-hist-small-one .dot,
.seen .path-hist-small-one .dot,
#page:not(.line-animations) .path-hist-big-one .dot,
.seen .path-hist-big-one .dot,
#page:not(.line-animations) .value-path .dot,
.value-path.seen .dot,
#page:not(.line-animations) .value-list .path-ver .dot,
.value-list .path-ver.active .dot,
#page:not(.line-animations) .value-list .path-hor .dot,
.value-list .path-hor.seen .dot,
#page:not(.line-animations) .circle-elem-box .path .dot,
li.seen .circle-elem-box .path .dot,
#page:not(.line-animations) .circle-elements .path .dot,
.circle-elements.seen > .path .dot,
#page:not(.line-animations) .about-section .path .dot,
.about-section.active .path .dot,
#page:not(.line-animations) .page-top .path .dot,
.page-top .path.active .dot,
#page:not(.line-animations) .about-us .path .dot,
.about-us .path.active .dot,
#page:not(.line-animations) .numbers .path.ver-bottom .dot,
.numbers .path.ver-bottom.active .dot,
#page:not(.line-animations) .numbers .path.ver-top .dot,
.numbers .path.ver-top.active .dot,
#page:not(.line-animations) .types-buy .path.ver-bottom .dot,
.types-buy .path.ver-bottom.active .dot,
#page:not(.line-animations) .types-buy .path.ver-top .dot,
.types-buy .path.ver-top.active .dot,
#page:not(.line-animations) .types .path.hor .dot,
.types .path.hor.active .dot {
    opacity: 1;
}

.path-hist-small-one .dot,
.path-hist-big-one .dot,
.value-path .dot,
.value-list .path-ver .dot,
.value-list .path-hor .dot,
.circle-elem-box .path .dot,
.circle-elements .path .dot,
.about-section .path .dot,
.page-top .path .dot,
.about-us .path .dot,
.numbers .path.ver-bottom .dot,
.numbers .path.ver-top .dot,
.types-buy .path.ver-bottom .dot,
.types-buy .path.ver-top .dot,
.types .path.hor .dot {
    opacity: 0;
}

/**  contact **/

.contact-interactive-map {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-top: 20px;
    margin-bottom: var(--space-40);
}

.map-wrapper {
    position: relative;
    left: 0.8%;
    width: 38.6%;
    padding-top: 0.4%;
}

.contact-wrapper {
    width: 62%;
}

.contact-title {
    font-size: 45px;
    line-height: 54px;
    letter-spacing: 0;
    font-weight: 900;
    color: #000;
    padding-bottom: 36px;
}

.contact-subtitle {
    font-weight: 900;
    color: #f07c00;
    letter-spacing: 0;
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 34px;
}

.contact-info-texts .text {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    letter-spacing: 0;
    font-weight: normal;
    width: 35%;
}

.contact-info-map {
    position: relative;
    pointer-events: none;
    width: 100%;
    margin-top: var(--space-60);
}

.contact-info-map-img img {
    display: block;
    width: 100%;
}

.contact-info-map-img {
    width: 40%;
    z-index: 10;
    position: absolute;
    top: 0;
    right: var(--space-50);
    border-radius: 50%;
    margin-top: -26%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    border: 20px solid rgba(0, 0, 0, 0.1);
}

.contact-info-map-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.contact-info-map-map:before {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 47%;
}

.contact-info-map-map {
    overflow: hidden;
    pointer-events: auto;
    position: relative;
    /*border-radius: 20px;*/
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /*border: 20px solid rgba(0, 0, 0, 0.1);*/
}

/*
.contact-info:not(:first-child) {
    display: none;
} */
.contact-info {
    display: none;
}

.contact-info.active {
    display: block;
}

.interactive-map {
    position: relative;
}

.interactive-map > img {
    display: block;
    width: 100%;
    filter: brightness(1.6);
}

.interactive-map-marker {
    display: block;
    font-size: 19px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    position: absolute;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.7);
    -webkit-transform: translate3d(-50%, -62px, 0);
    -moz-transform: translate3d(-50%, -62px, 0);
    -ms-transform: translate3d(-50%, -62px, 0);
    -o-transform: translate3d(-50%, -62px, 0);
    transform: translate3d(-50%, -62px, 0);
    z-index: 10;
}

.interactive-map-marker-wrapper {
    display: block;
    width: 44px;
    height: 62px;
    margin: auto;
}

.active .interactive-map-marker-wrapper svg {
    opacity: 0;
}

.active .interactive-map-marker-wrapper .marker-icon::before {
    opacity: 1;
}

.active .interactive-map-marker-wrapper {
    padding: 0;
}

.interactive-map-marker-wrapper svg {
    fill: #f07c00;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.interactive-map-marker-wrapper {
    padding: 15px 5px 0 5px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.interactive-map-marker-wrapper:hover {
    cursor: pointer;
}

.interactive-map-marker-wrapper:hover svg {
    /*fill: #fff;*/
    opacity: 0
}

.interactive-map-marker-wrapper .marker-icon {
    position: relative;
}

.interactive-map-marker-wrapper .marker-icon::before {
    opacity: 0;
    content: "";
    position: absolute;
    top: -22%;
    left: -29.8%;
    right: -29.8%;
    bottom: -12.5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/icons/pin.svg');
    transition: all 0.2s;
}

.interactive-map-marker-wrapper:hover .marker-icon::before {
    opacity: 1;
}

.contact-article {
    background: url("../images/contactBg.jpg") no-repeat top center /cover;
}

.contact-dropdowns {
    background-color: #f6f6f6;
}

.person-box .staff-list li {
    padding-bottom: 15px;
}

.person-box.person-box {
    padding: 12px 40px 12px 20px;
}

.person-box.person-box .person-name {
    font-size: 20px;
}

.person-box.person-box .person-texts {
    padding-top: 12px;
    padding-bottom: 0;
}

.person-footer {
    transition: all 0.4s;
}

.person-footer.person-footer {
    padding: 0;
    clear: both;
}

.person-box.person-box.person-box:not(.active) .person-footer {
    margin-top: -35px;
}

.person-box .person-name {
    padding-right: 200px;
    font-size: 26px;
    line-height: normal;
    text-transform: uppercase;
}

.person-box .person-texts {
    padding-bottom: 2px;
}

.person-box .person-text-toggle {
    padding-top: 20px;
    overflow: hidden;
}

.person-box .person-text .text {
    padding-top: 0;
}

.chart {
    width: 100%;
    height: 400px;
}

.section-chart {
    margin-bottom: calc(1.5 * var(--space-60));
}

.section-chart h2 {
    font-size: var(--font-30);
    margin-bottom: 10px;
}

.section-chart .text {
    font-size: 20px;
    line-height: 30px;
}

.section-chart-head {
    margin-bottom: var(--space-25);
}

.recruitment-form-container {
    padding: var(--space-25) var(--space-40);
    margin-bottom: var(--space-40);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.recruitment-form-container h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-25);
}

.recruitment-form-container .btn[type="submit"] {
    margin-top: 15px;
}

.panel {
    border-radius: 0;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.collection-row-wrapper {
    margin-bottom: 10px;
}

.btn.btn-sm {
    padding-left: 11px;
    padding-right: 11px;
}

.btn-sm.btn-danger {
    border-color: transparent;
}

.btn-sm.btn-remove .fa {
    margin-right: 1px;
}

.form .form-element-name .form-required-mark {
    margin-left: 0.1em;
    color: inherit !important;
}

.btn-file .text {
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
}

.page-about .dot-bottom {
    bottom: 6px;
}

.person-box .person-column-text {
    float: left;
    width: 33.3333%;
    padding-right: 30px;
}

.person-box .person-column-text:last-child {
    padding-right: 0;
}

.tooltip {
    font-size: 14px;
}

.tooltip-inner {
    max-width: 280px;
    padding: 10px 15px !important;
    border-radius: 25px !important;
    overflow: hidden;
}

.news-box-date .news-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.quotes-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    background-color: #f2f2f2;
}

.quotes-title {
    padding-right: 15px;
    font-size: 32px;
    font-weight: 700;
}

.quotes-body {
    display: flex;
    flex-direction: row-reverse;
    align-self: stretch;
}

.quotes-legend {
    flex-shrink: 0;
    width: 270px;
    padding-left: 20px;
    margin: 20px 0 20px 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.quotes-legend > * + * {
    margin-top: 10px;
}

.quotes-general {
    display: flex;
    align-items: center;
}

.quotes-general > * + * {
    margin-left: 15px;
}

.quotes-general {
    text-align: right;
}

.quotes-value,
.quotes-difference {
    font-size: 32px;
}

.quotes-difference {
    font-weight: 900;
    color: gray;
}

.quotes-difference--up {
    color: green;
}

.quotes-difference--up::before {
    content: "+";
}

.quotes-difference--down {
    color: crimson;
}

/*.quotes-difference--down::before {*/
/*    content: "-";*/
/*}*/
.quotes-minmax {
    font-size: 13px;
}

.quotes-head .quotes-general {
    margin-left: auto;
}

.quotes .last-update {
    font-size: 12px;
}

.quotes-legend .btn {
    margin-top: 20px;
    color: #333;
}

.quotes-legend .btn:hover {
    color: #ffb011;
    border-color: #ffb011;
}

.page-top video {
    z-index: -1;
    object-fit: cover;
    position: absolute;
    top: 0;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.go-down-wrapper .quote-photo {
    margin-bottom: -0.5%;
}

.main-slider-section {
    position: relative;
}

.main-slider-section .quote-photo,
.page-top .quote-photo {
    position: absolute;
    z-index: 10;
    left: var(--space-60);
    bottom: var(--space-60);
}

@media screen and (max-width: 1139px) {
    .main-slider-section .quote-photo,
    .page-top .quote-photo {
        display: none;
    }
}

.quote-photo {
    position: relative;
    width: 452px;
    font-size: 18px;
    color: #fff;
}

.quote-photo > img {
    display: block;
    max-width: 100%;
}

.quote-photo-cols {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 30%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: 700;
}

.quote-photo-col {
    min-width: 100px;
}

.quote-photo-footer {
    display: flex;
    align-items: center;
    height: 56px;
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 1.4%;
    padding-bottom: 0.2em;
    font-size: 16px;
    text-transform: lowercase;
    color: inherit;
    pointer-events: all;
}

.quote-photo .quote-short {
    font-size: 20px;
}

.quote-photo .quote-date {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: normal;
}

.quote-percent::before {
    margin-right: 5px;
}

.quote-percent.quote-percent--up::before {
    content: "▲";
}

.quote-percent.quote-percent--down::before {
    content: "▼";
}

.main-slider-section .go-down {
    margin-bottom: -7%;
}

@media screen and (min-width: 1140px) {
    .quote-photo-footer[href]:hover {
        color: var(--color-accent);
    }
}
