:root {
    --global-class: "signs";
    --body-bg: #ffffff;
    --text: #2e2d2d;
    --text-lighter: #ffffff;
    --primary-button-background: #7316e4;
    --primary-button-color: #ffffff;
    --primary-button-border-color: #069e83;
    --secondary-button-background: #ED0B07;
    --secondary-button-color: #ffffff;
    --secondary-button-border-color: #dd3333;
    --mobile-menu-bg: #ED0B07;
    --navigation: #ffffff;
    --navigation-hover: #fbeb02;
    --footer-text: #dedede;
    --footer-navigation: #dedede;
    --footer-navigation-hover: #ffffff;
    --primary: #7316e4;
    --secondary: #ED0B07
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    font-family: Montserrat, sans-serif;
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
    background: linear-gradient(16deg, rgba(255, 236, 236, .8) 0, rgba(215, 247, 72, .8) 100%) center/cover;
    margin: 0;
    padding: 0
}

body.loaded {
    overflow: auto
}

body.overflow-hidden {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-top: 0
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2
}

.heading-large {
    font-size: 2.5rem;
    position: relative
}

.heading-large:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 0
}

h3 {
    font-size: 2rem
}

h4 {
    font-size: 1.7rem
}

h5 {
    font-size: 1.5rem
}

h6 {
    font-size: 1.3rem
}

img {
    max-width: 100%;
    height: auto
}

a {
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: underline;
    color: var(--primary)
}

a:hover {
    text-decoration: none;
    color: var(--secondary)
}

.layout-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.section-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.ui-button {
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    min-width: 150px;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px
}

.header-btn {
    padding: 10px 20px;
    font-size: 16px;
    min-width: 120px
}

.ui-button--primary {
    border-radius: 12px;
    background: var(--primary-button-background);
    color: var(--primary-button-color);
    border: none
}

.ui-button--primary:hover {
    color: #faff02
}

.ui-button--secondary {
    border-radius: 12px;
    background: var(--secondary-button-background);
    color: var(--secondary-button-color);
    border: none
}

.ui-button--secondary:hover {
    color: #faff02
}

.layout-header {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: linear-gradient(16deg, #ec1a07 0, #ec9b04 100%);
    border-bottom: 3px solid #c909b9
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all .3s;
    transition: all .3s
}

.header-logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 150px;
    max-height: 80px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.header-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.nav-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.nav-main>li {
    position: relative;
    margin: 0 15px
}

.nav-main>li:last-child {
    margin-right: 0
}

.nav-main>li>a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navigation);
    font-weight: 600
}

.nav-main>li.current-menu-item>a,
.nav-main>li>a:hover {
    color: var(--navigation-hover)
}

.header-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px
}

.btn-toggle-menu {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 15;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

.overlay-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--mobile-menu-bg);
    opacity: 0;
    visibility: hidden
}

.icon-burger {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 30px;
    height: 20px
}

.icon-burger .burger-line--second {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #ce03bd;
    -webkit-transition: top .2s, -webkit-transform .5s;
    transition: top .2s, -webkit-transform .5s;
    transition: transform .5s, top .2s;
    transition: transform .5s, top .2s, -webkit-transform .5s
}

.btn-toggle-menu.is-active .icon-burger .burger-line--second {
    background: var(--primary)
}

.icon-burger .burger-line--first {
    top: 0
}

.btn-toggle-menu.is-active .burger-line--first {
    top: 9px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.icon-burger .burger-line--third {
    top: 50%;
    margin-top: -1px
}

.btn-toggle-menu.is-active .burger-line--third {
    top: auto;
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.icon-burger .burger-line--last {
    bottom: 0
}

.btn-toggle-menu.is-active .burger-line--last {
    opacity: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.border-gradient {
    padding: 4px;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #ee1f0c), to(#c5a909));
    background: linear-gradient(90deg, #ee1f0c 0, #c5a909 100%);
    border-radius: 8px;
    display: inline-block;
    background-color: transparent;
    padding: 16px 24px;
    border-radius: 6px;
    color: #fff;
    margin: 1rem 0
}

.split-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.split-content__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.split-content__item>:last-child {
    margin-bottom: 0
}

.section-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 125px 0;
    text-align: center
}

.hero-heading{
    text-align: center;
    width: 100%;
}

.hero-body {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px
}

.section-hero p {
    font-size: 20px
}

.text-section {
    padding: 30px 0
}

.layout-footer {
    padding: 24px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background: linear-gradient(16deg, #ec1a07 0, #ec9b04 100%);
    border-top: 3px solid #c906b8
}

.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.footer-logo {
    max-width: 150px
}

.footer-meta {
    width: 100%;
    text-align: right;
    color: var(--footer-text)
}

.accordion-item {
    margin-bottom: 20px
}

.accordion-item h3 {
    margin-bottom: 10px
}

table {
    margin: auto;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%
}

td {
    border: 1px solid var(--text);
    padding: 10px
}

ul {
    margin-bottom: 1rem
}

ul li {
    margin-bottom: .5rem
}

.text-content>:last-child {
    margin-bottom: 0
}

.text-content p {
    margin-bottom: 1rem
}

.text-content ol,
.text-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem
}

.text-content ul li {
    margin-bottom: .5rem
}

.text-content ul li::marker {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary)
}

.text-content ol li {
    margin-bottom: .5rem
}

.text-content ol li::marker {
    color: var(--primary);
    font-weight: 700
}

.text-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
    border-radius: 4px
}

.text-center {
    text-align: center;
    margin-bottom: 1rem
}

@media (min-width:576px) {
    .layout-container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .layout-container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .layout-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .layout-container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .layout-container {
        max-width: 1320px
    }
}

@media (max-width:991px) {
    .split-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }
}

@media only screen and (max-width:991px) {
    .layout-header .header-logo {
        max-width: 100px
    }

    .header-controls {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 0;
        left: -100%;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s;
        transition: all .3s;
        overflow: auto;
        z-index: 10
    }

    .header-controls.is-active .overlay-backdrop {
        opacity: .95;
        visibility: visible
    }

    .header-controls.is-active {
        opacity: 1;
        visibility: visible;
        left: 0
    }

    .nav-main {
        display: block
    }

    .btn-toggle-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .nav-main>li {
        height: auto;
        margin: 0 0 20px
    }

    .nav-main>li:last-child {
        margin: 0
    }

    .nav-main>li>a {
        font-size: 20px;
        font-weight: 600
    }

    .menu-panel {
        margin: 0;
        width: 100%;
        text-align: center
    }

    .nav-main>li.current-menu-item>a,
    .nav-main>li>a:hover {
        color: var(--navigation-hover)
    }

    .footer-logo {
        margin-bottom: 20px
    }

    h1 {
        font-size: 3rem
    }

    .heading-large {
        font-size: 2rem
    }
}

@media only screen and (max-width:767px) {
    body {
        font-size: 16px
    }

    .section-hero {
        padding: 80px 0
    }

    .section-hero p {
        font-size: 16px
    }

    h1 {
        font-size: 2rem
    }

    .heading-large {
        font-size: 1.8rem
    }

    h3 {
        font-size: 1.6rem
    }

    h4 {
        font-size: 1.4rem
    }

    h5 {
        font-size: 1.3rem
    }

    h6 {
        font-size: 1.2rem
    }
}

@media (max-width:767.98px) {
    .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .footer-meta {
        text-align: center
    }
}

@media only screen and (max-width:575px) {
    .btn-toggle-menu {
        right: 15px
    }
}