.fw-m {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 500
}


.fw-s {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 600
}

.fw-x {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 800
}

html,body {
    overflow-x: hidden
}

body {
    min-height: 100vh;
    min-width: 320px;
    -webkit-font-smoothing: antialiased
}

main {
    max-width: 100%;
    position: relative
}

button:focus,.navbar-toggler:focus {
    outline: 0;
    box-shadow: none
}

img {
    image-rendering: -webkit-optimize-contrast
}

.cover {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important
}

svg.icon {
    height: 1em;
    width: 1em
}

a {
    transition: .3s
}

.btn {
    color: inherit;
    transition: all .5s;
    border-radius: 0;
    border: none
}

.btn:hover {
    color: inherit
}

.btn:focus {
    box-shadow: none !important
}

.btn-get {
    width: 100%;
    border-radius: 6px;
    padding: 15px;
    line-height: 114%;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

@media(min-width: 991px) {
    .btn-get {
        width:265px;
        height: 50px;
        padding: 15px 43px
    }
}

@media(min-width: 1399px) {
    .btn-get {
        font-size:20px;
        line-height: 118%;
        width: 295px;
        height: 70px;
        padding: 24px 50px
    }
}

.btn-get:hover {
    animation: none
}

.btn-get:hover::before {
    animation: none
}

.btn-get_primary {
    color: white;
    background: #8a2be1;
    border: none
}

.btn-get_primary:hover {
    color: #fff;
    background: #127729;
    border: none;
    box-shadow: rgba(204,0,0,.4)
}

.btn-get_secondary {
    color: #fff;
    background: none;
    border: 1px solid #2a2d2d
}

.btn-get_secondary:hover {
    color: #fff;
    background: none;
    border: 1px solid #8a2be1;
    box-shadow: none
}

.highlight {
    position: relative;
    overflow: hidden;
    animation-name: bg;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-direction: alternate
}

.highlight:before {
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    content: "";
    filter: blur(40px);
    background: #f8d000;
    animation-name: highlight;
    animation-duration: 4s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

@keyframes bg {
    0% {
        background: #127729
    }

    50% {
        background: #f8d000
    }

    100% {
        background: #127729
    }
}

@keyframes highlight {
    0% {
        left: -150px;
        background: #f8d000
    }

    50% {
        left: calc(100% + 50px);
        background: #127729
    }

    100% {
        left: -150px;
        background: #f8d000
    }
}

.btn .btnloader {
    position: absolute;
    z-index: 1;
    display: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: inherit;
    background-color: inherit;
    align-items: center;
    justify-content: center
}

.btn .btnloader span {
    display: flex;
    background: #0f0f0f;
    height: .5em;
    width: .5em;
    border-radius: 50%;
    margin: 1px;
    animation-name: btnloader;
    animation-duration: 1.25s;
    animation-iteration-count: infinite;
    opacity: .5
}

.btn .btnloader span:nth-child(1) {
    animation-delay: 0s
}

.btn .btnloader span:nth-child(2) {
    animation-delay: .25s
}

.btn .btnloader span:nth-child(3) {
    animation-delay: .5s
}

.btn .btnloader span:nth-child(4) {
    animation-delay: .75s
}

.btn .btnloader span:nth-child(5) {
    animation-delay: 1s
}

.btn.disabled {
    position: relative;
    opacity: 1
}

.btn.disabled .btnloader {
    display: flex;
    opacity: 1
}

@keyframes btnloader {
    0% {
        opacity: .5
    }

    25% {
        opacity: 1
    }

    100% {
        opacity: .5
    }
}
.dropdown {
    z-index: 20;
}

.dropdown .dropdown-toggle {
    padding-right: 30px;
}

.dropdown .dropdown-toggle:focus-visible {
    outline: none;
}

.dropdown .dropdown-toggle:after {
    width: 10px;
    height: 15px;
    background-image: url(../img/icons/dropdown.svg);
    background-size: 100% 100%;
    border: 0;
    margin-left: 6px;
    vertical-align: text-top;
    transition: color .2s, transform .2s;
}

@media(min-width: 1200px) {
    .dropdown .dropdown-toggle:after {
        width: 10px;
        height: 10px;
    }
}

@media(min-width: 1600px) {
    .dropdown .dropdown-toggle:after {
        width: 14px;
        height: 14px;
        margin-left: 8px;
        vertical-align: text-bottom;
    }
}

@media(hover: hover) {
    .dropdown .dropdown-toggle:hover::after {
        filter: brightness(0) saturate(100%) invert(10%) sepia(84%) saturate(5242%) hue-rotate(358deg) brightness(100%) contrast(116%);
    }
}

.dropdown .dropdown-toggle.show:after {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(10%) sepia(84%) saturate(5242%) hue-rotate(358deg) brightness(100%) contrast(116%);
}

@media(max-width: 991px) {
    .dropdown .dropdown-toggle.show {
        padding-bottom: 10px;
    }
}

.dropdown .dropdown-menu {
    background-color: #29292c;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    z-index: 21;
}

.dropdown .dropdown-menu .dropdown-item {
    position: relative;
    color: #72777c;
}

@media(min-width: 1200px) {
    .dropdown .dropdown-menu .dropdown-item {
        color: #f0f0f0;
    }
}

.dropdown .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #1b1b1d;
}

.dropdown .dropdown-menu .dropdown-item.active {
    background-color: rgba(0,0,0,0);
}

.dropdown .dropdown-menu .dropdown-item.active::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 9px;
    background-color: #8a2be1;
    border-radius: 0 2px 2px 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media(min-width: 1600px) {
    .dropdown .dropdown-menu .dropdown-item.active::before {
        width: 3px;
        height: 14px;
    }
}

.dropdown .dropdown-menu .dropdown-item.active a,
.dropdown .dropdown-menu .dropdown-item.active span {
    color: #8a2be1;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item:focus,
.dropdown .dropdown-menu .dropdown-item:active {
    color: #8a2be1;
    background-color: rgba(0,0,0,0);
}

.dropdown .dropdown-menu .nav-link,
.dropdown .dropdown-menu .nav-link:hover {
    color: #0e0d0d;
}

.dropdown .dropdown-menu .btn-close-white {
    opacity: 1;
}

@media(min-width: 1200px) {
    .dropdown.dropdown-center .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Open dropdown on hover */
.dropdown-hover:hover .dropdown-menu {
    display: block;
}

.dropdown-hover {
    position: relative;
}
form .form-control {
    line-height: 140%;
    border-radius: 8px;
    background-color: #0f0f0f;
    color: #676c71;
    border: 1px solid rgba(0,0,0,0);
    padding: 12px;
    padding-left: 44px;
    margin-bottom: 15px;
    transition: all .5s
}

form .form-control::-moz-placeholder {
    color: #676c71
}

form .form-control::placeholder {
    color: #676c71
}

form .field-wrappper {
    position: relative
}

form .field-wrappper::before {
    content: "";
    width: 45px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(img/mail.svg) no-repeat scroll 14px 50%;
    background-size: 22px
}

.form-control:focus {
    box-shadow: none !important
}

.modal {
    z-index: 1099
}

.modal.hauto {
    height: auto
}

.modal.thx {
    background: rgba(42,45,45,.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

@media(min-width: 767px) {
    .modal.thx .modal-dialog {
        max-width:710px
    }
}

.modal.thx .modal-dialog .modal-content {
    color: #0f0f0f;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 12px 44px 0px rgba(0,0,0,.84)
}

@media(min-width: 575px) {
    .modal.thx .modal-dialog .modal-content {
        padding:20px 30px 30px
    }
}

.modal.thx .modal-dialog .modal-header {
    border-bottom: 0
}

@media(min-width: 575px) {
    .modal.thx .modal-dialog .modal-header {
        padding:10px 0;
        margin-bottom: 20px
    }
}

.modal.thx .modal-dialog .modal-header .btn-close {
    font-size: 18px;
    box-shadow: none
}

.modal.thx .modal-dialog.cover-modal {
    padding: 0 !important
}

.modal.thx .modal-dialog.cover-modal .modal-dialog,.modal.thx .modal-dialog.cover-modal .modal-dialog-centered {
    min-height: 100vh;
    margin: 0 !important;
    max-width: none
}

.modal.thx .modal-dialog.cover-modal .modal-dialog .modal-content,.modal.thx .modal-dialog.cover-modal .modal-dialog-centered .modal-content {
    padding: 0;
    height: 100vh
}

@media(max-width: 575px) {
    .modal.thx .modal-dialog .modal-body::-webkit-scrollbar {
        margin-right:15px
    }
}

.modal.thx .modal-dialog .modal-body h5 {
    margin-bottom: 10px
}

.modal.thx .modal-dialog .modal-body p {
    font-size: 15px;
    padding-left: 20px;
    line-height: 20px;
    margin-bottom: 20px
}

.modal.disc {
    top: auto;
    bottom: 0
}

@media(max-width: 992px) {
    .modal.disc {
        -webkit-backdrop-filter:blur(10px);
        backdrop-filter: blur(10px)
    }
}

.modal.disc .disc__logo {
    filter: drop-shadow(-8px 7px 7px rgba(0, 0, 0, 0.1607843137))
}

.modal.disc .disc__logo img {
    width: 82px
}

@media(min-width: 991px) {
    .modal.disc .disc__logo img {
        width:auto
    }
}

.modal.disc .disc__title {
    font-size: 18px;
    color: #0f0f0f
}

@media(min-width: 991px) {
    .modal.disc .disc__title {
        font-size:20px
    }
}

.modal.disc .disc__text {
    color: #0f0f0f
}

@media(max-width: 992px) {
    .modal.disc .disc__text {
        font-size:12px
    }
}

.modal.disc .disc-wrapper {
    max-width: 205px;
    gap: 6px
}

@media(min-width: 991px) {
    .modal.disc .disc-wrapper {
        max-width:-moz-max-content;
        max-width: max-content;
        gap: 8px
    }
}

.modal.disc .disc-wrapper>* {
    line-height: normal
}

.modal.disc .disc-btn-wrapper {
    gap: 10px
}

.modal.disc .modal-dialog {
    margin: .5rem auto
}

@media(min-width: 575px) {
    .modal.disc .modal-dialog {
        max-width:-moz-max-content;
        max-width: max-content
    }
}

@media(min-width: 991px) {
    .modal.disc .modal-dialog {
        max-width:940px
    }
}

.modal.disc .modal-dialog .modal-content {
    color: #fff;
    padding: 20px 15px
}

@media(max-width: 575px) {
    .modal.disc .modal-dialog .modal-content {
        border-radius:0
    }
}

@media(min-width: 575px) {
    .modal.disc .modal-dialog .modal-content {
        border-radius:20px
    }
}

@media(min-width: 991px) {
    .modal.disc .modal-dialog .modal-content {
        padding:20px
    }
}

.modal.disc .modal-dialog .modal-content>.row {
    gap: 20px
}

@media(min-width: 991px) {
    .modal.disc .modal-dialog .modal-content>.row {
        gap:30px
    }
}

.modal.disc .modal-dialog .modal-content .btn-close {
    position: absolute;
    top: 20px;
    right: 15px
}

@media(min-width: 991px) {
    .modal.disc .modal-dialog .modal-content .btn-close {
        right:20px
    }
}

@media(max-width: 991px) {
    .swiper-slide {
        width:280px
    }

    .swiper-slide:last-child {
        width: 100%
    }
}

body {
    font-family: "Roboto Flex",sans-serif;
    font-size: 16px;
    background-color: #0f0f0f;
    color: #fff
}

h1 {
    font-size: 32px;
    line-height: 112%;
    margin-bottom: 0
}

@media(min-width: 1199px) {
    h1 {
        font-size:62px;
        margin-bottom: 40px
    }
}

@media(min-width: 1399px) {
    h1 {
        font-size:68px;
        margin-bottom: 25px
    }
}

h2 {
    font-size: 34px;
    line-height: 112%
}

@media(min-width: 1199px) {
    h2 {
        font-size:48px
    }
}

@media(min-width: 1399px) {
    h2 {
        font-size:68px
    }
}

h2 span {
    color: #8a2be1
}

h3 {
    font-size: 22px;
    line-height: 118%;
    margin: 0
}

@media(min-width: 1399px) {
    h3 {
        font-size:26px
    }
}

h3 span {
    color: #8a2be1
}

h4 {
    font-size: 18px;
    line-height: 24px
}

@media(min-width: 1399px) {
    h4 {
        font-size:22px;
        line-height: 28px
    }
}

p {
    line-height: 140%;
    margin: 0
}

@media(min-width: 1399px) {
    p {
        font-size:18px
    }
}

a {
    text-decoration: none;
    color: #fff
}

a:hover {
    color: #8a2be1
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

hr {
    margin: 0;
    border-top: 2px solid #191a1a;
    opacity: 1
}

.container-fhd {
    max-width: 1920px !important
}

@media(min-width: 1199px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1130px
    }
}

@media(min-width: 1199px)and (max-width: 1399px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        padding-left:0;
        padding-right: 0
    }
}

@media(min-width: 1399px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1400px
    }
}

@media(max-width: 991px) {
    .container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        padding-left:15px;
        padding-right: 15px
    }
}

.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl,.row {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0
}

.scrollbar .simplebar-track {
    background: #2a2d2d;
    border-radius: 33px;
    width: 4px
}

.scrollbar .simplebar-scrollbar {
    background: #676c71;
    border-radius: 11px;
    background-clip: content-box
}

.scrollbar .simplebar-horizontal {
    display: none
}

.arrows-decor__item {
    opacity: 0;
    animation-duration: 1s;
    animation-iteration-count: infinite
}

.arrows-decor__item_1 {
    animation-name: opacity1
}

.arrows-decor__item_2 {
    animation-name: opacity2;
    animation-delay: .25s
}

.arrows-decor__item_3 {
    animation-name: opacity3;
    animation-delay: .3s
}

.offcanvas {
    background: #0f0f0f;
    z-index: -1
}

.offcanvas.offcanvas-end {
    height: 100%;
    border: 0;
    transition: transform .3s ease,visibility .3s ease
}

@media(max-width: 575px) {
    .offcanvas.offcanvas-end {
        width:100%
    }
}

.offcanvas-body {
    padding: 60px 0 15px
}

.offcanvas-backdrop {
    visibility: collapse;
    background-color: rgba(42,45,45,.9);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.offcanvas-backdrop.show {
    opacity: 1;
    visibility: visible;
    z-index: 1029
}

.offcanvas .menu__item {
    border-top: 1px solid #2a2d2d;
    padding: 18px 15px
}

.offcanvas .socials {
    padding: 0 15px
}

.header {
    transition: all .2s ease-in-out
}

@media(min-width: 991px) {
    .header {
        padding:20px 35px
    }
}

@media(min-width: 1399px) {
    .header {
        padding:40px 60px 15px
    }
}

@media(max-width: 991px) {
    .header {
        background-color:#0f0f0f;
        padding: 5px 0 !important
    }
}

@media(max-width: 991px) {
    .header .row {
        gap:10px
    }
}

@media(max-width: 991px)and (min-width: 575px) {
    .header .row {
        gap:15px
    }
}

@media(max-width: 1399px) {
    .header .row {
        align-items:center
    }
}

.header__btn {
    width: 135px;
    font-size: 13px;
    line-height: 114%;
    height: 34px;
    padding: 12px 13px
}

@media(min-width: 991px) {
    .header__btn {
        width:150px;
        padding: 12px 20.5px
    }
}

@media(min-width: 1399px) {
    .header__btn {
        width:165px;
        font-size: 14px;
        padding: 12px 23px;
        height: 40px
    }
}

@media(min-width: 991px) {
    .header.fixed-top.nav-show {
        background-color:#0f0f0f
    }
}

@media(min-width: 1399px) {
    .header.fixed-top.nav-show {
        padding:15px 60px
    }
}

.header.fixed-top .navbar-toggler:not(.on) span,.header.fixed-top .navbar-toggler:not(.on) span:after,.header.fixed-top .navbar-toggler:not(.on) span:before {
    background: #fff
}

.header.fixed-top .navbar-toggler.on span {
    background-color: rgba(0,0,0,0)
}

.header .navbar-toggler {
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 6px
}

.header .navbar-toggler span:after,.header .navbar-toggler span:before {
    content: "";
    position: absolute;
    left: 0
}

.header .navbar-toggler span:before {
    top: -7px
}

.header .navbar-toggler span:after {
    top: 7px
}

.header .navbar-toggler span,.header .navbar-toggler span:after,.header .navbar-toggler span:before {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all .3s;
    backface-visibility: hidden;
    border-radius: 2px
}

.header .navbar-toggler.on {
    border-color: #8a2be1
}

.header .navbar-toggler.on span {
    background-color: rgba(0,0,0,0)
}

.header .navbar-toggler.on span:before {
    transform: rotate(45deg) translate(5px, 5px)
}

.header .navbar-toggler.on span:after {
    transform: rotate(-45deg) translate(5px, -5px)
}

@media(min-width: 991px) {
    .header .menu {
        gap:22px
    }
}

@media(min-width: 1399px) {
    .header .menu {
        gap:30px
    }
}

@media(min-width: 991px) {
    .header .menu__item:last-child {
        margin-right:30px
    }
}

.header .menu__link {
    text-decoration: none;
    font-size: 13px
}

@media(min-width: 991px) {
    .header .menu__link {
        padding:0 6px
    }
}

@media(min-width: 1399px) {
    .header .menu__link {
        font-size:14px
    }
}

.logo {
    height: 39px
}

@media(min-width: 1399px) {
    .logo {
        height:54px
    }
}

@media(max-width: 991px) {
    .top {
        margin-top:80px
    }
}

@media(min-width: 991px) {
    .top {
        padding:20px 0 60px
    }
}

@media(min-width: 1399px) {
    .top {
        padding:65px 0 145px
    }
}

@media(max-width: 991px) {
    .top__decor {
        top:-25px;
        right: 0
    }
}

@media(min-width: 991px) {
    .top__decor {
        height:185px;
        top: 0
    }
}

@media(min-width: 1199px) {
    .top__decor {
        top:50px
    }
}

@media(min-width: 1399px) {
    .top__decor {
        height:auto;
        top: -55px
    }
}

.top__subtitle {
    font-size: 18px;
    line-height: 118%;
    color: #8a2be1
}

@media(min-width: 1199px) {
    .top__subtitle {
        font-size:32px
    }
}

@media(min-width: 1399px) {
    .top__subtitle {
        font-size:42px;
        margin-bottom: 10px
    }
}

.top__img {
    position: relative;
    max-width: 375px;
    margin-top: -32px;
    margin-left: -15px
}

@media(min-width: 991px) {
    .top__img {
        position:absolute;
        top: 40px;
        right: -30px;
        max-width: 519px;
        margin: 0
    }
}

@media(min-width: 1399px) {
    .top__img {
        max-width:none;
        top: 0;
        right: 0
    }
}

.top__steps {
    font-weight: 800;
    gap: 15px;
    margin-bottom: 30px;
    text-transform: uppercase
}

@media(min-width: 991px) {
    .top__steps {
        font-weight:600;
        gap: 22px;
        margin-top: 0;
        text-transform: none
    }
}

@media(min-width: 1399px) {
    .top__steps {
        margin-bottom:60px
    }
}

.top__steps .top__step {
    line-height: 118%;
    height: 60px;
    border-radius: 8px;
    border-right: 3px solid #8a2be1;
    background: #191a1a;
    padding: 0 20px 0 10px;
    position: relative
}

@media(min-width: 991px) {
    .top__steps .top__step {
        line-height:140%;
        height: 120px;
        width: 215px;
        padding: 14px 20px 14px 18px
    }

    .top__steps .top__step:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -11px;
        bottom: 33px;
        width: 9px;
        height: 18px;
        background-image: url(img/step-decor.png);
        background-position: 100%;
        background-repeat: no-repeat
    }
}

@media(min-width: 1399px) {
    .top__steps .top__step {
        font-size:18px;
        height: 140px
    }
}

@media(max-width: 991px) {
    .top__steps .top__step span>span {
        display:none
    }
}

.top__steps .top__step__img {
    margin-right: -20px
}

@media(min-width: 991px) {
    .top__steps .top__step__img {
        position:absolute;
        bottom: 0;
        right: 0;
        margin: 0
    }
}

.top .cloud {
    line-height: 118%;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #0f0f0f;
    padding: 10px 16px 12px 16px;
    margin: 15px 0 40px
}

@media(min-width: 991px) {
    .top .cloud {
        max-width:500px;
        margin: 40px 0 40px
    }
}

@media(min-width: 1399px) {
    .top .cloud {
        width:400px;
        padding: 14px 20px 18px;
        margin: 65px 0 60px;
        font-size: 18px
    }
}

.top .cloud::after {
    position: absolute;
    content: "";
    width: 23px;
    height: 18px;
    background-image: url(img/corner.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    bottom: -17px;
    left: 20px
}

.top .cloud-wrapper {
    max-width: -moz-max-content;
    max-width: max-content
}

.top .cloud span {
    color: #8a2be1
}

@media(min-width: 991px) {
    .top .arrows-decor {
        margin-left:22px
    }
}

.how {
    padding: 40px 0
}

@media(min-width: 1199px) {
    .how {
        padding:65px 0
    }
}

@media(min-width: 1399px) {
    .how {
        padding:125px 0 115px
    }
}

.how__title {
    margin-bottom: 25px
}

@media(min-width: 991px) {
    .how__title {
        margin-bottom:30px
    }
}

@media(min-width: 1399px) {
    .how__title {
        margin-bottom:60px
    }
}

@media(max-width: 991px) {
    .how__img-wrapper {
        text-align:center
    }
}

@media(min-width: 991px) {
    .how__img-wrapper {
        position:absolute;
        top: 6px;
        right: 60px
    }
}

@media(min-width: 1399px) {
    .how__img-wrapper {
        top:-22px;
        right: 156px
    }
}

.how__case {
    width: 375px
}

@media(min-width: 991px) {
    .how__case {
        width:590px
    }
}

@media(min-width: 1399px) {
    .how__case {
        width:700px
    }
}

@media(min-width: 1699px) {
    .how__case {
        width:831px
    }
}

.how .flame {
    width: 375px;
    height: 265px;
    top: 125px;
    right: auto;
    z-index: -1;
    mix-blend-mode: screen
}

@media(min-width: 991px) {
    .how .flame {
        width:405px;
        height: 286px;
        top: -20px;
        right: 0
    }
}

@media(min-width: 1399px) {
    .how .flame {
        width:571px;
        height: 403px;
        top: -75px
    }
}

.how__list {
    background-image: url(img/line.svg);
    background-position: 14px center;
    background-repeat: no-repeat
}

@media(max-width: 991px) {
    .how__list {
        margin-top:50px;
        margin-bottom: 70px
    }
}

.how__item {
    line-height: 140%;
    margin-bottom: 20px
}

@media(min-width: 991px) {
    .how__item {
        padding:10px 0;
        margin-bottom: 10px
    }
}

@media(min-width: 1399px) {
    .how__item {
        font-size:18px
    }
}

.how__item:last-child {
    margin: 0
}

.how__item_num {
    background: #8a2be1;
    border-radius: 50%;
    font-size: 16px;
    height: 24px;
    width: 24px;
    line-height: 140%;
    padding: 3px;
    margin-right: 18px;
    margin-top: 24px
}

@media(min-width: 991px) {
    .how__item_num {
        margin-right:22px;
        height: 28px;
        width: 28px
    }
}

.how__item_img {
    width: 80px
}

@media(min-width: 1399px) {
    .how__item_img {
        width:auto
    }
}

.how__item_text {
    margin-top: 12px;
    padding-left: 42px
}

@media(min-width: 991px) {
    .how__item_text {
        max-width:410px;
        padding-left: 20px
    }
}

@media(min-width: 1399px) {
    .how__item_text {
        padding-left:45px;
        max-width: 500px
    }
}

.how__item_text span {
    color: #8a2be1;
    font-weight: 600
}

@media(max-width: 991px) {
    .how .cloud-wrapper {
        margin:-40px 0 40px
    }
}

@media(min-width: 991px) {
    .how .cloud-wrapper {
        position:absolute;
        bottom: 20px;
        left: 0
    }
}

@media(min-width: 1399px) {
    .how .cloud-wrapper {
        bottom:12px
    }
}

.how .cloud-wrapper .cloud {
    font-weight: 600;
    line-height: 140%;
    border-radius: 8px;
    background: #fff;
    padding: 16px 20px;
    color: #0f0f0f
}

@media(min-width: 991px) {
    .how .cloud-wrapper .cloud {
        width:380px
    }
}

@media(min-width: 1399px) {
    .how .cloud-wrapper .cloud {
        width:345px;
        font-size: 18px;
        margin-bottom: 50px
    }
}

.how .cloud-wrapper .cloud::after {
    position: absolute;
    content: "";
    width: 23px;
    height: 18px;
    background-image: url(img/corner_w.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    bottom: -17px;
    left: 20px
}

.how .cloud-wrapper .cloud__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 118%;
    color: #8a2be1;
    text-transform: uppercase
}

@media(min-width: 1399px) {
    .how .cloud-wrapper .cloud__title {
        font-size:26px
    }
}

@media(max-width: 991px) {
    .how .cloud-wrapper .cloud span {
        color:#8a2be1
    }
}

.about {
    padding: 40px 0
}

@media(min-width: 1199px) {
    .about {
        padding:60px 0
    }
}

@media(min-width: 1399px) {
    .about {
        padding:120px 0 100px
    }
}

.about__subtitle {
    margin-bottom: 20px
}

@media(min-width: 991px) {
    .about__subtitle {
        margin-bottom:25px;
        color: #8a2be1
    }
}

@media(min-width: 1399px) {
    .about__subtitle {
        margin-bottom:30px
    }
}

@media(min-width: 991px) {
    .about__text {
        max-width:695px
    }
}

@media(max-width: 991px) {
    .about__wrapper {
        position:absolute;
        bottom: 95px
    }
}

@media(max-width: 991px) {
    .about__phones {
        margin-left:-15px;
        height: 420px
    }
}

@media(min-width: 991px)and (max-width: 1399px) {
    .about__phones {
        max-width:703px;
        margin-top: -30px
    }
}

@media(min-width: 1199px) {
    .about__phones {
        margin-left:-55px
    }
}

@media(min-width: 1399px) {
    .about__phones {
        margin-left:20px;
        margin-top: -28px
    }
}

.about__cup {
    max-width: 166px
}

@media(max-width: 991px) {
    .about__cup {
        margin-left:-50px
    }
}

@media(min-width: 1399px) {
    .about__cup {
        max-width:none
    }
}

.about__flag {
    padding: 20px 30px 20px 65px;
    background: url(img/about-flag.png);
    background-size: 100% 100%;
    margin-left: -70px
}

@media(min-width: 991px) {
    .about__flag {
        padding:15px 45px 15px 65px
    }
}

@media(min-width: 1399px) {
    .about__flag {
        font-size:22px;
        padding: 20px 70px 20px 135px;
        margin-left: -140px
    }
}

.about__flag_text {
    line-height: 118%;
    width: 200px
}

@media(max-width: 991px) {
    .about__flag_text {
        font-size:15px
    }
}

@media(max-width: 1399px) {
    .about__flag_text br {
        display:none
    }
}

@media(min-width: 1199px) {
    .about__flag_text {
        width:220px
    }
}

@media(min-width: 1399px) {
    .about__flag_text {
        width:270px
    }
}

@media(max-width: 991px) {
    .about__btn {
        margin-top:20px
    }
}

@media(min-width: 1399px) {
    .about__btn {
        margin-top:5px
    }
}

.benefits {
    padding: 40px 0
}

@media(min-width: 991px) {
    .benefits {
        padding:65px 0
    }
}

@media(min-width: 1399px) {
    .benefits {
        padding:40px 0
    }
}

.benefits__title {
    margin-bottom: 20px
}

@media(min-width: 1399px) {
    .benefits__title {
        margin-bottom:40px
    }
}

.benefits__wrapper {
    --bs-gutter-y: 10px
}

@media(min-width: 991px) {
    .benefits__wrapper {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px
    }
}

.benefits__item_img {
    border-radius: 10px 0px 0px 10px;
    background: #191a1a;
    padding: 10px 8px
}

@media(min-width: 991px) {
    .benefits__item_img {
        padding:11px 9px
    }
}

@media(min-width: 1399px) {
    .benefits__item_img {
        padding:15px 12px 14px
    }
}

.benefits__item_img img {
    width: 54px
}

@media(min-width: 991px) {
    .benefits__item_img img {
        width:56px
    }
}

@media(min-width: 1399px) {
    .benefits__item_img img {
        width:auto
    }
}

.benefits__item_wrapper {
    padding: 16px 18px;
    border-radius: 0 10px 10px 10px;
    border: 1px solid #191a1a;
    gap: 10px
}

@media(min-width: 991px) {
    .benefits__item_wrapper {
        min-height:145px;
        padding: 24px;
        gap: 12px
    }
}

@media(min-width: 1399px) {
    .benefits__item_wrapper {
        min-height:175px;
        padding: 30px
    }
}

.benefits__item_title {
    font-size: 18px;
    line-height: 118%
}

@media(min-width: 1399px) {
    .benefits__item_title {
        font-size:22px
    }
}

.benefits__item_text {
    line-height: 140%;
    color: #676c71
}

@media(min-width: 1399px) {
    .benefits__item_text {
        font-size:18px
    }
}

.contacts {
    padding: 40px 0 30px
}

@media(min-width: 991px) {
    .contacts {
        padding:60px 0 70px
    }
}

@media(min-width: 1399px) {
    .contacts {
        padding:120px 0 80px
    }
}

.contacts__title {
    margin-bottom: 0
}

.contacts__text {
    line-height: 22px
}

@media(min-width: 1399px) {
    .contacts__text {
        font-size:18px;
        line-height: 26px
    }
}

@media(max-width: 991px) {
    .contacts__decor {
        margin:20px 0 25px
    }
}

@media(min-width: 991px) {
    .contacts__decor {
        margin:30px 0
    }
}

@media(min-width: 1399px) {
    .contacts__decor {
        margin:20px 0 35px
    }
}

.contacts__decor .arrows-decor__item {
    transform: rotate(-90deg)
}

@media(min-width: 991px) {
    .contacts__decor-arrow {
        transform:scaleX(-1)
    }
}

@media(min-width: 991px)and (max-width: 1399px) {
    .contacts__decor-arrow {
        height:185px
    }
}

.contacts__img {
    top: 190px;
    right: 0;
    max-width: 276px
}

@media(min-width: 767px) {
    .contacts__img {
        top:60px
    }
}

@media(min-width: 991px) {
    .contacts__img {
        right:180px;
        max-width: 554px
    }
}

@media(min-width: 1399px) {
    .contacts__img {
        top:120px;
        left: calc(50% + 180px);
        transform: translateX(-50%);
        max-width: none
    }
}

.contacts__form_wrapper {
    border-radius: 10px;
    background: #191a1a;
    padding: 25px 20px;
    margin-top: 15px
}

@media(min-width: 991px) {
    .contacts__form_wrapper {
        width:410px;
        margin-top: -35px;
        margin-left: auto
    }
}

@media(min-width: 1399px) {
    .contacts__form_wrapper {
        width:570px;
        padding: 40px;
        margin-top: -67px
    }
}

.contacts__form_title {
    margin-bottom: 10px
}

@media(min-width: 1399px) {
    .contacts__form_title {
        margin-bottom:15px
    }
}

.contacts__form_text {
    color: #676c71;
    margin-bottom: 20px
}

@media(min-width: 1399px) {
    .contacts__form_text {
        margin-bottom:30px
    }
}

.contacts__form_btn {
    font-size: 16px;
    line-height: 114%;
    height: 50px;
    padding: 15px
}

.socials__item {
    line-height: 140%
}

.socials__title {
    font-size: 14px;
    min-width: 75px
}

@media(min-width: 1399px) {
    .socials__title {
        font-size:18px
    }
}

.socials__subtitle {
    color: #676c71;
    margin-bottom: 15px
}

.socials__link {
    width: 100%;
    padding: 8px 35px 8px 8px;
    border-radius: 10px;
    border: 1px solid #2a2d2d;
    transition: all .5s;
    gap: 12px;
    background: #28a8e9
}

@media(min-width: 991px) {
    .socials__link {
        width:345px;
        padding: 7px;
        gap: 14px
    }
}

@media(min-width: 1399px) {
    .socials__link {
        width:335px;
        gap: 16px
    }
}

.socials__link:hover {
    border-color: #8a2be1;
    background: #8a2be1
}

.socials__link-whatsapp {
    background: #2fc74d
}

.socials__img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    transition: all .5s;
    background-color: #fff
}

@media(min-width: 991px) {
    .socials__img {
        width:58px;
        height: 58px
    }
}

@media(min-width: 1399px) {
    .socials__img {
        width:84px;
        height: 84px
    }

    .socials__img img {
        width: 44px
    }
}

.socials__text {
    font-size: 20px
}

@media(min-width: 1399px) {
    .socials__text {
        font-size:22px
    }
}

.footer {
    padding: 25px 0 20px;
    background: #0f0f0f;
    color: #676c71;
    font-size: 12px
}

@media(min-width: 575px) {
    .footer {
        font-size:14px
    }
}

@media(min-width: 991px) {
    .footer {
        padding:30px 0
    }
}

@media(min-width: 1399px) {
    .footer {
        padding:35px 0
    }
}

.footer .copyright {
    font-size: 12px;
    line-height: 16px
}

@media(max-width: 767px) {
    .footer .copyright {
        margin-top:18px
    }
}

@media(min-width: 991px) {
    .footer .copyright {
        font-size:14px;
        line-height: 18px
    }
}

@keyframes opacity1 {
    0% {
        opacity: 0
    }

    50% {
        opacity: .15
    }

    100% {
        opacity: 0
    }
}

@keyframes opacity2 {
    0% {
        opacity: 0
    }

    50% {
        opacity: .4
    }

    100% {
        opacity: 0
    }
}

@keyframes opacity3 {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}
/* Ensure proper layout for the whole footer section */
.footer {
    padding: 25px 0 20px;
    background: #0f0f0f;
    color: #676c71;
    font-size: 12px;
}
@media(min-width: 991px) {
    .footer {
        padding: 30px 0;
    }
}

/* Fix spacing and border for the top section */
.footer__top {
    padding: 30px 0 15px;
}
@media(min-width: 991px) {
    .footer__top {
        padding: 40px 0 45px;
    }
}

/* Crucial: Define gaps and alignment for the main top wrapper */
@media(min-width: 991px) {
    .footer__top-wrapper > .row {
        gap: 100px; /* Adjust spacing between email/menu and socials */
    }
}

/* Crucial: Layout for the Menu container itself (makes it a flex container with gaps) */
.footer__menu {
    gap: 50px; /* Gap between the columns (Advantages/Conferences columns) */
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
@media(min-width: 991px) {
    .footer__menu {
        gap: 75px;
    }
}

/* Layout for the columns inside the menu (e.g., 'Advantages' column) */
.footer__menu > .row {
    gap: 15px; /* Vertical gap between menu items like 'Advantages', 'Product', 'Reviews' */
}

/* Crucial: Fix alignment and spacing for the Socials/App section */
.footer__socials > .row {
    gap: 10px; /* Horizontal gap between social icons */
    justify-content: center;
}
@media(min-width: 991px) {
    .footer__socials {
        /* Add specific styles to position the socials block correctly */
    }
}

/* Fix bottom border alignment and spacing */
.footer__bottom {
    padding: 30px 0 15px;
    border-top: 1px solid #29292c;
}
@media(min-width: 991px) {
    .footer__bottom {
        padding: 10px 0;
    }
}

/* Fix for alignment issues in the main footer section */

/* Ensures the main row items (Logo/Email, Menu, Socials) are correctly spaced on large screens */
.footer__top > .row {
    align-items: flex-start; /* Ensure items start at the top */
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Crucial: Redefine the row spacing within the main top wrapper */
@media(min-width: 992px) {
    .footer__top-wrapper > .row {
        gap: 100px; /* Space between Email block, Menu block, and Social/App block */
        flex-wrap: nowrap;
        justify-content: space-between; /* Distribute space between main columns */
    }
}

/* Redefine email block column width */
@media(min-width: 992px) {
    .footer__mail {
        padding: 0 35px;
        border-right: 1px solid #29292c;
        border-left: 1px solid #29292c;
    }
}

/* Ensure social/app column is correctly positioned */
.footer__top-wrapper .col-auto.order-1.order-lg-3 {
    margin-left: auto; /* Push the rightmost element (Socials/App) to the right */
}

/* Tweak the menu block to ensure it occupies the center space correctly */
.footer__top-wrapper .col.order-3.order-lg-2 {
    flex-grow: 1; 
    min-width: 300px; /* Ensure enough space for the menu to not stack */
}

/* --- CRITICAL FONT/WEIGHT REPLICAS --- */
.fw-m {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 500;
}
.fw-s {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 600;
}
.fw-x {
    font-family: "Roboto Flex",sans-serif;
    font-weight: 800;
}
.fw-b {
    /* Ensure bold is 700 if not already defined for the menu items */
    font-weight: 700;
}

/* --- CRITICAL FOOTER LAYOUT & SPACING FIXES --- */
.footer {
    padding: 25px 0 20px;
    background: #0f0f0f;
    color: #676c71;
    font-size: 12px;
}
@media(min-width: 991px) {
    .footer {
        padding: 30px 0;
    }
}
.footer__top {
    padding: 30px 0 15px;
}
@media(min-width: 991px) {
    .footer__top {
        padding: 40px 0 45px;
    }
}
.footer__bottom {
    padding: 30px 0 15px;
    border-top: 1px solid #29292c;
}

/* 1. Main row arrangement */
@media(min-width: 992px) {
    .footer__top-wrapper > .row {
        gap: 100px; /* Spacing between Email, Menu, Socials */
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* 2. Email block (left column) */
.footer__mail {
    padding: 25px 0;
}
@media(max-width: 991px){
    .footer__mail {
        border-bottom: 1px solid #29292c;
    }
}
@media(min-width: 992px) {
    .footer__mail {
        border-right: 1px solid #29292c;
        border-left: 1px solid #29292c;
        padding: 0 35px;
    }
}
.footer__mail-title {
    font-size: 18px;
    color: #127729; /* Explicitly set email link color to green */
}

/* 3. Menu block (center columns) */
.footer__menu {
    gap: 50px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
@media(min-width: 992px) {
    .footer__menu {
        gap: 75px;
    }
    .footer__top-wrapper .col.order-3.order-lg-2 {
        min-width: 300px; /* Ensure enough room for menu columns */
    }
}
.footer__menu-item {
    font-size: 13px;
    color: #f0f0f0; /* Default menu item color */
}
.footer__menu > .row {
    gap: 15px; /* Vertical spacing in menu columns */
}

/* 4. Socials block (right column) */
.footer__socials > .row {
    gap: 10px; /* Horizontal space for icons */
    justify-content: center;
}
.footer__socials-item {
    border: 1px solid #29292c;
    padding: 5px;
    border-radius: 8px;
}

/* 5. Partners block (bottom section) */
.footer__partners {
    padding: 10px 10px 10px 15px;
    border-radius: 8px;
    background-color: #1b1b1d;
}
@media(max-width: 991px) {
    .footer__copyright {
        margin-top: 18px;
    }
}
.footer__btn {
    color: #127729; /* Privacy/Cookie/Terms link color */
}
/* Styling the Android App Button */
.btn-android {
    font-size: 14px;
    border-radius: 6px;
    background: unset;
    gap: 10px;
    height: 40px; /* Ensure a consistent height */
}

/* Specific styling for the footer Android button */
.btn-android__footer {
    border: 1px solid #29292c; /* Gray/Dark Border */
    background-color: transparent; /* Transparent background */
    margin-top: 15px; /* Pushes the button down slightly for spacing */
    min-width: 165px; /* Ensures text fits */
    color: #f0f0f0; /* Text color */
}

/* Styling the Android icon itself */
.btn-android__footer .icon {
    background-color: #AECF48; /* Set icon color to #AECF48 */
    mask-image: url(img/icons/android.svg);
    width: 22px;
    height: 26px;
    display: block; /* Ensure the icon is visible */
}

/* Ensure the button hovers with the purple color */
@media(hover: hover) {
    .btn-android__footer:hover {
        background-color: #8a2be1; /* Your hover color */
        border-color: #8a2be1;
    }
}

/* Fix spacing relative to social icons (pushes it down slightly) */
@media(min-width: 992px) {
    .footer__top-wrapper .col-auto.order-1.order-lg-3 .row {
        align-items: flex-end; /* Align items to the bottom of their container */
        height: 100%;
        gap: 15px; /* Adjust if needed to control distance to socials */
    }
}
.btn-android__footer .icon {
    /* ... other properties ... */
    background-color: #AECF48; /* This sets the color of the masked SVG */
    /* ... other properties ... */
}

.btn-android__footer .icon {
    background-color: #AECF48 !important; /* Force the green color */
    mask-image: url(img/icons/android.svg);
    width: 22px;
    height: 26px;
    display: block; 
}
/* Target the SVG image inside the specific footer button */
.btn-android__footer img {
    /* Filter to change the color of a black SVG to #AECF48 */
    filter: invert(72%) sepia(35%) saturate(300%) hue-rotate(50deg) brightness(85%) contrast(100%);
}

/* Open on hover */
.dropdown-hover:hover .dropdown-menu,
.dropdown-hover .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Positioning */
.dropdown-hover {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100%; /* directly touching CAREER */
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #2A2A2D !important;
    padding: 10px 0;
    border-radius: 12px;
    border: none;
    z-index: 9999;

    /* THIS prevents the “gap” issue */
    margin-top: 0 !important; 
}

/* Dropdown items */
.dropdown-item a {
    color: #fff !important;
    padding: 12px 18px;
    display: block;
    white-space: nowrap;
}

.dropdown-item:hover a {
    background: rgba(255, 255, 255, 0.12);
}






.home-active {
    /* Sets a 1-pixel solid purple border */
    border: 1px solid #7D3C98; /* Example purple color */

    /* Adds rounded corners */
    border-radius: 6px; /* Adjust corner roundness as needed */

    /* Optional: Add slight padding inside the frame for better appearance */
    padding:2px 5px; 

    /* Important: Box sizing adjustment for border */
    box-sizing: border-box; 
}


/* === LOCAL MANAGER HEADER STYLE REPLICA === */

/* Header frame with border */
.header {
    height: auto;
    background: #0e0d0d;
    padding: 8px 15px;
    border-bottom: 1px solid #29292c;
    transition: all .2s ease-in-out;
}
@media(min-width: 1200px) {
    .header {
        border: 1px solid #29292c;
        border-radius: 10px;
        padding: 12px 20px;
        margin: 10px 15px;
    }
}
@media(min-width: 1600px) {
    .header {
        padding: 15px 25px;
        margin: 15px 20px;
    }
}

/* Logo size fix */
.header .logo,
.header #logoTop img {
    width: auto !important;
    height: 45px !important;
}
@media(min-width: 1600px) {
    .header .logo,
    .header #logoTop img {
        height: 54px !important;
    }
}

/* Center menu */
.header .col-auto.col-xl.order-3.order-xl-2 {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

@media(min-width: 1200px) {
    .header .menu {
        margin-left: 0;
        margin-top:10px;
        gap: 30px;
        justify-content: center;
    }
}
@media(min-width: 1600px) {
    .header .menu {
        gap: 40px;
    }
}

.header .menu__item {
    border-top: 1px solid #29292c;
    padding: 18px 20px;
}
@media(min-width: 1200px) {
    .header .menu__item {
        font-size: 12px;
        border: none;
        padding: 0;
    }
}
@media(min-width: 1600px) {
    .header .menu__item {
        font-size: 14px;
    }
}

.header .menu__link {
    text-transform: uppercase;
}

.header .menu__link.active,
.header .menu__link.show {
    color: #8a2be1;
}

/* Header buttons */
.header__btn {
    height: 34px;
    width: auto;
    padding: 10px 15px;
    font-size: 12px;
}
@media(min-width: 1600px) {
    .header__btn {
        font-size: 14px;
        height: 40px;
        padding: 10px 25px;
    }
}

.header__btn-wrapper {
    gap: 10px;
}
@media(min-width: 1200px) {
    .header__btn-wrapper {
        gap: 15px;
    }
}

/* Dropdown styling - exact replica with purple left border */
/* Dropdown styling - exact replica with purple left border */
.header .menu .dropdown-menu {
    min-width: 180px;
    background-color: #1b1b1d;
    border: none;
    border-radius: 8px;
    margin-top: 0;
    padding: 5px 0;
    z-index: 21;
}

.header .menu .dropdown-menu .dropdown-item {
    padding: 5px 12px;
    position: relative;
    color: #f0f0f0;
    font-size: 11px;
    border-left: 3px solid transparent;
    line-height: 1.3;
}

.header .menu .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #29292c;
}

.header .menu .dropdown-menu .dropdown-item.active,
.header .menu .dropdown-menu .dropdown-item:first-child {
    border-left: 3px solid #8a2be1;
    background-color: transparent;
}

.header .menu .dropdown-menu .dropdown-item:hover,
.header .menu .dropdown-menu .dropdown-item:focus,
.header .menu .dropdown-menu .dropdown-item:active {
    color: #8a2be1;
    background-color: transparent;
    border-left: 3px solid #8a2be1;
}

.header .menu .dropdown-menu .dropdown-item a {
    color: inherit;
    display: block;
}

/* Dropdown hover - remove gap */
.dropdown-hover:hover .dropdown-menu,
.dropdown-hover .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-hover .dropdown-menu {
    top: 100%;
    margin-top: 0 !important;

}

/* Dropdown hover behavior */
.dropdown-hover:hover .dropdown-menu,
.dropdown-hover .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown .dropdown-toggle:after {
    width: 10px;
    height: 10px;
    background-image: url(../img/icons/dropdown.svg);
    background-size: 100% 100%;
    border: 0;
    margin-left: 6px;
    vertical-align: middle;
    transition: color .2s, transform .2s;
}

.dropdown .dropdown-toggle.show:after {
    transform: rotate(180deg);
}

/* Purple frame for Check Manager - matching image */
.header .menu__item:last-child {
    border: 1px solid #b208dd;
    border-radius: 6px;
    padding: 5px 12px;
    margin-left: 10px;
    margin-top:-5px;
}
.header .menu__item:last-child .menu__link {
    font-size: 12px;
}
@media(max-width: 1199px) {
    .header .menu__item:last-child {
        border: none;
        padding: 18px 20px;
        margin-left: 0;
    }
}

/* Navbar toggler */
.header .navbar-toggler {
    width: 34px;
    height: 34px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 6px;
}

.header .navbar-toggler span,
.header .navbar-toggler span:after,
.header .navbar-toggler span:before {
    width: 100%;
    height: 2px;
    background-color: #f0f0f0;
    transition: all .3s;
    backface-visibility: hidden;
    border-radius: 2px;
}

.header .navbar-toggler span:after,
.header .navbar-toggler span:before {
    content: "";
    position: absolute;
    left: 0;
}

.header .navbar-toggler span:before {
    top: -7px;
}

.header .navbar-toggler span:after {
    top: 7px;
}

.header .navbar-toggler.on {
    border-color: #8a2be1;
}

.header .navbar-toggler.on span {
    background-color: transparent;
}

.header .navbar-toggler.on span:before {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .navbar-toggler.on span:after {
    transform: rotate(-45deg) translate(5px, -5px);
}


