/*Global - START*/
@font-face {
    font-family: 'Roboto';
    src: local('Roboto'),
    url('/fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
    url('/fonts/Roboto/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto-bold'),
    url('/fonts/Roboto/Roboto-Bold.woff2') format('woff2'),
    url('/fonts/Roboto/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-Light.woff2') format('woff2'),
    url('/fonts/Roboto/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Segoe UI';
    src: local('Segoe UI Bold'), local('Segoe-UI-Bold'),
    url('/fonts/Segoe-UI/SegoeUI-Bold.woff2') format('woff2'),
    url('/fonts/Segoe-UI/SegoeUI-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
    --font-family-main: Roboto, Arial;
    --font-family-accent:
    'Segoe UI', 'Time New Roman';
    --font-size-base: 16px;
    --font-size-line-height-base: normal /*1.1875*/;
    --font-size-small: 14px;
    --font-size-line-height-small: normal /*1.1428*/;
    --font-size-extra-small: 12px;

    --color-goal: #1A1A1E;
    --color-сharcoal: #313030;
    --color-dark-grey: #5C5C5C;
    --color-grey: #D0D0D0;
    --color-light-gray: #F3F3F3;
    --color-primary: #FE9102;
    --color-primary-hover: #EA7D00;
    --color-strong-light: #fff;

    --border-big-radius: 54px;
    --border-medium-radius: 40px;
    --border-middle-radius: 30px;
    --border-intermediate-radius: 20px;
    --border-small-radius: 10px;
    --border-block-radius: 20px 10px 10px 10px;

    --block-bottom-space-xl: 180px;
    --block-bottom-space-md: 160px;
    --block-bottom-space-sm: 100px;
    --block-bottom-space-xsm: 60px;

    --header-bottom-space-xl: 80px;
    --header-bottom-space-md: 60px;
    --header-bottom-space-sm: 40px;
    --header-bottom-space-xsm: 30px;

    --transition-base: all 0.3s;
    --transition-middle: all 0.6s;

    --alerts-color-error: #ed3d07;
    --alerts-color-success: #66bd07;

    /*Values are set via js*/
    --onscroll-top: 0px;
    --onscroll-top-raw: 0;
    --block-position-top: 0;
}
body {
    font-family: var(--font-family-main);
    font-size: var(--font-size-base);
    line-height: var(--font-size-line-height-base);
    background: var(--color-goal);
    color: var(--color-strong-light);
    min-height: 120vh;
}
/*Global - END*/

/*Link, colors and buttons START*/
a {
    color: var(--color-primary);
    transition: color 0.3s;
}
a:hover {
    text-decoration: none;
    color: var(--color-primary-hover);
}
.accent-block {
    color: var(--color-goal);
}

.button {
    display: flex;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    align-items: center;
    width: fit-content;
    border: none;
}
.button.inline-block {
    display: inline-block;
}

.button-hero,
a.button-hero {
    font-weight: bold;
    border-radius: var(--border-medium-radius);
    border: 2px solid var(--color-primary);
    padding: 15px 35px 15px 30px;
    color: var(--color-strong-light);
    height: 49px;
    column-gap: 14px;
    transition: var(--transition-base);
    white-space: nowrap;
}
.accent-block .button-hero,
.accent-block a.button-hero {
    color: var(--color-goal);
}
.button-hero .icon {
    stroke: var(--color-primary);
    transition: var(--transition-base);
}
.button-hero:hover,
.button-hero.active {
    background: var(--color-primary);
    color: var(--color-strong-light);
}

.accent-block .button-hero:hover,
.accent-block .button-hero.active {
    color: var(--color-strong-light);
}

.button-hero:hover .icon,
.button-hero.active .icon {
    stroke: var(--color-strong-light);
    transform: rotate(360deg);
}

.button-filling,
a.button-filling,
.accent-block input.button-filling{
    color: var(--color-strong-light);
    font-weight: 700;
    line-height: normal;
    border-radius: var(--border-middle-radius);
    background: #fe9102;
    padding: 12px 26px 13px 26px;
    transition: var(--transition-base);
}
.button-filling:hover {
    background: var(--color-primary-hover);
}

.small-button {
    display: flex;
    padding: 8px 20px;
    align-items: center;
    border-radius: var(--border-intermediate-radius);
    border: 1px solid var(--color-dark-grey);
    color: var(--color-strong-light);
    font-weight: 700;
    transition: var(--transition-base);
}
.small-button:hover {
    background: var(--color-dark-grey);
}

.x-small-button {
    display: flex;
    padding: 4px 10px;
    align-items: center;
    border-radius: var(--border-intermediate-radius);
    border: 1px solid var(--color-dark-grey);
    transition: var(--transition-base);
    margin-left: 2px;
    margin-right: 2px;
}


.accent-block .small-button {
    color: var(--color-goal);
    border-color: var(--color-primary);
}
.accent-block .small-button:hover,
.accent-block .small-button.active{
    color: var(--color-strong-light);
    background: var(--color-primary);
}
.accent-block .small-button .icon {
    stroke: var(--color-primary);
    margin-right: 6px;
    transition: var(--transition-base);
}
.accent-block .small-button:hover .icon,
.accent-block .small-button.active .icon{
    stroke: var(--color-strong-light);
}

.button.gray {
    border: 2px solid var(--color-dark-grey);
    color: var(--color-strong-light);
}
.small-button.gray {
    border: 1px solid var(--color-dark-grey);
    color: var(--color-strong-light);
}
.x-small-button.gray {
    border: 1px solid var(--color-dark-grey);
}
.accent-block .small-button.gray {
    color: var(--color-goal);
}
.button.gray:hover,
.button.gray.active {
    background: var(--color-dark-grey);
}
.accent-block .small-button.gray:hover {
    color: var(--color-strong-light);
}

.accent-block .button.gray {
    color: var(--color-goal);
}
.accent-block .button.gray:hover,
.button.gray.active {
    color: var(--color-strong-light);
}


.button.white {
    border: 2px solid var(--color-strong-light);
    color: var(--color-strong-light);
}
.button.white:hover {
    background: var(--color-strong-light);
    color: var(--color-goal);
}
/*Link , colors and buttons END*/

/*Lists START*/
ul.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
ul.list li {
    list-style: none;
    padding-left: 28px;
    display: inline-flex;
    background: url("/images/global/list-icon.svg") no-repeat left 1px;
    color: var(--color-strong-light);
    text-align: left;
    min-height: 20px;
    align-items: center;
}
.accent-block ul.list li {
    color: var(--color-dark-grey);
}
ul.list.numbered {
    counter-reset: list-counter;
}
ul.list.numbered li {
    background: none;
    position: relative;
    padding-left: 0;
    gap: 16px;
}
ul.list.numbered li::before {
    counter-increment: list-counter;
    content: counter(list-counter);
    min-width: 30px;
    height: 30px;
    text-align: center;
    line-height: 31px;
    border-radius: 30px;
    border: 1px solid var(--color-primary);
}
ul.no-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
/*Lists END*/

/*Tables START*/
thead {
    padding-bottom: 20px;
}
th {
    color: var(--color-dark-grey);
    font-weight: 300;
    text-align: left;
    border-bottom: 1px solid var(--color-light-gray);
    padding: 10px 10px 10px 10px;
}
td {
    padding: 10px 10px;
}
.table-wrapper {
    overflow: auto;
    max-width: 100%;
}
.table {
    border-spacing: 0;
    border-collapse: collapse
}
.table.t-td-wide td:first-child,
.table.t-td-wide th:first-child {
    padding-left: 0;
}
.table.t-td-wide td:last-child,
.table.t-td-wide th:last-child {
    padding-right: 0;
}
.table.t-bordered th,
.table.t-bordered td{
    border: 1px solid var(--color-grey);
}

/*Tables END*/

/*Text headers START*/
h2 {
    font-size: 30px;
    font-weight: 700;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
h4 {
    font-size: 18px;
}
.header {
    font-family: var(--font-family-accent);
    color: var(--color-light-gray);
    margin: 0;
}
.header.text-align-center {
    margin-left: auto;
    margin-right: auto;
}
.accent-block .header {
    color: var(--color-goal);
}
.header .accent {
    color: var(--color-primary);
}
.big-header {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    line-height: normal;
    margin-bottom: var(--header-bottom-space-xl);
}
.horizontal-icon-header {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-accent {
    display: block;
    font-size: 110px;
    line-height: 146px;
    text-transform: none;
    font-weight: 700;
    width: 146px;
    height: 146px;
    background: linear-gradient(90.26deg, #404040 0.26%, #808080 98.63%), linear-gradient(90.26deg, #000000 0.26%, #4F4F4F 98.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0 auto -10px auto;
}
.header-quotes-text {
    font-family: var(--font-family-main);
    display: flex;
    max-width: 335px;
    margin: 5px auto 0 auto;
    font-size: 44px;
    font-weight: 300;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.header-quotes-text .text {
    color: var(--color-grey);
    text-align: center;
    font-size: 18px;
    padding-top: 2px;
}
.header-subtitle {
    display: block;
    color: var(--color-strong-light);
    font-family: var(--font-family-main);
    font-size: var(--font-size-base);
    text-transform: none;
    font-weight: 400;
    margin-top: 13px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.medium-header {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--header-bottom-space-xsm);
}

.small-header {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
}
.page-content .small-header{
    margin-top: auto;
}
.small-header-with-icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.accent-block .small-header-with-icon svg {
    stroke: var(--color-primary);
}

.extra-small-header {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}
/*Text headers END*/


/*Alerts START*/
.error {
    color: var(--alerts-color-error);
}
.success {

}
/*Alerts END*/

/*Text START*/
img {
    user-select: none;
}
.small-text {
    font-size: var(--font-size-small);
}
.color-neutral {
    color: var(--color-grey);
}
.color-accent {
    color: var(--color-primary);
}
.color-danger {
    color: var(--alerts-color-error);
}
.color-success {
    color: var(--alerts-color-success);
}
/*Text END*/

/*Forms START*/
.form-wrapper {
    width: 100%;
}
form {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    column-gap: 20px;
    min-width: 100%;
}
.form-with-labels form {
    row-gap: 20px;
}
input, textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 30px;
    border: 1px solid var(--color-grey);
    padding: 14px 20px;
    background: transparent;
    font-size: var(--font-size-small);
    transition: border-color 0.6s, box-shadow 0.6s;
    color: var(--color-strong-light);
}
.accent-block input, .accent-block textarea {
    color: var(--color-goal);
}
.form-with-labels input,
.form-with-labels textarea {
    border-radius: var(--border-small-radius);
    padding: 14px 15px;
}
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-color: var(--color-dark-grey);
}
textarea {
    min-height: 140px;
    resize: vertical;
}
form button {
    border: none;
}
form button[disabled],
form button[disabled]:hover{
    background: var(--color-grey);
}

.form-wrapper .error {
    font-size: 12px;
    padding-left: 22px;
    padding-top: 5px;
    display: block;
    animation: fadeIn 1.5s;
    text-align: left;
}
.form-wrapper.form-with-labels .error {
    padding-left: 0;
}
.form-wrapper .alert {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: var(--font-size-small);
    border-radius: var(--border-small-radius);
    animation: fadeIn 1.5s;
}
.form-wrapper .alert.success {
    border: 3px dashed var(--alerts-color-success);
}
.form-wrapper .alert.error {
    border: 3px dashed var(--alerts-color-error);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.form-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
}
.form-wrapper label+input {
     margin-bottom: 5px;
}

.form-wrapper .m-margin-b {
    margin-bottom: 10px;
}
.form-wrapper .line-action-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}
/*Forms END*/

/*Checkbox stylization START */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
    flex-shrink: 0;
}
.toggle-switch input[type="checkbox"] {
    appearance: none;
    width: 100%;
    height: 100%;
    background-color: var(--color-grey);
    border-radius: 72px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 100ms ease-out;
}
.toggle-switch input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
}
.toggle-switch input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 100ms ease-out;
}
.toggle-switch input[type="checkbox"]:checked {
    background-color: var(--color-primary);
}
.toggle-switch input[type="checkbox"]:checked::after {
    left: 13px;
}
.toggle-switch input[type="checkbox"]:focus {
    outline: 0;
}
/*Checkbox stylization START */

/*Dropdown select based on AlpineJs START */
.select-alpinejs {
    position: relative;
}
.select-alpinejs .select-alpinejs-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    min-width: 100%;
    box-sizing: border-box;
    border-radius: 30px;
    border: 1px solid var(--color-grey);
    padding: 14px 20px;
    font-size: var(--font-size-small);
    transition: var(--transition-base);
    color: var(--color-strong-light);
    justify-content: space-between;
}
.select-alpinejs .select-alpinejs-button:hover {
}
.select-alpinejs .select-alpinejs-button-active {
}
.select-alpinejs .select-alpinejs-button-inactive {
}


