@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Furore';
    src: url('../fonts/Furore.woff2') format('woff2'), url('../fonts/Furore.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color: #9b8bff;
    --blue: #7ecbef;
    --bg-color: #000;
    --font-color: #fff;
    --divider: 135px;
}


/* font-family: "Roboto", sans-serif; */

html {
    font-family: 'Furore', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    overflow-x: hidden;
    /* font-size: 18px; */
    position: relative;
    color: var(--font-color);
    line-height: 1.25;
    -webkit-text-size-adjust: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    max-width: 1920px;
    margin: auto;
    background-color: var(--bg-color);
}

body.compensate-for-scrollbar {
    margin: 0;
}

.divider {
    height: var(--divider);
    font-weight: 700;
}

article,
section {
    position: relative;
}

 ::-moz-selection {
    background: var(--main-color);
    color: #fff;
    text-shadow: none;
}

 ::selection {
    background: var(--main-color);
    color: #fff;
    text-shadow: none;
}

 ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #D4D3D3;
}

 :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #D4D3D3;
    opacity: 1;
}

 ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #D4D3D3;
    opacity: 1;
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #D4D3D3;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #D4D3D3;
}

 ::placeholder {
    /* Most modern browsers support this now. */
    color: #D4D3D3;
}

[hidden] {
    display: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--font-color);
    background-color: transparent;
}

html,
body,
header,
main,
section,
div,
footer {
    box-sizing: border-box;
}

a,
div,
button,
input {
    -webkit-tap-highlight-color: #00000000
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

img {
    border-style: none;
    max-width: 100%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

textarea {
    resize: vertical;
}

.text-center {
    text-align: center;
}


/* adm Styles */

input,
textarea,
select {
    outline: none;
}

.container-fluid {
    width: 100%;
    height: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.showmenu {
    display: none;
    margin-left: 1em;
    flex-direction: column;
    cursor: pointer;
    align-items: end;
}

.showmenu span {
    width: 2em;
    height: 4px;
    margin-bottom: 5px;
    background-color: #fff;
    display: inline-block;
    transition: 0.15s;
}

.showmenu span:last-child {
    margin-bottom: 0;
}

.closemenu {
    color: #fff;
    cursor: pointer;
    display: none;
    text-align: right;
    position: absolute;
    right: 1em;
    top: 1em;
    font-size: 1.7em;
    line-height: 0;
}

.closemenu:hover {
    color: #f00;
}

.showmenu:hover span {
    background-color: #fff;
}

.btn {
    margin: 15px 0 0;
    position: relative;
}

.btn a,
.btn button {
    font-family: 'Furore', sans-serif;
    position: relative;
    display: inline-block;
    background-color: var(--main-color);
    border: none;
    color: #000;
    text-align: center;
    padding: 1.7em 5em;
    font-size: 1em;
    box-sizing: border-box;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
}

.btn a:hover,
.btn button:hover {
    background-color: #fff;
}

.btn.trans a,
.btn.trans button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1em;
    width: 100%;
}

.btn.trans a:hover,
.btn.trans button:hover {
    background-color: #fff;
    color: #000;
}

#totop {
    border-radius: 50%;
    position: fixed;
    right: 2em;
    bottom: -2em;
    background: #7f7f7f30;
    width: 35px;
    height: 35px;
    transition: 0.1s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    z-index: 5;
}

#totop.show {
    bottom: 2em;
}

#header {
    background-color: #000;
    padding: 1em 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper .logo img {
    width: 150px;
}

.header-menu ul {
    display: flex;
    gap: 2em;
}

.header-menu a {
    font-size: 12px;
}

.section-head {
    margin: 5em 0 3em;
}

.section-head .tit {
    font-size: 2.5em;
}

.section-head .desc {
    font-family: "Roboto", sans-serif;
}

.tit span {
    color: var(--main-color);
}

.section-head.h1 .tit {
    font-size: 3.125em;
}

.hero-wrapper {
    height: 100vh;
    max-height: 1000px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    overflow: hidden;
    height: 100%;
    border-top: 3em solid #000;
    border-bottom: 3em solid #000;
}

.hero-video video {
    transform: translateY(-45%);
}

.hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000000ad;
}

.hero-mask div {
    height: 100%;
}

.hero-mask img {
    height: 100%;
    max-width: none;
    opacity: 0.85;
    transition: 0.1s;
    transform: translateX(0px);
    will-change: transform;
}

.hero-content {
    height: 100%;
}

.hero-content .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: center;
}

.hero-content .desc {
    font-family: "Roboto", sans-serif;
    font-size: 1.3em;
    font-weight: 600;
}

.hero-content .tit {
    font-size: 6em;
    line-height: 1;
}

.hero-content .bottom {
    display: flex;
    gap: 35px;
    margin-top: 2em;
}

.hero-content .icon-block {
    display: flex;
    gap: 1em;
    font-size: 1.3em;
    align-items: center;
}

.hero-content .icon-block img {
    height: 55px;
}

.hero-content .btn {
    margin: 0;
}

.products-list {
    display: flex;
    gap: 35px;
}

.product-card {
    max-width: 376px;
    border: 2px solid #434343;
    border-radius: 10px;
    padding: 0em;
    font-size: 1.125em;
    box-shadow: 0 0 0px -5px #ffffff7a;
    transition: 0.25s;
}

.product-card:hover {
    box-shadow: 0 0 20px -5px #ffffff7a;
}

.product-card .img {
    overflow: hidden;
    border-radius: 10px;
    max-height: 355px;
}

.product-card .tit {
    margin: 2em 0;
    text-align: center;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .btn {
    margin: 0 1em 1em;
}

.banner1 {
    background-color: #fff;
    border-radius: 30px;
    margin: 10em 8% 5em;
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 4em 3em 0;
}

.banner1 .img {
    width: 100%;
}

.banner1 .img img {
    width: 850px;
    max-width: none;
    position: absolute;
    bottom: 0;
}

.banner1 .content {
    padding-bottom: 4em;
}

.banner1 .tit {
    font-size: 4em;
}

.banner1 .desc {
    font-family: "Roboto", sans-serif;
    font-size: 1.7em;
    margin: 1em 0;
}

.banner1 .btn button {
    font-size: 1.5em;
    padding: 37px 53px;
}

.materials-list {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.material-card {
    position: relative;
    flex: 0 0 auto;
    width: calc(50% - 17.5px);
    max-width: 536px;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 8 / 7;
    border-radius: 10px;
    padding: 2em;
    display: flex;
    gap: 1em;
    flex-direction: column;
    justify-content: flex-end;
}

.material-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000050;
}

.material-card>div {
    position: relative;
    z-index: 2;
}

.material-card .tit {
    font-size: 1.6em;
}

.material-card .desc {
    font-family: "Roboto", sans-serif;
}

.materials>.btn {
    margin: 3em 0 5em;
    text-align: center;
}

.results-wrapper {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.res-block {
    border: 1px solid #fff;
    border-radius: 10px;
    display: flex;
    gap: 24px;
    padding: 2em 2em;
    align-items: center;
}

.res-block .digit {
    font-size: 4em;
    color: var(--main-color);
}

.res-block .desc {
    font-size: 1.24em;
}

.licences {
    display: flex;
    gap: 1em;
}

.lic-card {
    overflow: hidden;
    border-radius: 15px;
    max-height: 478px;
}

.lic-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide {
    max-height: 570px;
    position: relative;
    text-align: center;
}

.video-slide video {
    height: 100%;
    width: auto;
    max-width: 279px;
}

.video-slider>.btn {
    margin: 3em 0 5em;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color);
}

.about-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 0 1%;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15% 0 10%;
}

.about-flex .left {
    width: 37%;
    flex: 0 0 auto;
    max-width: 410px;
}