.select-alpinejs .select-alpinejs-icon {
    width: 1rem;
    transition: transform 0.2s;
    transform: rotate(0deg);
}
.select-alpinejs .select-alpinejs-button-active .select-alpinejs-icon {
    transform: rotate(180deg);
}


.select-alpinejs .select-alpinejs-menu {
    position: absolute;
    top: 55px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 12rem;
    max-height: 20rem;
    overflow-y: auto;
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    z-index: 50;
}

.select-alpinejs .select-alpinejs-menu-item {
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.select-alpinejs .select-alpinejs-menu-item:hover,
.select-alpinejs .select-alpinejs-menu-item:focus {
    background-color: rgba(17, 24, 39, 0.05);
    color: #111827;
}

.select-alpinejs .select-alpinejs-menu-item:focus {
    background-color: rgba(17, 24, 39, 0.1);
    outline: none;
}
/*Dropdown select based on AlpineJs END */

/*Input search with selection from list based on AlpineJs START */
.select-with-search {
    position: relative;
}
.select-with-search .result-list {
    position: absolute;
    top: 66px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-light-gray);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    z-index: 50;
    max-height: 200px;
    overflow: auto;
}
.select-with-search .result-list .result-item {
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.select-with-search .result-list .result-item:hover {
    background-color: rgba(17, 24, 39, 0.1);
    outline: none;
}
/*Input search with selection from list based on AlpineJs END */

/*Animation START*/
.anim-fadein-fast {
    opacity: 0;
    animation: fadein 400ms forwards;
}
@keyframes fadein {
    to {
        opacity: 1;
    }
}
/*Animation END*/


/*Media queries - START*/
@media (max-width: 1439px) {

}
/*max-width: 1439px END*/

@media (max-width: 1365px) {
    /*Global - START*/
    :root {
        --block-bottom-space-xl: 150px;
        --block-bottom-space-md: 120px;
        --block-bottom-space-sm: 70px;
        --block-bottom-space-xsm: 40px;

        --header-bottom-space-xl: 60px;
        --header-bottom-space-md: 50px;
        --header-bottom-space-sm: 30px;
        --header-bottom-space-xsm: 20px;
    }
    /*Global - END*/
}
/*max-width: 1365px END*/

@media (max-width: 1279px) {
    /*Global - START*/
    :root {
        --font-size-base: 14px;
        --font-size-small: 12px;
    }
    /*Global - END*/

    /*Link, colors and buttons START*/
    .button-hero, a.button-hero {
        padding: 14px 30px 13px 30px;
    }
    .button-hero .icon {
        margin-top: -1px;
    }
    /*Link, colors and buttons END*/

}
/*max-width: 1279px END*/

@media (max-width: 1023px) {
    :root {
        --font-size-base: 14px;
        /*--font-size-line-height-base: 1.2;*/
        --font-size-small: 12px;
        /*--font-size-line-height-small: 1.2;*/
    }

    /*Text headers START*/
    .big-header {
        font-size: 30px;
    }
    .header-accent {
        font-size: 76px;
        line-height: 130px;
        width: 120px;
        height: 124px;
    }
    .small-header {
        font-size: 20px;
    }
    .header-quotes-text {
        max-width: 90%;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    .header-quotes-text .text {
        font-size: 16px;
    }

    .medium-header {
        font-size: 22px;
    }

    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
        font-weight: 700;
    }
    h4 {
        font-size: 16px;
    }
    /*Text headers END*/
}
/*max-width: 1023px END*/


@media (max-width: 799px) {
    /*Global - START*/
    :root {
        --block-bottom-space-xl: 100px;
        --block-bottom-space-md: 80px;
        --block-bottom-space-sm: 50px;
        --block-bottom-space-xsm: 30px;

        --header-bottom-space-xl: 40px;
        --header-bottom-space-md: 30px;
        --header-bottom-space-sm: 20px;
    }
    /*Global - END*/

    /*Link, colors and buttons START*/
    .button-hero, a.button-hero {
        border: 2px solid var(--color-primary);
        padding: 8px 18px 7px 18px;
        height: 44px;
        column-gap: 6px;
    }
    /*Link, colors and buttons END*/

    /*Text headers START*/
    .header-quotes-text .text br {
        display: none;
    }
    /*Text headers END*/

}
/*max-width: 799px END*/

@media (max-width: 479px) {
    /*Global - START*/

    /*Global - END*/

}
/*max-width: 479px*/

/*max-width: 359px*/
@media (max-width: 359px) {
    /*Global - START*/
    body {
        zoom: 0.9;
    }
    /*Global - END*/
}
/*max-width: 359px END*/

/*Media queries - END*/