.about-flex .left .tit {
    font-size: 2.5em;
    margin-bottom: 35px;
}

.achievs {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.achievs li {
    display: flex;
    gap: 24px;
}

.achievs .text strong {
    color: var(--main-color);
    font-size: 1.1em;
    display: block;
}

.achievs .text span {
    font-family: "Roboto", sans-serif;
}

.achievs .icon {
    flex: 0 0 auto;
}

.achievs .icon img {
    width: 60px;
}

.about-flex .right {
    flex: 0 0 auto;
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.about1-img {
    position: absolute;
    top: -18%;
}

.about-card {
    position: relative;
    z-index: 2;
    border: 1px solid #9E9E9E;
    background-color: #202020;
    text-align: center;
    border-style: inset;
    max-width: 576px;
    padding: 5% 12%;
    border-radius: 15px;
}

.bir-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.social ul {
    display: flex;
    gap: 24px;
}

.interest-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.int-card {
    flex: 0 0 auto;
    width: calc(50% - 12px);
    border: 1px solid #9E9E9E;
    background-color: #202020;
    border-style: inset;
    border-radius: 15px;
    padding: 2em;
}

.int-card .tit {
    font-size: 1.8em;
    margin-bottom: 35px;
}

.int-card a {
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
}

.int-card.w100 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
    position: relative;
    padding: 6em 3em;
}

.int-card.w100>div {
    width: 50%;
    flex: 0 0 auto;
    height: 100;
}

.int-card .img {
    padding: 10%;
}

.int-card .img img {
    max-height: 200px;
}

.int-card.w100 .img img {
    position: absolute;
    transform: translate(-7%, -24%);
    padding: 0;
    max-height: none;
}

#footer {
    font-family: "Roboto", sans-serif;
    margin-top: 100px;
    font-size: 14px;
    background-color: #292929;
    padding: 5em 0 3em;
}

#footer .links {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

#footer .links a {
    color: var(--main-color);
}

.section-content {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}

.section-content ul {
    margin-left: 1em;
    list-style-type: disc;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.75;
}

.page-hero {
    height: 85vh;
    background-repeat: no-repeat, no-repeat;
    background-position: 80% bottom, center;
    background-size: 40em, cover;
}

.page-hero.yasli {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero .tit {
    font-size: 3.125em;
}

.page-hero .tit.small {
    font-size: 1.8em;
    /* margin-bottom: 35px; */
}

.page-hero-content>.desc {
    font-family: "Roboto", sans-serif;
    max-width: 460px;
    background: #000;
    border: 1px solid #9E9E9E;
    background-color: #202020;
    border-style: inset;
    border-radius: 15px;
    padding: 0 1em;
    font-size: 1.3em;
    margin: 1em 0;
}

.page-hero-content .desc strong {
    font-size: 1em;
    font-weight: 400;
}

.page-hero-content .desc strong span {
    font-family: 'Furore', sans-serif;
    font-size: 1.3em;
}

.page-hero-content .desc span {
    color: var(--main-color);
}

.bars {
    display: flex;
    gap: 35px;
    align-items: flex-end;
    margin: 35px 0;
}

.bar-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
    max-width: 33%;
    padding: 1em;
    background-color: #000;
}

.bar-card .tit {
    text-align: center;
}

.bar-card .icon {
    text-align: center;
    margin-bottom: -33px;
}

.bar-card .icon img {
    width: 66px;
    height: 66px;
    transform: translateY(-33px);
}

.bar-card .desc {
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.bar-card .desc span {
    color: var(--main-color);
}

.bar-card .video {
    position: relative;
}

.bar-card .video svg {}

.play-button {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #ffffff66;
    padding: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.tile-card {
    flex: 0 0 auto;
    width: calc(33% - 18px);
    display: flex;
    align-items: center;
}

.tiles.w50flex .tile-card {
    width: calc(50% - 24px);
}

.tile-card .icon {
    width: 66px;
    margin-right: -33px;
    position: relative;
    flex: 0 0 auto;
}

.tile-content {
    font-family: "Roboto", sans-serif;
    background-color: #000;
    padding: 1em 1em 1em 3em;
}

.tile-content .tit {
    font-size: 1.25em;
}

.tile-content .desc {
    opacity: 0.5;
    margin-top: 1em;
}

.tile-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.tile-list-card {
    padding: 3em;
    display: flex;
    gap: 35px;
    background-repeat: no-repeat;
    background-position: right;
    border: 1px solid #9E9E9E;
    background-color: #202020;
    border-style: inset;
    border-radius: 15px;
}

.tile-list-card .icon {
    color: var(--main-color);
    font-size: 4em;
    font-family: "Roboto", sans-serif;
    flex: 0 0 auto;
    width: 10%;
    line-height: 1;
}

.tile-list-card .text {
    flex: 0 0 auto;
    width: 55%;
}

.tile-list-card .text .tit {
    font-size: 1.7em;
    margin-bottom: 24px;
}

.tile-list-card .text .desc {
    font-family: "Roboto", sans-serif;
}

.tiles .btn {
    margin-left: auto;
    margin-right: auto;
}

.tarif {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.tarif-card {
    flex: 0 0 auto;
    width: 33%;
    max-width: 365px;
    border: 1px solid #9E9E9E;
    background-color: #202020;
    border-style: inset;
    border-radius: 15px;
    padding: 2em;
}

.tarif .tarif-card:first-child .tit {
    color: #9E9E9E;
}

.tarif .tarif-card:last-child .tit {
    color: var(--main-color);
}

.tarif-card .tit {
    font-size: 2em;
}

.tarif-card .buy-block p {
    color: #999;
    margin: 0;
}

.tarif-card .buy-block .price {
    font-size: 1.8em;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tarif-card .buy-block .price div:last-child {
    font-size: 0.75em;
    color: #999;
}

.tarif-card .btn {
    width: 100%;
}

.tarif-card .btn button {
    width: 100%;
    padding: 1.3em 0em;
}

.tarif-card .buy-block {
    margin-top: 1em;
}

.tarif-card .buy-block.crdt .btn button {
    color: var(--main-color);
    border-color: var(--main-color);
}

.promo-card {
    margin-bottom: 10em;
    display: flex;
    align-items: flex-end;
    gap: 35px;
    justify-content: space-between;
}

.promo-card .text {
    display: flex;
    flex-direction: column;
    gap: 1.3em;
}

.promo-card .tit {
    font-size: 3.5em;
}

.promo-card .desc-img {
    max-width: 161px;
    width: 100%;
}

.promo-card .desc-content p {
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}

.promo-card .desc-content.big p {
    font-size: 1.6em;
}

.promo-card .tit.small {
    font-size: 2em;
}

.promo-card .text .desc {
    display: flex;
    gap: 2em;
    align-items: flex-end;
    max-width: 520px;
}

.promo-card strong span {
    color: var(--main-color);
}

.btn.promo3:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    background-image: url(../img/promo3.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 85%;
    height: 256px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

@media screen and (max-width: 1199px) {
    html {
        font-size: 16px;
    }
    .showmenu {
        display: flex;
        margin: 1em 0;
    }
    .closemenu {
        display: inline-block;
    }
    .header-wrapper {
        position: fixed;
        top: 0;
        left: -110%;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        /* background-color: var(--main-color); */
        background: linear-gradient(135deg, #880d12 0%, #6e0c11 62%);
        z-index: 9;
        padding: 3em 3em 2em;
        transition: 0.25s ease-in-out;
    }
    .opnmenu .header-wrapper {
        left: 0%;
    }
    .header-menu ul {
        flex-direction: column;
        height: auto;
    }
}

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

@media screen and (max-width: 768px) {
     :root {
        --divider: 75px;
    }
}

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

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

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

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " ("attr(href) ")";
    }
    abbr[title]:after {
        content: " ("attr(title) ")";
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}